fitting 2.14.1 → 2.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +33 -0
- data/.ruby-version +1 -1
- data/.tool-versions +1 -1
- data/CHANGELOG.md +27 -0
- data/README.md +96 -282
- data/fitting.gemspec +5 -5
- data/images/example.png +0 -0
- data/images/example2.png +0 -0
- data/images/logo.png +0 -0
- data/lib/fitting/report/actions.rb +1 -5
- data/lib/fitting/report/console.rb +1 -1
- data/lib/fitting/report/prefix.rb +37 -2
- data/lib/fitting/report/prefixes.rb +14 -2
- data/lib/fitting/report/response.rb +2 -2
- data/lib/fitting/report/test.rb +14 -0
- data/lib/fitting/report/tests.rb +8 -1
- data/lib/fitting/version.rb +1 -1
- data/lib/tasks/fitting.rake +2 -0
- data/lib/templates/bomboniere/dist/css/app.aa2bcd8a.css +1 -0
- data/lib/templates/bomboniere/dist/index.html +1 -1
- data/lib/templates/bomboniere/dist/js/app.e5f1a5ec.js +2 -0
- data/lib/templates/bomboniere/dist/js/app.e5f1a5ec.js.map +1 -0
- data/lib/templates/bomboniere/dist/js/{chunk-vendors.90aeb613.js → chunk-vendors.0f99b670.js} +1 -1
- data/lib/templates/bomboniere/dist/js/{chunk-vendors.90aeb613.js.map → chunk-vendors.0f99b670.js.map} +1 -1
- data/lib/templates/bomboniere/package-lock.json +91 -70
- data/lib/templates/bomboniere/package.json +2 -1
- data/lib/templates/bomboniere/src/components/HelloWorld.vue +21 -5
- data/lib/templates/bomboniere/src/views/Action.vue +22 -3
- metadata +44 -34
- data/.travis.yml +0 -4
- data/lib/templates/bomboniere/dist/css/app.62e086ac.css +0 -1
- data/lib/templates/bomboniere/dist/js/app.4356d509.js +0 -2
- data/lib/templates/bomboniere/dist/js/app.4356d509.js.map +0 -1
data/lib/fitting/report/test.rb
CHANGED
@@ -7,6 +7,20 @@ module Fitting
|
|
7
7
|
@action = false
|
8
8
|
@response = false
|
9
9
|
@combination = false
|
10
|
+
@id = SecureRandom.hex
|
11
|
+
end
|
12
|
+
|
13
|
+
def id
|
14
|
+
@id
|
15
|
+
end
|
16
|
+
|
17
|
+
def to_h
|
18
|
+
{
|
19
|
+
path: path,
|
20
|
+
method: method,
|
21
|
+
status: status,
|
22
|
+
body: body
|
23
|
+
}
|
10
24
|
end
|
11
25
|
|
12
26
|
def path
|
data/lib/fitting/report/tests.rb
CHANGED
@@ -34,7 +34,7 @@ module Fitting
|
|
34
34
|
|
35
35
|
def without_responses
|
36
36
|
@tests.inject([]) do |result, test|
|
37
|
-
result.push(
|
37
|
+
result.push(test.id) unless test.is_there_an_responses?
|
38
38
|
result
|
39
39
|
end
|
40
40
|
end
|
@@ -57,6 +57,13 @@ module Fitting
|
|
57
57
|
def to_a
|
58
58
|
@tests
|
59
59
|
end
|
60
|
+
|
61
|
+
def to_h
|
62
|
+
return @hash if @hash
|
63
|
+
@hash = @tests.inject({}) do |res, test|
|
64
|
+
res.merge!(test.id => test.to_h)
|
65
|
+
end
|
66
|
+
end
|
60
67
|
end
|
61
68
|
end
|
62
69
|
end
|
data/lib/fitting/version.rb
CHANGED
data/lib/tasks/fitting.rake
CHANGED
@@ -65,6 +65,7 @@ namespace :fitting do
|
|
65
65
|
end
|
66
66
|
File.open('fitting/json_schemas.json', 'w') { |file| file.write(JSON.pretty_generate(json_schemas)) }
|
67
67
|
File.open('fitting/combinations.json', 'w') { |file| file.write(JSON.pretty_generate(combinations)) }
|
68
|
+
File.open('fitting/tests.json', 'w') { |file| file.write(JSON.pretty_generate(tests.to_h)) }
|
68
69
|
|
69
70
|
js_path = Dir["#{destination}/js/*"].find { |f| f[0..14] == 'fitting/js/app.' and f[-3..-1] == '.js' }
|
70
71
|
js_file = File.read(js_path)
|
@@ -72,6 +73,7 @@ namespace :fitting do
|
|
72
73
|
new_js_file = new_js_file.gsub("{stub:\"for action page\"}", report)
|
73
74
|
new_js_file = new_js_file.gsub("{stub:\"json-schemas\"}", JSON.pretty_generate(json_schemas))
|
74
75
|
new_js_file = new_js_file.gsub("{stub:\"combinations\"}", JSON.pretty_generate(combinations))
|
76
|
+
new_js_file = new_js_file.gsub("{stub:\"tests\"}", JSON.pretty_generate(tests.to_h))
|
75
77
|
File.open(js_path, 'w') { |file| file.write(new_js_file) }
|
76
78
|
|
77
79
|
console = Fitting::Report::Console.new(
|
@@ -0,0 +1 @@
|
|
1
|
+
body{background-color:#2c3e50}h1,h2,h3,h4,h5,h6,p{color:#42b983}.pink{color:#b94283}#app{font-family:Avenir,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;color:#2c3e50}#nav{padding:30px}#nav a{font-weight:700}#nav a,#nav a.router-link-exact-active{color:#42b983}#main{font-size:10pt}.prefix{margin:2px 0;padding:0 8px;text-align:left}.action,.prefix{background-color:#273645;color:#42b983;height:20px}.action{margin:2px 0 0 16px}.method{width:100px;padding:0 8px}.method,.path{float:left;text-align:left}.path{width:400px}.accordion-item{position:relative}.accordion-item-head{cursor:pointer}.accordion-item-head:after{content:" > ";display:block;position:absolute;right:25px;transform:rotate(90deg) scaleY(2);top:0}.accordion-item-head.active:after{content:" < "}.accordion-item-body{display:none}.accordion-item-head.active+.accordion-item-body{display:block!important}h3[data-v-3cafb9bc]{margin:40px 0 0}ul[data-v-3cafb9bc]{list-style-type:none;padding:0}li[data-v-3cafb9bc]{display:inline-block;margin:0 10px}a[data-v-3cafb9bc]{color:#42b983}.tests_without_prefixes[data-v-3cafb9bc]{background-color:#273645;color:#b94283;margin:2px 0;padding:0 8px;height:20px;text-align:left}.tests_without_prefixes[data-v-3cafb9bc]:hover{background-color:#2b2b2b}.test_without_prefixes[data-v-3cafb9bc],.tests_without_actions[data-v-3cafb9bc]{background-color:#273645;color:#b94283;margin:2px 0 0 16px;height:20px;text-align:left;padding:0 8px}.tests_without_actions[data-v-3cafb9bc]:hover{background-color:#2b2b2b}.test_without_actions[data-v-3cafb9bc]{background-color:#273645;color:#b94283;margin:2px 0 0 24px;height:20px;text-align:left;padding:0 8px}.response_good[data-v-3cafb9bc]{float:left;text-align:left;padding:0 2px;color:#42b983}.response_bad[data-v-3cafb9bc]{float:left;text-align:left;padding:0 2px;color:#b94283}.action[data-v-3cafb9bc]:hover{background-color:#2b2b2b}.response[data-v-3cafb9bc]{width:50px;float:left;text-align:left}.error[data-v-3cafb9bc]{color:red;width:10px;float:left;text-align:left}a[data-v-3cafb9bc]:active,a[data-v-3cafb9bc]:hover,a[data-v-3cafb9bc]:link,a[data-v-3cafb9bc]:visited{color:#42b983;text-decoration:none}.request{color:#42b983}.request,.tests_without_responses{background-color:#273645;padding:0 0 0 8px}.tests_without_responses{text-align:left;color:#b94283;margin:2px 0 0 24px}.tests_without_responses:hover{background-color:#2b2b2b}.test_without_responses{text-align:left;padding:0 0 0 8px;color:#b94283;background-color:#273645;margin:2px 0 0 32px}.test_without_responses:hover{background-color:#2b2b2b}.response{text-align:left;padding:0 0 0 8px;color:#42b983;background-color:#273645;margin:2px 0 0 24px}.response:hover{background-color:#2b2b2b}.response_good{color:#42b983}.response_bad{color:#b94283}.combination{text-align:left;padding:0 0 0 8px;color:#42b983;background-color:#273645;margin:2px 0 0 32px}.combination:hover{background-color:#2b2b2b}.alpaca-json{background-color:#131a20}.alpaca-add{background-color:#004313}.alpaca-del{background-color:#160004}.alpaca-upd{background-color:#423200}
|
@@ -1 +1 @@
|
|
1
|
-
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=favicon.ico><title>bomboniere</title><link href=css/app.
|
1
|
+
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=favicon.ico><title>bomboniere</title><link href=css/app.aa2bcd8a.css rel=preload as=style><link href=css/chunk-vendors.ec5f6c3f.css rel=preload as=style><link href=js/app.e5f1a5ec.js rel=preload as=script><link href=js/chunk-vendors.0f99b670.js rel=preload as=script><link href=css/chunk-vendors.ec5f6c3f.css rel=stylesheet><link href=css/app.aa2bcd8a.css rel=stylesheet></head><body><noscript><strong>We're sorry but bomboniere doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=js/chunk-vendors.0f99b670.js></script><script src=js/app.e5f1a5ec.js></script></body></html>
|
@@ -0,0 +1,2 @@
|
|
1
|
+
(function(t){function e(e){for(var o,a,c=e[0],r=e[1],l=e[2],u=0,_=[];u<c.length;u++)a=c[u],Object.prototype.hasOwnProperty.call(n,a)&&n[a]&&_.push(n[a][0]),n[a]=0;for(o in r)Object.prototype.hasOwnProperty.call(r,o)&&(t[o]=r[o]);d&&d(e);while(_.length)_.shift()();return i.push.apply(i,l||[]),s()}function s(){for(var t,e=0;e<i.length;e++){for(var s=i[e],o=!0,c=1;c<s.length;c++){var r=s[c];0!==n[r]&&(o=!1)}o&&(i.splice(e--,1),t=a(a.s=s[0]))}return t}var o={},n={app:0},i=[];function a(e){if(o[e])return o[e].exports;var s=o[e]={i:e,l:!1,exports:{}};return t[e].call(s.exports,s,s.exports,a),s.l=!0,s.exports}a.m=t,a.c=o,a.d=function(t,e,s){a.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:s})},a.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},a.t=function(t,e){if(1&e&&(t=a(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var s=Object.create(null);if(a.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)a.d(s,o,function(e){return t[e]}.bind(null,o));return s},a.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return a.d(e,"a",e),e},a.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},a.p="";var c=window["webpackJsonp"]=window["webpackJsonp"]||[],r=c.push.bind(c);c.push=e,c=c.slice();for(var l=0;l<c.length;l++)e(c[l]);var d=r;i.push([0,"chunk-vendors"]),s()})({0:function(t,e,s){t.exports=s("56d7")},"034f":function(t,e,s){"use strict";var o=s("85ec"),n=s.n(o);n.a},"0d10":function(t,e,s){},3886:function(t,e,s){"use strict";var o=s("dfae"),n=s.n(o);n.a},"56d7":function(t,e,s){"use strict";s.r(e);var o=s("2b0e"),n=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{attrs:{id:"app"}},[s("div",{attrs:{id:"nav"}},[s("router-link",{attrs:{to:"/"}},[t._v("Prefixes")]),t._v(" | "),s("router-link",{attrs:{to:"/about"}},[t._v("About")])],1),s("router-view")],1)},i=[],a=(s("034f"),s("2877")),c={},r=Object(a["a"])(c,n,i,!1,null,null,null),l=r.exports,d=s("8c4f"),u=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"home"},[s("HelloWorld",{attrs:{msg:"Welcome to Your Vue.js App"}})],1)},_=[],v=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{attrs:{id:"main"}},[0!=t.myJson.tests_without_prefixes.length?s("div",[s("div",{staticClass:"accordion-item"},[s("div",{staticClass:"tests_without_prefixes accordion-item-head",on:{click:t.accordion}},[t._v(" tests without prefixes: "+t._s(t.myJson.tests_without_prefixes.length)+" ✖ ")]),s("div",{staticClass:"accordion-item-body"},t._l(t.myJson.tests_without_prefixes,(function(e){return s("div",[s("div",{staticClass:"test_without_prefixes"},[t._v(t._s(e)+" ✖")])])})),0)])]):t._e(),t._l(t.myJson.prefixes_details,(function(e){return s("div",[s("div",[s("div",{staticClass:"accordion-item"},[s("div",{staticClass:"prefix accordion-item-head active",on:{click:t.accordion}},[t._v(" "+t._s(e.name)+" ")]),s("div",{staticClass:"accordion-item-body"},[0!=e.actions.tests_without_actions.length?s("div",[s("div",{staticClass:"accordion-item"},[s("div",{staticClass:"tests_without_actions accordion-item-head",on:{click:t.accordion}},[t._v(" tests without actions: "+t._s(e.actions.tests_without_actions.length)+" ✖ ")]),s("div",{staticClass:"accordion-item-body"},t._l(e.actions.tests_without_actions,(function(e){return s("div",[s("div",{staticClass:"test_without_actions"},[t._v(t._s(e)+" ✖")])])})),0)])]):t._e(),t._l(e.actions.actions_details,(function(o){return s("div",[s("div",{staticClass:"action"},[s("router-link",{attrs:{to:{path:"action",query:{prefix:e.name,method:o.method,path:o.path}}}},[s("div",{staticClass:"method"},[t._v(t._s(o.method))]),s("div",{staticClass:"path"},[t._v(t._s(o.path))]),t._l(o.responses.responses_details,(function(e){return s("div",["100%"==e.combinations.cover_percent?s("div",{staticClass:"response_good"},[t._v(" "+t._s(e.combinations.cover_percent)+" "+t._s(e.method)+" ")]):s("div",{staticClass:"response_bad"},[t._v(" "+t._s(e.combinations.cover_percent)+" "+t._s(e.method)+" ")])])}))],2)],1)])}))],2)])])])}))],2)},p=[],m={name:"HelloWorld",props:{msg:String},data(){return{myJson:{stub:"prefixes report"}}},methods:{accordion:function(t){t.target.classList.toggle("active")}}},h=m,f=(s("3886"),Object(a["a"])(h,v,p,!1,null,"3cafb9bc",null)),b=f.exports,C={name:"Home",components:{HelloWorld:b}},y=C,g=Object(a["a"])(y,u,_,!1,null,null,null),w=g.exports,j=function(){var t=this,e=t.$createElement;t._self._c;return t._m(0)},x=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"about"},[s("h1",[t._v("This is an about page")])])}],O={},k=Object(a["a"])(O,j,x,!1,null,null,null),S=k.exports,J=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{attrs:{id:"main"}},t._l(t.myJson.prefixes_details,(function(e){return s("div",[t.$route.query.prefix==e.name?s("div",{staticClass:"accordion-item"},[s("div",{staticClass:"prefix"},[t._v(t._s(e.name))]),t._l(e.actions.actions_details,(function(e){return s("div",[t.$route.query.method==e.method&&t.$route.query.path==e.path?s("div",{staticClass:"accordion-item"},[s("div",{staticClass:"action"},[s("div",{staticClass:"method"},[t._v(t._s(e.method))]),s("div",{staticClass:"path"},[t._v(t._s(e.path))])]),0!=e.responses.tests_without_responses.length?s("div",[s("div",{staticClass:"accordion-item"},[s("div",{staticClass:"tests_without_responses accordion-item-head",on:{click:t.accordion}},[t._v(" tests without responses: "+t._s(e.responses.tests_without_responses.length)+" ✖ ")]),s("div",{staticClass:"accordion-item-body"},t._l(e.responses.tests_without_responses,(function(e){return s("div",[s("div",{staticClass:"test_without_responses"},[t._v(" "+t._s(e)+" ✖ "+t._s(t.tests[e])+" ")])])})),0)])]):t._e(),t._l(e.responses.responses_details,(function(e){return s("div",[s("div",{staticClass:"response"},[s("div",{staticClass:"accordion-item"},[s("div",{staticClass:"accordion-item-head",on:{click:t.accordion}},["100%"==e.combinations.cover_percent?s("div",{staticClass:"response_good"},[t._v(" "+t._s(e.combinations.cover_percent)+" "+t._s(e.method)+" ")]):s("div",{staticClass:"response_bad"},[t._v(" "+t._s(e.combinations.cover_percent)+" "+t._s(e.method)+" ")])]),s("div",{staticClass:"accordion-item-body"},[s("vue-json-compare",{attrs:{oldData:t.jsonSchemas[e.json_schema],newData:t.jsonSchemas[e.json_schema]}})],1)])]),t._l(e.combinations.combinations_details,(function(o){return s("div",[s("div",{staticClass:"combination"},[s("div",{staticClass:"accordion-item"},[s("div",{staticClass:"accordion-item-head",on:{click:t.accordion}},[t._v(" type: "+t._s(o.type)+", name: "+t._s(o.name)+", tests_size: "+t._s(o.tests_size)+" ")]),s("div",{staticClass:"accordion-item-body"},[s("vue-json-compare",{attrs:{oldData:t.jsonSchemas[e.json_schema],newData:t.combinations[o.json_schema]}})],1)])])])}))],2)}))],2):t._e()])}))],2):t._e()])})),0)},$=[],P=s("06e8"),E=s.n(P),H={name:"HelloWorld",props:{msg:String},components:{vueJsonCompare:E.a},data(){return{myJson:{stub:"for action page"},jsonSchemas:{stub:"json-schemas"},combinations:{stub:"combinations"},tests:{stub:"tests"}}},methods:{accordion:function(t){t.target.classList.toggle("active")}}},W=H,q=(s("eb8d"),Object(a["a"])(W,J,$,!1,null,null,null)),A=q.exports;o["a"].use(d["a"]);const D=[{path:"/",name:"Home",component:w},{path:"/about",name:"About",component:S},{path:"/action",name:"Action",component:A}],M=new d["a"]({routes:D});var T=M;o["a"].config.productionTip=!1,new o["a"]({router:T,render:function(t){return t(l)}}).$mount("#app")},"85ec":function(t,e,s){},dfae:function(t,e,s){},eb8d:function(t,e,s){"use strict";var o=s("0d10"),n=s.n(o);n.a}});
|
2
|
+
//# sourceMappingURL=app.e5f1a5ec.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./src/App.vue?9b05","webpack:///./src/components/HelloWorld.vue?e078","webpack:///./src/App.vue?1a73","webpack:///./src/App.vue?a938","webpack:///./src/views/Home.vue?1e57","webpack:///./src/components/HelloWorld.vue?5453","webpack:///src/components/HelloWorld.vue","webpack:///./src/components/HelloWorld.vue?b85e","webpack:///./src/components/HelloWorld.vue","webpack:///src/views/Home.vue","webpack:///./src/views/Home.vue?2db0","webpack:///./src/views/Home.vue","webpack:///./src/views/About.vue?1e33","webpack:///./src/views/About.vue","webpack:///./src/views/Action.vue?54fa","webpack:///src/views/Action.vue","webpack:///./src/views/Action.vue?a02b","webpack:///./src/views/Action.vue?8feb","webpack:///./src/router/index.js","webpack:///./src/main.js","webpack:///./src/views/Action.vue?79d5"],"names":["webpackJsonpCallback","data","moduleId","chunkId","chunkIds","moreModules","executeModules","i","resolves","length","Object","prototype","hasOwnProperty","call","installedChunks","push","modules","parentJsonpFunction","shift","deferredModules","apply","checkDeferredModules","result","deferredModule","fulfilled","j","depId","splice","__webpack_require__","s","installedModules","exports","module","l","m","c","d","name","getter","o","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","p","jsonpArray","window","oldJsonpFunction","slice","render","_vm","this","_h","$createElement","_c","_self","attrs","_v","staticRenderFns","script","component","staticClass","myJson","tests_without_prefixes","on","accordion","_s","_l","test_without_prefixes","_e","prefix_details","actions","tests_without_actions","test_without_actions","action_details","path","query","prefix","method","responses","responses_details","combinations","cover_percent","props","msg","String","methods","event","target","classList","toggle","components","HelloWorld","_m","$route","action","tests_without_responses","test_without_responses","tests","response","jsonSchemas","json_schema","combination","type","tests_size","vueJsonCompare","use","routes","Home","About","Action","router","config","productionTip","h","App","$mount"],"mappings":"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","file":"js/app.e5f1a5ec.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t\"app\": 0\n \t};\n\n \tvar deferredModules = [];\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \tvar jsonpArray = window[\"webpackJsonp\"] = window[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// add entry module to deferred list\n \tdeferredModules.push([0,\"chunk-vendors\"]);\n \t// run deferred modules when ready\n \treturn checkDeferredModules();\n","import mod from \"-!../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../node_modules/cache-loader/dist/cjs.js??ref--0-0!../node_modules/vue-loader/lib/index.js??vue-loader-options!./App.vue?vue&type=style&index=0&lang=css&\"","import mod from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=style&index=0&id=3cafb9bc&scoped=true&lang=css&\"; export default mod; export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=style&index=0&id=3cafb9bc&scoped=true&lang=css&\"","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"app\"}},[_c('div',{attrs:{\"id\":\"nav\"}},[_c('router-link',{attrs:{\"to\":\"/\"}},[_vm._v(\"Prefixes\")]),_vm._v(\" | \"),_c('router-link',{attrs:{\"to\":\"/about\"}},[_vm._v(\"About\")])],1),_c('router-view')],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=64f61184&\"\nvar script = {}\nimport style0 from \"./App.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"home\"},[_c('HelloWorld',{attrs:{\"msg\":\"Welcome to Your Vue.js App\"}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"main\"}},[(_vm.myJson.tests_without_prefixes.length != 0)?_c('div',[_c('div',{staticClass:\"accordion-item\"},[_c('div',{staticClass:\"tests_without_prefixes accordion-item-head\",on:{\"click\":_vm.accordion}},[_vm._v(\" tests without prefixes: \"+_vm._s(_vm.myJson.tests_without_prefixes.length)+\" ✖ \")]),_c('div',{staticClass:\"accordion-item-body\"},_vm._l((_vm.myJson.tests_without_prefixes),function(test_without_prefixes){return _c('div',[_c('div',{staticClass:\"test_without_prefixes\"},[_vm._v(_vm._s(test_without_prefixes)+\" ✖\")])])}),0)])]):_vm._e(),_vm._l((_vm.myJson.prefixes_details),function(prefix_details){return _c('div',[_c('div',[_c('div',{staticClass:\"accordion-item\"},[_c('div',{staticClass:\"prefix accordion-item-head active\",on:{\"click\":_vm.accordion}},[_vm._v(\" \"+_vm._s(prefix_details.name)+\" \")]),_c('div',{staticClass:\"accordion-item-body\"},[(prefix_details.actions.tests_without_actions.length != 0)?_c('div',[_c('div',{staticClass:\"accordion-item\"},[_c('div',{staticClass:\"tests_without_actions accordion-item-head\",on:{\"click\":_vm.accordion}},[_vm._v(\" tests without actions: \"+_vm._s(prefix_details.actions.tests_without_actions.length)+\" ✖ \")]),_c('div',{staticClass:\"accordion-item-body\"},_vm._l((prefix_details.actions.tests_without_actions),function(test_without_actions){return _c('div',[_c('div',{staticClass:\"test_without_actions\"},[_vm._v(_vm._s(test_without_actions)+\" ✖\")])])}),0)])]):_vm._e(),_vm._l((prefix_details.actions.actions_details),function(action_details){return _c('div',[_c('div',{staticClass:\"action\"},[_c('router-link',{attrs:{\"to\":{ path: 'action', query: { prefix: prefix_details.name, method: action_details.method, path: action_details.path }}}},[_c('div',{staticClass:\"method\"},[_vm._v(_vm._s(action_details.method))]),_c('div',{staticClass:\"path\"},[_vm._v(_vm._s(action_details.path))]),_vm._l((action_details.responses.responses_details),function(responses_details){return _c('div',[(responses_details.combinations.cover_percent == '100%')?_c('div',{staticClass:\"response_good\"},[_vm._v(\" \"+_vm._s(responses_details.combinations.cover_percent)+\" \"+_vm._s(responses_details.method)+\" \")]):_c('div',{staticClass:\"response_bad\"},[_vm._v(\" \"+_vm._s(responses_details.combinations.cover_percent)+\" \"+_vm._s(responses_details.method)+\" \")])])})],2)],1)])})],2)])])])})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n <div id=\"main\">\n <div v-if=\"myJson.tests_without_prefixes.length != 0\">\n <div class=\"accordion-item\">\n <div class=\"tests_without_prefixes accordion-item-head\" v-on:click=\"accordion\">\n tests without prefixes: {{ myJson.tests_without_prefixes.length }} ✖\n </div>\n <div class=\"accordion-item-body\">\n <div v-for=\"test_without_prefixes in myJson.tests_without_prefixes\">\n <div class=\"test_without_prefixes\">{{ test_without_prefixes }} ✖</div>\n </div>\n </div>\n </div>\n </div>\n\n <div v-for=\"prefix_details in myJson.prefixes_details\">\n\n <div>\n <div class=\"accordion-item\">\n\n <div class=\"prefix accordion-item-head active\" v-on:click=\"accordion\">\n {{ prefix_details.name }}\n </div>\n\n <div class=\"accordion-item-body\">\n\n <div v-if=\"prefix_details.actions.tests_without_actions.length != 0\">\n <div class=\"accordion-item\">\n <div class=\"tests_without_actions accordion-item-head\" v-on:click=\"accordion\">\n tests without actions: {{ prefix_details.actions.tests_without_actions.length }} ✖\n </div>\n <div class=\"accordion-item-body\">\n <div v-for=\"test_without_actions in prefix_details.actions.tests_without_actions\">\n <div class=\"test_without_actions\">{{ test_without_actions }} ✖</div>\n </div>\n </div>\n </div>\n </div>\n\n <div v-for=\"action_details in prefix_details.actions.actions_details\">\n <div class=\"action\">\n <router-link\n :to=\"{ path: 'action', query: { prefix: prefix_details.name, method: action_details.method, path: action_details.path }}\">\n <div class=\"method\">{{ action_details.method }}</div>\n <div class=\"path\">{{ action_details.path }}</div>\n <div v-for=\"responses_details in action_details.responses.responses_details\">\n <div v-if=\"responses_details.combinations.cover_percent == '100%'\" class=\"response_good\">\n {{ responses_details.combinations.cover_percent }}\n {{ responses_details.method }}\n </div>\n <div v-else class=\"response_bad\">\n {{ responses_details.combinations.cover_percent }}\n {{ responses_details.method }}\n </div>\n </div>\n </router-link>\n </div>\n </div>\n\n </div>\n\n </div>\n\n </div>\n\n </div>\n\n </div>\n</template>\n\n<script>\nexport default {\n name: 'HelloWorld',\n props: {\n msg: String\n },\n data() {\n return {\n myJson: {'stub': 'prefixes report'}\n }\n },\n methods: {\n accordion: function (event) {\n event.target.classList.toggle('active');\n }\n }\n}\n</script>\n\n<!-- Add \"scoped\" attribute to limit CSS to this component only -->\n<style scoped>\nh3 {\n margin: 40px 0 0;\n}\nul {\n list-style-type: none;\n padding: 0;\n}\nli {\n display: inline-block;\n margin: 0 10px;\n}\na {\n color: #42b983;\n}\n\n.tests_without_prefixes {\n background-color: #273645;\n color: #b94283;\n margin: 2px 0px;\n padding: 0px 8px;\n height: 20px;\n text-align: left;\n}\n\n.tests_without_prefixes:hover {\n background-color: #2b2b2b;\n}\n\n.test_without_prefixes {\n background-color: #273645;\n color: #b94283;\n margin: 2px 0px 0px 16px;\n height: 20px;\n text-align: left;\n padding: 0px 8px;\n}\n\n.tests_without_actions {\n background-color: #273645;\n color: #b94283;\n margin: 2px 0px 0px 16px;\n padding: 0px 8px;\n height: 20px;\n text-align: left;\n}\n\n.tests_without_actions:hover {\n background-color: #2b2b2b;\n}\n\n.test_without_actions {\n background-color: #273645;\n color: #b94283;\n margin: 2px 0px 0px 24px;\n height: 20px;\n text-align: left;\n padding: 0px 8px;\n}\n\n.response_good {\n float: left;\n text-align: left;\n padding: 0px 2px;\n color: #42b983;\n}\n\n.response_bad {\n float: left;\n text-align: left;\n padding: 0px 2px;\n color: #b94283;\n}\n\n.action:hover {\n background-color: #2b2b2b;\n}\n\n.response {\n width: 50px;\n float: left;\n text-align: left;\n}\n\n.error {\n color: red;\n width: 10px;\n float: left;\n text-align: left;\n}\n\na:link {\n color: #42b983;\n text-decoration: none;\n}\n\na:visited {\n color: #42b983;\n text-decoration: none;\n}\n\na:hover {\n color: #42b983;\n text-decoration: none;\n}\n\na:active {\n color: #42b983;\n text-decoration: none;\n}\n</style>\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./HelloWorld.vue?vue&type=template&id=3cafb9bc&scoped=true&\"\nimport script from \"./HelloWorld.vue?vue&type=script&lang=js&\"\nexport * from \"./HelloWorld.vue?vue&type=script&lang=js&\"\nimport style0 from \"./HelloWorld.vue?vue&type=style&index=0&id=3cafb9bc&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"3cafb9bc\",\n null\n \n)\n\nexport default component.exports","<template>\n <div class=\"home\">\n <HelloWorld msg=\"Welcome to Your Vue.js App\"/>\n </div>\n</template>\n\n<script>\n// @ is an alias to /src\nimport HelloWorld from '@/components/HelloWorld.vue'\n\nexport default {\n name: 'Home',\n components: {\n HelloWorld\n }\n}\n</script>\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Home.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Home.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Home.vue?vue&type=template&id=0dbf8568&\"\nimport script from \"./Home.vue?vue&type=script&lang=js&\"\nexport * from \"./Home.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _vm._m(0)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"about\"},[_c('h1',[_vm._v(\"This is an about page\")])])}]\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./About.vue?vue&type=template&id=1ae8a7be&\"\nvar script = {}\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"id\":\"main\"}},_vm._l((_vm.myJson.prefixes_details),function(prefix){return _c('div',[(_vm.$route.query.prefix == prefix.name)?_c('div',{staticClass:\"accordion-item\"},[_c('div',{staticClass:\"prefix\"},[_vm._v(_vm._s(prefix.name))]),_vm._l((prefix.actions.actions_details),function(action){return _c('div',[(_vm.$route.query.method == action.method && _vm.$route.query.path == action.path)?_c('div',{staticClass:\"accordion-item\"},[_c('div',{staticClass:\"action\"},[_c('div',{staticClass:\"method\"},[_vm._v(_vm._s(action.method))]),_c('div',{staticClass:\"path\"},[_vm._v(_vm._s(action.path))])]),(action.responses.tests_without_responses.length != 0)?_c('div',[_c('div',{staticClass:\"accordion-item\"},[_c('div',{staticClass:\"tests_without_responses accordion-item-head\",on:{\"click\":_vm.accordion}},[_vm._v(\" tests without responses: \"+_vm._s(action.responses.tests_without_responses.length)+\" ✖ \")]),_c('div',{staticClass:\"accordion-item-body\"},_vm._l((action.responses.tests_without_responses),function(test_without_responses){return _c('div',[_c('div',{staticClass:\"test_without_responses\"},[_vm._v(\" \"+_vm._s(test_without_responses)+\" ✖ \"+_vm._s(_vm.tests[test_without_responses])+\" \")])])}),0)])]):_vm._e(),_vm._l((action.responses.responses_details),function(response){return _c('div',[_c('div',{staticClass:\"response\"},[_c('div',{staticClass:\"accordion-item\"},[_c('div',{staticClass:\"accordion-item-head\",on:{\"click\":_vm.accordion}},[(response.combinations.cover_percent == '100%')?_c('div',{staticClass:\"response_good\"},[_vm._v(\" \"+_vm._s(response.combinations.cover_percent)+\" \"+_vm._s(response.method)+\" \")]):_c('div',{staticClass:\"response_bad\"},[_vm._v(\" \"+_vm._s(response.combinations.cover_percent)+\" \"+_vm._s(response.method)+\" \")])]),_c('div',{staticClass:\"accordion-item-body\"},[_c('vue-json-compare',{attrs:{\"oldData\":_vm.jsonSchemas[response.json_schema],\"newData\":_vm.jsonSchemas[response.json_schema]}})],1)])]),_vm._l((response.combinations.combinations_details),function(combination){return _c('div',[_c('div',{staticClass:\"combination\"},[_c('div',{staticClass:\"accordion-item\"},[_c('div',{staticClass:\"accordion-item-head\",on:{\"click\":_vm.accordion}},[_vm._v(\" type: \"+_vm._s(combination.type)+\", name: \"+_vm._s(combination.name)+\", tests_size: \"+_vm._s(combination.tests_size)+\" \")]),_c('div',{staticClass:\"accordion-item-body\"},[_c('vue-json-compare',{attrs:{\"oldData\":_vm.jsonSchemas[response.json_schema],\"newData\":_vm.combinations[combination.json_schema]}})],1)])])])})],2)})],2):_vm._e()])})],2):_vm._e()])}),0)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","<template>\n <div id=\"main\">\n <div v-for=\"prefix in myJson.prefixes_details\">\n <div v-if=\"$route.query.prefix == prefix.name\" class=\"accordion-item\">\n <div class=\"prefix\">{{prefix.name}}</div>\n <div v-for=\"action in prefix.actions.actions_details\">\n <div v-if=\"$route.query.method == action.method && $route.query.path == action.path\" class=\"accordion-item\">\n <div class=\"action\">\n <div class=\"method\">{{action.method}}</div>\n <div class=\"path\">{{action.path}}</div>\n </div>\n\n <div v-if=\"action.responses.tests_without_responses.length != 0\">\n <div class=\"accordion-item\">\n <div class=\"tests_without_responses accordion-item-head\" v-on:click=\"accordion\">\n tests without responses: {{ action.responses.tests_without_responses.length }} ✖\n </div>\n <div class=\"accordion-item-body\">\n <div v-for=\"test_without_responses in action.responses.tests_without_responses\">\n <div class=\"test_without_responses\">\n {{ test_without_responses }} ✖\n {{tests[test_without_responses]}}\n </div>\n </div>\n </div>\n </div>\n </div>\n\n <div v-for=\"response in action.responses.responses_details\">\n <div class=\"response\">\n <div class=\"accordion-item\">\n <div class=\"accordion-item-head\" v-on:click=\"accordion\">\n <div v-if=\"response.combinations.cover_percent == '100%'\" class=\"response_good\">\n {{ response.combinations.cover_percent }}\n {{ response.method }}\n </div>\n <div v-else class=\"response_bad\">\n {{ response.combinations.cover_percent }}\n {{ response.method }}\n </div>\n </div>\n <div class=\"accordion-item-body\">\n <vue-json-compare :oldData=\"jsonSchemas[response.json_schema]\"\n :newData=\"jsonSchemas[response.json_schema]\"></vue-json-compare>\n </div>\n </div>\n </div>\n <div v-for=\"combination in response.combinations.combinations_details\">\n <div class=\"combination\">\n <div class=\"accordion-item\">\n <div class=\"accordion-item-head\" v-on:click=\"accordion\">\n type: {{ combination.type }}, name: {{ combination.name }}, tests_size:\n {{ combination.tests_size }}\n </div>\n <div class=\"accordion-item-body\">\n <vue-json-compare :oldData=\"jsonSchemas[response.json_schema]\"\n :newData=\"combinations[combination.json_schema]\"></vue-json-compare>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</template>\n\n<script>\nimport vueJsonCompare from 'vue-json-compare'\n\nexport default {\n name: 'HelloWorld',\n props: {\n msg: String\n },\n components: {\n vueJsonCompare\n },\n data() {\n return {\n myJson: {'stub': 'for action page'},\n jsonSchemas: {'stub': 'json-schemas'},\n combinations: {'stub': 'combinations'},\n tests: {'stub': 'tests'}\n }\n },\n methods: {\n accordion: function (event) {\n event.target.classList.toggle('active');\n }\n }\n}\n</script>\n\n<style>\n.request {\n color: #42b983;\n background-color: #273645;\n padding: 0px 0px 0px 8px;\n}\n\n.tests_without_responses {\n text-align: left;\n padding: 0px 0px 0px 8px;\n color: #b94283;\n background-color: #273645;\n margin: 2px 0px 0px 24px;\n}\n\n.tests_without_responses:hover {\n background-color: #2b2b2b;\n}\n\n.test_without_responses {\n text-align: left;\n padding: 0px 0px 0px 8px;\n color: #b94283;\n background-color: #273645;\n margin: 2px 0px 0px 32px;\n}\n\n.test_without_responses:hover {\n background-color: #2b2b2b;\n}\n\n.response {\n text-align: left;\n padding: 0px 0px 0px 8px;\n color: #42b983;\n background-color: #273645;\n margin: 2px 0px 0px 24px;\n}\n\n.response:hover {\n background-color: #2b2b2b;\n}\n\n.response_good {\n color: #42b983;\n}\n\n.response_bad {\n color: #b94283;\n}\n\n.combination {\n text-align: left;\n padding: 0px 0px 0px 8px;\n color: #42b983;\n background-color: #273645;\n margin: 2px 0px 0px 32px;\n}\n\n.combination:hover {\n background-color: #2b2b2b;\n}\n\n/* darkmode */\n.alpaca-json{\n background-color: #131a20;\n}\n.alpaca-add{\n background-color: #004313;\n}\n.alpaca-del {\n background-color: #160004;\n}\n.alpaca-upd{\n background-color: #423200;\n}\n</style>","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Action.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Action.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Action.vue?vue&type=template&id=376149cb&\"\nimport script from \"./Action.vue?vue&type=script&lang=js&\"\nexport * from \"./Action.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Action.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Vue from 'vue'\nimport VueRouter from 'vue-router'\nimport Home from '../views/Home.vue'\nimport About from '../views/About.vue'\nimport Action from '../views/Action.vue'\n\nVue.use(VueRouter)\n\n const routes = [\n {\n path: '/',\n name: 'Home',\n component: Home\n },\n {\n path: '/about',\n name: 'About',\n component: About\n },\n {\n path: '/action',\n name: 'Action',\n component: Action\n }\n]\n\nconst router = new VueRouter({\n routes\n})\n\nexport default router\n","import Vue from 'vue'\nimport App from './App.vue'\nimport router from './router'\n\nVue.config.productionTip = false\n\nnew Vue({\n router,\n render: function (h) { return h(App) }\n}).$mount('#app')\n","import mod from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Action.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Action.vue?vue&type=style&index=0&lang=css&\""],"sourceRoot":""}
|
data/lib/templates/bomboniere/dist/js/{chunk-vendors.90aeb613.js → chunk-vendors.0f99b670.js}
RENAMED
@@ -10,4 +10,4 @@ var n=Object.freeze({});function r(t){return void 0===t||null===t}function o(t){
|
|
10
10
|
* (c) 2020 Evan You
|
11
11
|
* @license MIT
|
12
12
|
*/function r(t,e){0}function o(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function i(t,e){return o(t)&&t._isRouter&&(null==e||t.type===e)}function a(t,e){for(var n in e)t[n]=e[n];return t}var s={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var n=e.props,r=e.children,o=e.parent,i=e.data;i.routerView=!0;var s=o.$createElement,u=n.name,l=o.$route,f=o._routerViewCache||(o._routerViewCache={}),p=0,d=!1;while(o&&o._routerRoot!==o){var h=o.$vnode?o.$vnode.data:{};h.routerView&&p++,h.keepAlive&&o._directInactive&&o._inactive&&(d=!0),o=o.$parent}if(i.routerViewDepth=p,d){var v=f[u],y=v&&v.component;return y?(v.configProps&&c(y,i,v.route,v.configProps),s(y,i,r)):s()}var m=l.matched[p],g=m&&m.components[u];if(!m||!g)return f[u]=null,s();f[u]={component:g},i.registerRouteInstance=function(t,e){var n=m.instances[u];(e&&n!==t||!e&&n===t)&&(m.instances[u]=e)},(i.hook||(i.hook={})).prepatch=function(t,e){m.instances[u]=e.componentInstance},i.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==m.instances[u]&&(m.instances[u]=t.componentInstance)};var _=m.props&&m.props[u];return _&&(a(f[u],{route:l,configProps:_}),c(g,i,l,_)),s(g,i,r)}};function c(t,e,n,r){var o=e.props=u(n,r);if(o){o=e.props=a({},o);var i=e.attrs=e.attrs||{};for(var s in o)t.props&&s in t.props||(i[s]=o[s],delete o[s])}}function u(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}var l=/[!'()*]/g,f=function(t){return"%"+t.charCodeAt(0).toString(16)},p=/%2C/g,d=function(t){return encodeURIComponent(t).replace(l,f).replace(p,",")},h=decodeURIComponent;function v(t,e,n){void 0===e&&(e={});var r,o=n||y;try{r=o(t||"")}catch(a){r={}}for(var i in e)r[i]=e[i];return r}function y(t){var e={};return t=t.trim().replace(/^(\?|#|&)/,""),t?(t.split("&").forEach((function(t){var n=t.replace(/\+/g," ").split("="),r=h(n.shift()),o=n.length>0?h(n.join("=")):null;void 0===e[r]?e[r]=o:Array.isArray(e[r])?e[r].push(o):e[r]=[e[r],o]})),e):e}function m(t){var e=t?Object.keys(t).map((function(e){var n=t[e];if(void 0===n)return"";if(null===n)return d(e);if(Array.isArray(n)){var r=[];return n.forEach((function(t){void 0!==t&&(null===t?r.push(d(e)):r.push(d(e)+"="+d(t)))})),r.join("&")}return d(e)+"="+d(n)})).filter((function(t){return t.length>0})).join("&"):null;return e?"?"+e:""}var g=/\/?$/;function _(t,e,n,r){var o=r&&r.options.stringifyQuery,i=e.query||{};try{i=b(i)}catch(s){}var a={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:i,params:e.params||{},fullPath:O(e,o),matched:t?k(t):[]};return n&&(a.redirectedFrom=O(n,o)),Object.freeze(a)}function b(t){if(Array.isArray(t))return t.map(b);if(t&&"object"===typeof t){var e={};for(var n in t)e[n]=b(t[n]);return e}return t}var w=_(null,{path:"/"});function k(t){var e=[];while(t)e.unshift(t),t=t.parent;return e}function O(t,e){var n=t.path,r=t.query;void 0===r&&(r={});var o=t.hash;void 0===o&&(o="");var i=e||m;return(n||"/")+i(r)+o}function C(t,e){return e===w?t===e:!!e&&(t.path&&e.path?t.path.replace(g,"")===e.path.replace(g,"")&&t.hash===e.hash&&x(t.query,e.query):!(!t.name||!e.name)&&(t.name===e.name&&t.hash===e.hash&&x(t.query,e.query)&&x(t.params,e.params)))}function x(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var n=Object.keys(t),r=Object.keys(e);return n.length===r.length&&n.every((function(n){var r=t[n],o=e[n];return"object"===typeof r&&"object"===typeof o?x(r,o):String(r)===String(o)}))}function A(t,e){return 0===t.path.replace(g,"/").indexOf(e.path.replace(g,"/"))&&(!e.hash||t.hash===e.hash)&&$(t.query,e.query)}function $(t,e){for(var n in e)if(!(n in t))return!1;return!0}function j(t,e,n){var r=t.charAt(0);if("/"===r)return t;if("?"===r||"#"===r)return e+t;var o=e.split("/");n&&o[o.length-1]||o.pop();for(var i=t.replace(/^\//,"").split("/"),a=0;a<i.length;a++){var s=i[a];".."===s?o.pop():"."!==s&&o.push(s)}return""!==o[0]&&o.unshift(""),o.join("/")}function S(t){var e="",n="",r=t.indexOf("#");r>=0&&(e=t.slice(r),t=t.slice(0,r));var o=t.indexOf("?");return o>=0&&(n=t.slice(o+1),t=t.slice(0,o)),{path:t,query:n,hash:e}}function E(t){return t.replace(/\/\//g,"/")}var T=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},D=Q,P=M,L=F,R=B,I=G,N=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function M(t,e){var n,r=[],o=0,i=0,a="",s=e&&e.delimiter||"/";while(null!=(n=N.exec(t))){var c=n[0],u=n[1],l=n.index;if(a+=t.slice(i,l),i=l+c.length,u)a+=u[1];else{var f=t[i],p=n[2],d=n[3],h=n[4],v=n[5],y=n[6],m=n[7];a&&(r.push(a),a="");var g=null!=p&&null!=f&&f!==p,_="+"===y||"*"===y,b="?"===y||"*"===y,w=n[2]||s,k=h||v;r.push({name:d||o++,prefix:p||"",delimiter:w,optional:b,repeat:_,partial:g,asterisk:!!m,pattern:k?q(k):m?".*":"[^"+H(w)+"]+?"})}}return i<t.length&&(a+=t.substr(i)),a&&r.push(a),r}function F(t,e){return B(M(t,e),e)}function U(t){return encodeURI(t).replace(/[\/?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()}))}function V(t){return encodeURI(t).replace(/[?#]/g,(function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()}))}function B(t,e){for(var n=new Array(t.length),r=0;r<t.length;r++)"object"===typeof t[r]&&(n[r]=new RegExp("^(?:"+t[r].pattern+")$",K(e)));return function(e,r){for(var o="",i=e||{},a=r||{},s=a.pretty?U:encodeURIComponent,c=0;c<t.length;c++){var u=t[c];if("string"!==typeof u){var l,f=i[u.name];if(null==f){if(u.optional){u.partial&&(o+=u.prefix);continue}throw new TypeError('Expected "'+u.name+'" to be defined')}if(T(f)){if(!u.repeat)throw new TypeError('Expected "'+u.name+'" to not repeat, but received `'+JSON.stringify(f)+"`");if(0===f.length){if(u.optional)continue;throw new TypeError('Expected "'+u.name+'" to not be empty')}for(var p=0;p<f.length;p++){if(l=s(f[p]),!n[c].test(l))throw new TypeError('Expected all "'+u.name+'" to match "'+u.pattern+'", but received `'+JSON.stringify(l)+"`");o+=(0===p?u.prefix:u.delimiter)+l}}else{if(l=u.asterisk?V(f):s(f),!n[c].test(l))throw new TypeError('Expected "'+u.name+'" to match "'+u.pattern+'", but received "'+l+'"');o+=u.prefix+l}}else o+=u}return o}}function H(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function q(t){return t.replace(/([=!:$\/()])/g,"\\$1")}function z(t,e){return t.keys=e,t}function K(t){return t&&t.sensitive?"":"i"}function W(t,e){var n=t.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)e.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return z(t,e)}function X(t,e,n){for(var r=[],o=0;o<t.length;o++)r.push(Q(t[o],e,n).source);var i=new RegExp("(?:"+r.join("|")+")",K(n));return z(i,e)}function J(t,e,n){return G(M(t,n),e,n)}function G(t,e,n){T(e)||(n=e||n,e=[]),n=n||{};for(var r=n.strict,o=!1!==n.end,i="",a=0;a<t.length;a++){var s=t[a];if("string"===typeof s)i+=H(s);else{var c=H(s.prefix),u="(?:"+s.pattern+")";e.push(s),s.repeat&&(u+="(?:"+c+u+")*"),u=s.optional?s.partial?c+"("+u+")?":"(?:"+c+"("+u+"))?":c+"("+u+")",i+=u}}var l=H(n.delimiter||"/"),f=i.slice(-l.length)===l;return r||(i=(f?i.slice(0,-l.length):i)+"(?:"+l+"(?=$))?"),i+=o?"$":r&&f?"":"(?="+l+"|$)",z(new RegExp("^"+i,K(n)),e)}function Q(t,e,n){return T(e)||(n=e||n,e=[]),n=n||{},t instanceof RegExp?W(t,e):T(t)?X(t,e,n):J(t,e,n)}D.parse=P,D.compile=L,D.tokensToFunction=R,D.tokensToRegExp=I;var Y=Object.create(null);function Z(t,e,n){e=e||{};try{var r=Y[t]||(Y[t]=D.compile(t));return"string"===typeof e.pathMatch&&(e[0]=e.pathMatch),r(e,{pretty:!0})}catch(o){return""}finally{delete e[0]}}function tt(t,e,n,r){var o="string"===typeof t?{path:t}:t;if(o._normalized)return o;if(o.name){o=a({},t);var i=o.params;return i&&"object"===typeof i&&(o.params=a({},i)),o}if(!o.path&&o.params&&e){o=a({},o),o._normalized=!0;var s=a(a({},e.params),o.params);if(e.name)o.name=e.name,o.params=s;else if(e.matched.length){var c=e.matched[e.matched.length-1].path;o.path=Z(c,s,"path "+e.path)}else 0;return o}var u=S(o.path||""),l=e&&e.path||"/",f=u.path?j(u.path,l,n||o.append):l,p=v(u.query,o.query,r&&r.options.parseQuery),d=o.hash||u.hash;return d&&"#"!==d.charAt(0)&&(d="#"+d),{_normalized:!0,path:f,query:p,hash:d}}var et,nt=[String,Object],rt=[String,Array],ot=function(){},it={name:"RouterLink",props:{to:{type:nt,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:"page"},event:{type:rt,default:"click"}},render:function(t){var e=this,n=this.$router,r=this.$route,o=n.resolve(this.to,r,this.append),i=o.location,s=o.route,c=o.href,u={},l=n.options.linkActiveClass,f=n.options.linkExactActiveClass,p=null==l?"router-link-active":l,d=null==f?"router-link-exact-active":f,h=null==this.activeClass?p:this.activeClass,v=null==this.exactActiveClass?d:this.exactActiveClass,y=s.redirectedFrom?_(null,tt(s.redirectedFrom),null,n):s;u[v]=C(r,y),u[h]=this.exact?u[v]:A(r,y);var m=u[v]?this.ariaCurrentValue:null,g=function(t){at(t)&&(e.replace?n.replace(i,ot):n.push(i,ot))},b={click:at};Array.isArray(this.event)?this.event.forEach((function(t){b[t]=g})):b[this.event]=g;var w={class:u},k=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:c,route:s,navigate:g,isActive:u[h],isExactActive:u[v]});if(k){if(1===k.length)return k[0];if(k.length>1||!k.length)return 0===k.length?t():t("span",{},k)}if("a"===this.tag)w.on=b,w.attrs={href:c,"aria-current":m};else{var O=st(this.$slots.default);if(O){O.isStatic=!1;var x=O.data=a({},O.data);for(var $ in x.on=x.on||{},x.on){var j=x.on[$];$ in b&&(x.on[$]=Array.isArray(j)?j:[j])}for(var S in b)S in x.on?x.on[S].push(b[S]):x.on[S]=g;var E=O.data.attrs=a({},O.data.attrs);E.href=c,E["aria-current"]=m}else w.on=b}return t(this.tag,w,this.$slots.default)}};function at(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&(void 0===t.button||0===t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function st(t){if(t)for(var e,n=0;n<t.length;n++){if(e=t[n],"a"===e.tag)return e;if(e.children&&(e=st(e.children)))return e}}function ct(t){if(!ct.installed||et!==t){ct.installed=!0,et=t;var e=function(t){return void 0!==t},n=function(t,n){var r=t.$options._parentVnode;e(r)&&e(r=r.data)&&e(r=r.registerRouteInstance)&&r(t,n)};t.mixin({beforeCreate:function(){e(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),t.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,n(this,this)},destroyed:function(){n(this)}}),Object.defineProperty(t.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(t.prototype,"$route",{get:function(){return this._routerRoot._route}}),t.component("RouterView",s),t.component("RouterLink",it);var r=t.config.optionMergeStrategies;r.beforeRouteEnter=r.beforeRouteLeave=r.beforeRouteUpdate=r.created}}var ut="undefined"!==typeof window;function lt(t,e,n,r){var o=e||[],i=n||Object.create(null),a=r||Object.create(null);t.forEach((function(t){ft(o,i,a,t)}));for(var s=0,c=o.length;s<c;s++)"*"===o[s]&&(o.push(o.splice(s,1)[0]),c--,s--);return{pathList:o,pathMap:i,nameMap:a}}function ft(t,e,n,r,o,i){var a=r.path,s=r.name;var c=r.pathToRegexpOptions||{},u=dt(a,o,c.strict);"boolean"===typeof r.caseSensitive&&(c.sensitive=r.caseSensitive);var l={path:u,regex:pt(u,c),components:r.components||{default:r.component},instances:{},name:s,parent:o,matchAs:i,redirect:r.redirect,beforeEnter:r.beforeEnter,meta:r.meta||{},props:null==r.props?{}:r.components?r.props:{default:r.props}};if(r.children&&r.children.forEach((function(r){var o=i?E(i+"/"+r.path):void 0;ft(t,e,n,r,l,o)})),e[l.path]||(t.push(l.path),e[l.path]=l),void 0!==r.alias)for(var f=Array.isArray(r.alias)?r.alias:[r.alias],p=0;p<f.length;++p){var d=f[p];0;var h={path:d,children:r.children};ft(t,e,n,h,o,l.path||"/")}s&&(n[s]||(n[s]=l))}function pt(t,e){var n=D(t,[],e);return n}function dt(t,e,n){return n||(t=t.replace(/\/$/,"")),"/"===t[0]||null==e?t:E(e.path+"/"+t)}function ht(t,e){var n=lt(t),r=n.pathList,o=n.pathMap,i=n.nameMap;function a(t){lt(t,r,o,i)}function s(t,n,a){var s=tt(t,n,!1,e),c=s.name;if(c){var u=i[c];if(!u)return l(null,s);var f=u.regex.keys.filter((function(t){return!t.optional})).map((function(t){return t.name}));if("object"!==typeof s.params&&(s.params={}),n&&"object"===typeof n.params)for(var p in n.params)!(p in s.params)&&f.indexOf(p)>-1&&(s.params[p]=n.params[p]);return s.path=Z(u.path,s.params,'named route "'+c+'"'),l(u,s,a)}if(s.path){s.params={};for(var d=0;d<r.length;d++){var h=r[d],v=o[h];if(vt(v.regex,s.path,s.params))return l(v,s,a)}}return l(null,s)}function c(t,n){var r=t.redirect,o="function"===typeof r?r(_(t,n,null,e)):r;if("string"===typeof o&&(o={path:o}),!o||"object"!==typeof o)return l(null,n);var a=o,c=a.name,u=a.path,f=n.query,p=n.hash,d=n.params;if(f=a.hasOwnProperty("query")?a.query:f,p=a.hasOwnProperty("hash")?a.hash:p,d=a.hasOwnProperty("params")?a.params:d,c){i[c];return s({_normalized:!0,name:c,query:f,hash:p,params:d},void 0,n)}if(u){var h=yt(u,t),v=Z(h,d,'redirect route with path "'+h+'"');return s({_normalized:!0,path:v,query:f,hash:p},void 0,n)}return l(null,n)}function u(t,e,n){var r=Z(n,e.params,'aliased route with path "'+n+'"'),o=s({_normalized:!0,path:r});if(o){var i=o.matched,a=i[i.length-1];return e.params=o.params,l(a,e)}return l(null,e)}function l(t,n,r){return t&&t.redirect?c(t,r||n):t&&t.matchAs?u(t,n,t.matchAs):_(t,n,r,e)}return{match:s,addRoutes:a}}function vt(t,e,n){var r=e.match(t);if(!r)return!1;if(!n)return!0;for(var o=1,i=r.length;o<i;++o){var a=t.keys[o-1],s="string"===typeof r[o]?decodeURIComponent(r[o]):r[o];a&&(n[a.name||"pathMatch"]=s)}return!0}function yt(t,e){return j(t,e.parent?e.parent.path:"/",!0)}var mt=ut&&window.performance&&window.performance.now?window.performance:Date;function gt(){return mt.now().toFixed(3)}var _t=gt();function bt(){return _t}function wt(t){return _t=t}var kt=Object.create(null);function Ot(){"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual");var t=window.location.protocol+"//"+window.location.host,e=window.location.href.replace(t,""),n=a({},window.history.state);return n.key=bt(),window.history.replaceState(n,"",e),window.addEventListener("popstate",At),function(){window.removeEventListener("popstate",At)}}function Ct(t,e,n,r){if(t.app){var o=t.options.scrollBehavior;o&&t.app.$nextTick((function(){var i=$t(),a=o.call(t,e,n,r?i:null);a&&("function"===typeof a.then?a.then((function(t){Lt(t,i)})).catch((function(t){0})):Lt(a,i))}))}}function xt(){var t=bt();t&&(kt[t]={x:window.pageXOffset,y:window.pageYOffset})}function At(t){xt(),t.state&&t.state.key&&wt(t.state.key)}function $t(){var t=bt();if(t)return kt[t]}function jt(t,e){var n=document.documentElement,r=n.getBoundingClientRect(),o=t.getBoundingClientRect();return{x:o.left-r.left-e.x,y:o.top-r.top-e.y}}function St(t){return Dt(t.x)||Dt(t.y)}function Et(t){return{x:Dt(t.x)?t.x:window.pageXOffset,y:Dt(t.y)?t.y:window.pageYOffset}}function Tt(t){return{x:Dt(t.x)?t.x:0,y:Dt(t.y)?t.y:0}}function Dt(t){return"number"===typeof t}var Pt=/^#\d/;function Lt(t,e){var n="object"===typeof t;if(n&&"string"===typeof t.selector){var r=Pt.test(t.selector)?document.getElementById(t.selector.slice(1)):document.querySelector(t.selector);if(r){var o=t.offset&&"object"===typeof t.offset?t.offset:{};o=Tt(o),e=jt(r,o)}else St(t)&&(e=Et(t))}else n&&St(t)&&(e=Et(t));e&&window.scrollTo(e.x,e.y)}var Rt=ut&&function(){var t=window.navigator.userAgent;return(-1===t.indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&(window.history&&"function"===typeof window.history.pushState)}();function It(t,e){xt();var n=window.history;try{if(e){var r=a({},n.state);r.key=bt(),n.replaceState(r,"",t)}else n.pushState({key:wt(gt())},"",t)}catch(o){window.location[e?"replace":"assign"](t)}}function Nt(t){It(t,!0)}function Mt(t,e,n){var r=function(o){o>=t.length?n():t[o]?e(t[o],(function(){r(o+1)})):r(o+1)};r(0)}function Ft(t){return function(e,n,r){var i=!1,a=0,s=null;Ut(t,(function(t,e,n,c){if("function"===typeof t&&void 0===t.cid){i=!0,a++;var u,l=qt((function(e){Ht(e)&&(e=e.default),t.resolved="function"===typeof e?e:et.extend(e),n.components[c]=e,a--,a<=0&&r()})),f=qt((function(t){var e="Failed to resolve async component "+c+": "+t;s||(s=o(t)?t:new Error(e),r(s))}));try{u=t(l,f)}catch(d){f(d)}if(u)if("function"===typeof u.then)u.then(l,f);else{var p=u.component;p&&"function"===typeof p.then&&p.then(l,f)}}})),i||r()}}function Ut(t,e){return Vt(t.map((function(t){return Object.keys(t.components).map((function(n){return e(t.components[n],t.instances[n],t,n)}))})))}function Vt(t){return Array.prototype.concat.apply([],t)}var Bt="function"===typeof Symbol&&"symbol"===typeof Symbol.toStringTag;function Ht(t){return t.__esModule||Bt&&"Module"===t[Symbol.toStringTag]}function qt(t){var e=!1;return function(){var n=[],r=arguments.length;while(r--)n[r]=arguments[r];if(!e)return e=!0,t.apply(this,n)}}var zt={redirected:1,aborted:2,cancelled:3,duplicated:4};function Kt(t,e){return Gt(t,e,zt.redirected,'Redirected when going from "'+t.fullPath+'" to "'+Yt(e)+'" via a navigation guard.')}function Wt(t,e){return Gt(t,e,zt.duplicated,'Avoided redundant navigation to current location: "'+t.fullPath+'".')}function Xt(t,e){return Gt(t,e,zt.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Jt(t,e){return Gt(t,e,zt.aborted,'Navigation aborted from "'+t.fullPath+'" to "'+e.fullPath+'" via a navigation guard.')}function Gt(t,e,n,r){var o=new Error(r);return o._isRouter=!0,o.from=t,o.to=e,o.type=n,o}var Qt=["params","query","hash"];function Yt(t){if("string"===typeof t)return t;if("path"in t)return t.path;var e={};return Qt.forEach((function(n){n in t&&(e[n]=t[n])})),JSON.stringify(e,null,2)}var Zt=function(t,e){this.router=t,this.base=te(e),this.current=w,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function te(t){if(!t)if(ut){var e=document.querySelector("base");t=e&&e.getAttribute("href")||"/",t=t.replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}function ee(t,e){var n,r=Math.max(t.length,e.length);for(n=0;n<r;n++)if(t[n]!==e[n])break;return{updated:e.slice(0,n),activated:e.slice(n),deactivated:t.slice(n)}}function ne(t,e,n,r){var o=Ut(t,(function(t,r,o,i){var a=re(t,e);if(a)return Array.isArray(a)?a.map((function(t){return n(t,r,o,i)})):n(a,r,o,i)}));return Vt(r?o.reverse():o)}function re(t,e){return"function"!==typeof t&&(t=et.extend(t)),t.options[e]}function oe(t){return ne(t,"beforeRouteLeave",ae,!0)}function ie(t){return ne(t,"beforeRouteUpdate",ae)}function ae(t,e){if(e)return function(){return t.apply(e,arguments)}}function se(t,e,n){return ne(t,"beforeRouteEnter",(function(t,r,o,i){return ce(t,o,i,e,n)}))}function ce(t,e,n,r,o){return function(i,a,s){return t(i,a,(function(t){"function"===typeof t&&r.push((function(){ue(t,e.instances,n,o)})),s(t)}))}}function ue(t,e,n,r){e[n]&&!e[n]._isBeingDestroyed?t(e[n]):r()&&setTimeout((function(){ue(t,e,n,r)}),16)}Zt.prototype.listen=function(t){this.cb=t},Zt.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},Zt.prototype.onError=function(t){this.errorCbs.push(t)},Zt.prototype.transitionTo=function(t,e,n){var r=this,o=this.router.match(t,this.current);this.confirmTransition(o,(function(){var t=r.current;r.updateRoute(o),e&&e(o),r.ensureURL(),r.router.afterHooks.forEach((function(e){e&&e(o,t)})),r.ready||(r.ready=!0,r.readyCbs.forEach((function(t){t(o)})))}),(function(t){n&&n(t),t&&!r.ready&&(r.ready=!0,i(t,zt.redirected)?r.readyCbs.forEach((function(t){t(o)})):r.readyErrorCbs.forEach((function(e){e(t)})))}))},Zt.prototype.confirmTransition=function(t,e,n){var a=this,s=this.current,c=function(t){!i(t)&&o(t)&&(a.errorCbs.length?a.errorCbs.forEach((function(e){e(t)})):(r(!1,"uncaught error during route navigation:"),console.error(t))),n&&n(t)},u=t.matched.length-1,l=s.matched.length-1;if(C(t,s)&&u===l&&t.matched[u]===s.matched[l])return this.ensureURL(),c(Wt(s,t));var f=ee(this.current.matched,t.matched),p=f.updated,d=f.deactivated,h=f.activated,v=[].concat(oe(d),this.router.beforeHooks,ie(p),h.map((function(t){return t.beforeEnter})),Ft(h));this.pending=t;var y=function(e,n){if(a.pending!==t)return c(Xt(s,t));try{e(t,s,(function(e){!1===e?(a.ensureURL(!0),c(Jt(s,t))):o(e)?(a.ensureURL(!0),c(e)):"string"===typeof e||"object"===typeof e&&("string"===typeof e.path||"string"===typeof e.name)?(c(Kt(s,t)),"object"===typeof e&&e.replace?a.replace(e):a.push(e)):n(e)}))}catch(r){c(r)}};Mt(v,y,(function(){var n=[],r=function(){return a.current===t},o=se(h,n,r),i=o.concat(a.router.resolveHooks);Mt(i,y,(function(){if(a.pending!==t)return c(Xt(s,t));a.pending=null,e(t),a.router.app&&a.router.app.$nextTick((function(){n.forEach((function(t){t()}))}))}))}))},Zt.prototype.updateRoute=function(t){this.current=t,this.cb&&this.cb(t)},Zt.prototype.setupListeners=function(){},Zt.prototype.teardownListeners=function(){this.listeners.forEach((function(t){t()})),this.listeners=[]};var le=function(t){function e(e,n){t.call(this,e,n),this._startLocation=fe(this.base)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,r=Rt&&n;r&&this.listeners.push(Ot());var o=function(){var n=t.current,o=fe(t.base);t.current===w&&o===t._startLocation||t.transitionTo(o,(function(t){r&&Ct(e,t,n,!0)}))};window.addEventListener("popstate",o),this.listeners.push((function(){window.removeEventListener("popstate",o)}))}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){It(E(r.base+t.fullPath)),Ct(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){Nt(E(r.base+t.fullPath)),Ct(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.ensureURL=function(t){if(fe(this.base)!==this.current.fullPath){var e=E(this.base+this.current.fullPath);t?It(e):Nt(e)}},e.prototype.getCurrentLocation=function(){return fe(this.base)},e}(Zt);function fe(t){var e=decodeURI(window.location.pathname);return t&&0===e.toLowerCase().indexOf(t.toLowerCase())&&(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var pe=function(t){function e(e,n,r){t.call(this,e,n),r&&de(this.base)||he()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,n=e.options.scrollBehavior,r=Rt&&n;r&&this.listeners.push(Ot());var o=function(){var e=t.current;he()&&t.transitionTo(ve(),(function(n){r&&Ct(t.router,n,e,!0),Rt||ge(n.fullPath)}))},i=Rt?"popstate":"hashchange";window.addEventListener(i,o),this.listeners.push((function(){window.removeEventListener(i,o)}))}},e.prototype.push=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){me(t.fullPath),Ct(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this,o=this,i=o.current;this.transitionTo(t,(function(t){ge(t.fullPath),Ct(r.router,t,i,!1),e&&e(t)}),n)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;ve()!==e&&(t?me(e):ge(e))},e.prototype.getCurrentLocation=function(){return ve()},e}(Zt);function de(t){var e=fe(t);if(!/^\/#/.test(e))return window.location.replace(E(t+"/#"+e)),!0}function he(){var t=ve();return"/"===t.charAt(0)||(ge("/"+t),!1)}function ve(){var t=window.location.href,e=t.indexOf("#");if(e<0)return"";t=t.slice(e+1);var n=t.indexOf("?");if(n<0){var r=t.indexOf("#");t=r>-1?decodeURI(t.slice(0,r))+t.slice(r):decodeURI(t)}else t=decodeURI(t.slice(0,n))+t.slice(n);return t}function ye(t){var e=window.location.href,n=e.indexOf("#"),r=n>=0?e.slice(0,n):e;return r+"#"+t}function me(t){Rt?It(ye(t)):window.location.hash=t}function ge(t){Rt?Nt(ye(t)):window.location.replace(ye(t))}var _e=function(t){function e(e,n){t.call(this,e,n),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index+1).concat(t),r.index++,e&&e(t)}),n)},e.prototype.replace=function(t,e,n){var r=this;this.transitionTo(t,(function(t){r.stack=r.stack.slice(0,r.index).concat(t),e&&e(t)}),n)},e.prototype.go=function(t){var e=this,n=this.index+t;if(!(n<0||n>=this.stack.length)){var r=this.stack[n];this.confirmTransition(r,(function(){e.index=n,e.updateRoute(r)}),(function(t){i(t,zt.duplicated)&&(e.index=n)}))}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(Zt),be=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=ht(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!Rt&&!1!==t.fallback,this.fallback&&(e="hash"),ut||(e="abstract"),this.mode=e,e){case"history":this.history=new le(this,t.base);break;case"hash":this.history=new pe(this,t.base,this.fallback);break;case"abstract":this.history=new _e(this,t.base);break;default:0}},we={currentRoute:{configurable:!0}};function ke(t,e){return t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function Oe(t,e,n){var r="hash"===n?"#"+e:e;return t?E(t+"/"+r):r}be.prototype.match=function(t,e,n){return this.matcher.match(t,e,n)},we.currentRoute.get=function(){return this.history&&this.history.current},be.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",(function(){var n=e.apps.indexOf(t);n>-1&&e.apps.splice(n,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardownListeners()})),!this.app){this.app=t;var n=this.history;if(n instanceof le||n instanceof pe){var r=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),r,r)}n.listen((function(t){e.apps.forEach((function(e){e._route=t}))}))}},be.prototype.beforeEach=function(t){return ke(this.beforeHooks,t)},be.prototype.beforeResolve=function(t){return ke(this.resolveHooks,t)},be.prototype.afterEach=function(t){return ke(this.afterHooks,t)},be.prototype.onReady=function(t,e){this.history.onReady(t,e)},be.prototype.onError=function(t){this.history.onError(t)},be.prototype.push=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!==typeof Promise)return new Promise((function(e,n){r.history.push(t,e,n)}));this.history.push(t,e,n)},be.prototype.replace=function(t,e,n){var r=this;if(!e&&!n&&"undefined"!==typeof Promise)return new Promise((function(e,n){r.history.replace(t,e,n)}));this.history.replace(t,e,n)},be.prototype.go=function(t){this.history.go(t)},be.prototype.back=function(){this.go(-1)},be.prototype.forward=function(){this.go(1)},be.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map((function(t){return Object.keys(t.components).map((function(e){return t.components[e]}))}))):[]},be.prototype.resolve=function(t,e,n){e=e||this.history.current;var r=tt(t,e,n,this),o=this.match(r,e),i=o.redirectedFrom||o.fullPath,a=this.history.base,s=Oe(a,i,this.mode);return{location:r,route:o,href:s,normalizedTo:r,resolved:o}},be.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==w&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(be.prototype,we),be.install=ct,be.version="3.3.4",ut&&window.Vue&&window.Vue.use(be),e["a"]=be},c8ba:function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(r){"object"===typeof window&&(n=window)}t.exports=n}}]);
|
13
|
-
//# sourceMappingURL=chunk-vendors.
|
13
|
+
//# sourceMappingURL=chunk-vendors.0f99b670.js.map
|