openc3-cosmos-tool-iframe 5.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +729 -0
- data/README.md +28 -0
- data/Rakefile +39 -0
- data/plugin.txt +4 -0
- data/tools/iframe/index.html +4 -0
- data/tools/iframe/js/497.js +2 -0
- data/tools/iframe/js/497.js.map +1 -0
- data/tools/iframe/js/540.js +2 -0
- data/tools/iframe/js/540.js.map +1 -0
- data/tools/iframe/js/app.js +2 -0
- data/tools/iframe/js/app.js.map +1 -0
- metadata +57 -0
data/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
## OpenC3 COSMOS Iframe Plugin
|
2
|
+
|
3
|
+
[Documentation](https://openc3.com)
|
4
|
+
|
5
|
+
This plugin adds support for the TOOL WINDOW IFRAME plugin.txt mode
|
6
|
+
|
7
|
+
## Getting Started
|
8
|
+
|
9
|
+
1. At the OpenC3 Admin - Plugins, upload the openc3-cosmos-tool-iframe.gem file
|
10
|
+
|
11
|
+
## Contributing
|
12
|
+
|
13
|
+
We encourage you to contribute to OpenC3 COSMOS!
|
14
|
+
|
15
|
+
Contributing is easy.
|
16
|
+
|
17
|
+
1. Fork the project
|
18
|
+
2. Create a feature branch
|
19
|
+
3. Make your changes
|
20
|
+
4. Submit a pull request
|
21
|
+
|
22
|
+
Before any contributions can be incorporated we do require all contributors to agree to a Contributor License Agreement
|
23
|
+
|
24
|
+
This protects both you and us and you retain full rights to any code you write.
|
25
|
+
|
26
|
+
## License
|
27
|
+
|
28
|
+
This OpenC3 COSMOS plugin is released under the AGPLv3.0 with a few addendums. See [LICENSE.txt](LICENSE.txt)
|
data/Rakefile
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# encoding: ascii-8bit
|
2
|
+
|
3
|
+
# Copyright 2023 OpenC3, Inc.
|
4
|
+
# All Rights Reserved.
|
5
|
+
#
|
6
|
+
# This program is free software; you can modify and/or redistribute it
|
7
|
+
# under the terms of the GNU Affero General Public License
|
8
|
+
# as published by the Free Software Foundation; version 3 with
|
9
|
+
# attribution addendums as found in the LICENSE.txt
|
10
|
+
#
|
11
|
+
# This program is distributed in the hope that it will be useful,
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Affero General Public License for more details.
|
15
|
+
#
|
16
|
+
# This file may also be used under the terms of a commercial license
|
17
|
+
# if purchased from OpenC3, Inc.
|
18
|
+
|
19
|
+
PLUGIN_NAME = Dir['*.gemspec'][0].split('.')[0..-2].join('.')
|
20
|
+
|
21
|
+
task :require_version do
|
22
|
+
if ENV['VERSION']
|
23
|
+
if ENV['VERSION'] =~ /-/
|
24
|
+
# Add Timestamp to prerelease versions
|
25
|
+
ENV['VERSION'] = ENV['VERSION'] + "." + Time.now.utc.strftime("%Y%m%d%H%M%S")
|
26
|
+
end
|
27
|
+
else
|
28
|
+
puts "VERSION is required: rake <task> VERSION=X.X.X"
|
29
|
+
exit 1
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
task :build => [:require_version] do
|
34
|
+
_, platform, *_ = RUBY_PLATFORM.split("-")
|
35
|
+
if platform == 'mswin32' or platform == 'mingw32'
|
36
|
+
puts "Warning: Building gem on Windows will lose file permissions"
|
37
|
+
end
|
38
|
+
system("gem build #{PLUGIN_NAME}")
|
39
|
+
end
|
data/plugin.txt
ADDED
@@ -0,0 +1,4 @@
|
|
1
|
+
<!doctype html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Vue App</title><main><h1>Your Microfrontend is not here</h1><p>The @openc3/cosmos-tool-iframe microfrontend is running in "integrated" mode, since standalone-single-spa-webpack-plugin is disabled. This means that it does not work as a standalone application without changing configuration.</p><h2>How do I develop this microfrontend?</h2><p>To develop this microfrontend, try the following steps:</p><ol><li>Copy the following URL to your clipboard: <a target="_blank" rel="noopener" id="mf-url"></a></li><li>In a new browser tab, go to the your single-spa web app. This is where your "root config" is running. You do not have to run the root config locally if it is already running on a deployed environment - go to the deployed environment directly.</li><li>In the browser console, run <code>localStorage.setItem('devtools', true);</code> Refresh the page.</li><li>A yellowish rectangle should appear at the bottom right of your screen. Click on it. Find the name @openc3/cosmos-tool-iframe and click on it. If it is not present, click on Add New Module.</li><li>Paste the URL above into the input that appears. Refresh the page.</li><li>Congrats, your local code is now being used!</li></ol><p></p><p>For further information about "integrated" mode, see the following links:</p><ul><li><a target="_blank" rel="noopener" href="https://single-spa.js.org/docs/recommended-setup#local-development">Local Development Overview</a></li><li><a target="_blank" rel="noopener" href="https://github.com/joeldenning/import-map-overrides">Import Map Overrides Documentation</a></li></ul><p></p><h2>If you prefer Standalone mode</h2><p>To run this microfrontend in "standalone" mode, the standalone-single-spa-webpack-plugin must not be disabled. In some cases, this is done by running <code>npm run start:standalone</code>. Alternatively, you can add <code>--env standalone</code> to your package.json start script if you are using webpack-config-single-spa.</p>If neither of those work for you, see more details about enabling standalone mode at <a target="_blank" rel="noopener" href="https://github.com/single-spa/standalone-single-spa-webpack-plugin">Standalone Plugin Documentation</a>.<p></p><script>const mfLink = document.getElementById('mf-url');
|
2
|
+
const fullSrc = new URL('/tools/iframe//tools/iframe/js/app.js', window.location.href);
|
3
|
+
mfLink.href = fullSrc;
|
4
|
+
mfLink.textContent = fullSrc;</script></main></head><body><div id="app"></div></body></html>
|
@@ -0,0 +1,2 @@
|
|
1
|
+
(self["webpackChunk_openc3_cosmos_tool_iframe"]=self["webpackChunk_openc3_cosmos_tool_iframe"]||[]).push([[497],{1497:(e,n,t)=>{"use strict";function l(){var e="/openc3/plugins/packages/openc3-cosmos-tool-iframe/src/tools/Iframe/Iframe.vue",n="79515c85eb5bdfe674921bc3d5052a8824cc0bb3",t=new Function("return this")(),i="__coverage__",o={path:"/openc3/plugins/packages/openc3-cosmos-tool-iframe/src/tools/Iframe/Iframe.vue",statementMap:{0:{start:{line:1,column:13},end:{line:2,column:1}},1:{start:{line:1,column:39},end:{line:1,column:43}},2:{start:{line:1,column:47},end:{line:1,column:59}},3:{start:{line:1,column:60},end:{line:1,column:434}},4:{start:{line:3,column:22},end:{line:3,column:24}}},fnMap:{0:{name:"render",decl:{start:{line:1,column:22},end:{line:1,column:28}},loc:{start:{line:1,column:30},end:{line:2,column:1}},line:1}},branchMap:{0:{loc:{start:{line:1,column:131},end:{line:1,column:430}},type:"cond-expr",locations:[{start:{line:1,column:141},end:{line:1,column:421}},{start:{line:1,column:422},end:{line:1,column:430}}],line:1}},s:{0:0,1:0,2:0,3:0,4:0},f:{0:0},b:{0:[0,0]},_coverageSchema:"1a1c01bbd47fc00a2c39e90264f33305004495a9",hash:"79515c85eb5bdfe674921bc3d5052a8824cc0bb3"},r=t[i]||(t[i]={});r[e]&&r[e].hash===n||(r[e]=o);var a=r[e];return l=function(){return a},a}t.r(n),t.d(n,{default:()=>b}),l(),l().s[0]++;var i=function(){l().f[0]++;var e=(l().s[1]++,this),n=(l().s[2]++,e._self._c);return l().s[3]++,n("div",[n("top-bar",{attrs:{title:e.title}}),e._v(" "),e.url?(l().b[0][0]++,n("div",{staticStyle:{display:"flex",width:"100%",height:"100%","flex-direction":"column",overflow:"hidden"}},[n("iframe",{staticStyle:{"flex-grow":"1",border:"none",margin:"0",padding:"0",height:"calc(100vh - 118px)"},attrs:{src:e.url,title:e.title}})])):(l().b[0][1]++,e._e())],1)},o=(l().s[4]++,[]),r=function(){var e=this,n=e._self._c;return n("mounting-portal",{attrs:{"mount-to":"#openc3-menu",append:""}},[n("div",{staticClass:"v-toolbar__content"},[e._l(e.menus,(function(t,l){return n("v-menu",{key:l,ref:"topmenu",refInFor:!0,attrs:{"offset-y":""},scopedSlots:e._u([{key:"activator",fn:function({on:l,attrs:i}){return[n("v-btn",e._g(e._b({staticClass:"mx-1",attrs:{outlined:"","data-test":e.formatDT(`${e.title} ${t.label}`)}},"v-btn",i,!1),l),[n("span",{domProps:{textContent:e._s(t.label)}}),e._v(" "),n("v-icon",{attrs:{right:""}},[e._v(" mdi-menu-down ")])],1)]}}],null,!0)},[e._v(" "),n("v-list",[n("v-radio-group",{staticClass:"ma-0 pa-0",attrs:{value:t.radioGroup,"hide-details":"",dense:""}},[e._l(t.items,(function(l,i){return[l.divider?n("v-divider",{key:i}):l.subMenu?n("div",{key:i},[n("v-menu",{key:e.k,attrs:{"open-on-hover":"","offset-x":"",bottom:""},scopedSlots:e._u([{key:"activator",fn:function({on:t,attrs:o}){return[n("v-list-item",e._g(e._b({key:i,attrs:{disabled:l.disabled}},"v-list-item",o,!1),t),[l.icon?n("v-list-item-icon",[n("v-icon",{attrs:{disabled:l.disabled}},[e._v(e._s(l.icon))])],1):e._e(),e._v(" "),l.radio||l.checkbox?e._e():n("v-list-item-title",{style:"cursor: pointer;"+(l.disabled?"opacity: 0.2":"")},[e._v(e._s(l.label)+"\n ")]),e._v(" "),n("v-icon",[e._v(" mdi-chevron-right ")])],1)]}}],null,!0)},[e._v(" "),n("v-list",e._l(l.subMenu,(function(t,l){return n("v-list-item",{key:l,on:{click:function(n){return e.subMenuClick(t)}}},[t.icon?n("v-list-item-icon",[n("v-icon",[e._v(e._s(t.icon))])],1):e._e(),e._v(" "),n("v-list-item-title",[e._v(e._s(t.label))])],1)})),1)],1)],1):n("v-list-item",{key:i,attrs:{disabled:l.disabled,"data-test":e.formatDT(`${e.title} ${t.label} ${l.label}`)},on:{click:function(e){return l.command(l)}}},[l.radio?n("v-list-item-action",[n("v-radio",{attrs:{color:"secondary",label:l.label,value:l.label}})],1):e._e(),e._v(" "),l.checkbox?n("v-list-item-action",[n("v-checkbox",{attrs:{color:"secondary",label:l.label},model:{value:l.checked,callback:function(n){e.$set(l,"checked",n)},expression:"option.checked"}})],1):e._e(),e._v(" "),l.icon?n("v-list-item-icon",[n("v-icon",{attrs:{disabled:l.disabled}},[e._v(e._s(l.icon))])],1):e._e(),e._v(" "),l.radio||l.checkbox?e._e():n("v-list-item-title",{style:"cursor: pointer;"+(l.disabled?"opacity: 0.2":"")},[e._v(e._s(l.label))])],1)]}))],2)],1)],1)})),e._v(" "),n("v-spacer"),e._v(" "),n("v-toolbar-title",[e._v(e._s(e.title))]),e._v(" "),n("v-spacer")],2)])},a=[];t(1531),t(4597);const s={props:{menus:{type:Array,default:function(){return[]}},title:{type:String,default:""}},methods:{formatDT:function(e){return e.replaceAll(" ","-").toLowerCase()},subMenuClick(e){e.command(e),this.$refs.topmenu[0].isActive=!1}},mounted(){"COSMOS "===this.title.substring(0,7)?document.title=this.title.substring(7):document.title=this.title}},c=s;t(2416);var u=t(3483),d=(0,u.Z)(c,r,a,!1,null,"11569d60",null);const m=d.exports;function f(){var e="/openc3/plugins/packages/openc3-cosmos-tool-iframe/src/tools/Iframe/Iframe.vue",n="f1f6d9172e6dd72579567a75ec578aaf9b1ec606",t=new Function("return this")(),l="__coverage__",i={path:"/openc3/plugins/packages/openc3-cosmos-tool-iframe/src/tools/Iframe/Iframe.vue",statementMap:{0:{start:{line:9,column:4},end:{line:12,column:5}},1:{start:{line:15,column:4},end:{line:17,column:5}},2:{start:{line:16,column:6},end:{line:16,column:42}},3:{start:{line:18,column:4},end:{line:20,column:5}},4:{start:{line:19,column:6},end:{line:19,column:38}}},fnMap:{0:{name:"(anonymous_0)",decl:{start:{line:8,column:2},end:{line:8,column:3}},loc:{start:{line:8,column:9},end:{line:13,column:3}},line:8},1:{name:"(anonymous_1)",decl:{start:{line:14,column:2},end:{line:14,column:3}},loc:{start:{line:14,column:12},end:{line:21,column:3}},line:14}},branchMap:{0:{loc:{start:{line:15,column:4},end:{line:17,column:5}},type:"if",locations:[{start:{line:15,column:4},end:{line:17,column:5}},{start:{line:void 0,column:void 0},end:{line:void 0,column:void 0}}],line:15},1:{loc:{start:{line:15,column:8},end:{line:15,column:52}},type:"binary-expr",locations:[{start:{line:15,column:8},end:{line:15,column:25}},{start:{line:15,column:29},end:{line:15,column:52}}],line:15},2:{loc:{start:{line:18,column:4},end:{line:20,column:5}},type:"if",locations:[{start:{line:18,column:4},end:{line:20,column:5}},{start:{line:void 0,column:void 0},end:{line:void 0,column:void 0}}],line:18},3:{loc:{start:{line:18,column:8},end:{line:18,column:50}},type:"binary-expr",locations:[{start:{line:18,column:8},end:{line:18,column:25}},{start:{line:18,column:29},end:{line:18,column:50}}],line:18}},s:{0:0,1:0,2:0,3:0,4:0},f:{0:0,1:0},b:{0:[0,0],1:[0,0],2:[0,0],3:[0,0]},inputSourceMap:{version:3,sources:["Iframe.vue"],names:[],mappings:";AA+CA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA",file:"Iframe.vue",sourceRoot:"src/tools/Iframe",sourcesContent:['\x3c!--\n# Copyright 2023 OpenC3, Inc.\n# All Rights Reserved.\n#\n# This program is free software; you can modify and/or redistribute it\n# under the terms of the GNU Affero General Public License\n# as published by the Free Software Foundation; version 3 with\n# attribution addendums as found in the LICENSE.txt\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU Affero General Public License for more details.\n#\n# This file may also be used under the terms of a commercial license\n# if purchased from OpenC3, Inc.\n--\x3e\n\n<template>\n <div>\n <top-bar :title="title" />\n <div\n v-if="url"\n style="\n display: flex;\n width: 100%;\n height: 100%;\n flex-direction: column;\n overflow: hidden;\n "\n >\n <iframe\n :src="url"\n :title="title"\n style="\n flex-grow: 1;\n border: none;\n margin: 0;\n padding: 0;\n height: calc(100vh - 118px);\n "\n ></iframe>\n </div>\n </div>\n</template>\n\n<script>\nimport TopBar from \'@openc3/tool-common/src/components/TopBar\'\n\nexport default {\n components: {\n TopBar,\n },\n data() {\n return {\n title: \'COSMOS Iframe\',\n url: null,\n }\n },\n created() {\n if (this.$route.query && this.$route.query.title) {\n this.title = this.$route.query.title\n }\n if (this.$route.query && this.$route.query.url) {\n this.url = this.$route.query.url\n }\n },\n}\n<\/script>\n']},_coverageSchema:"1a1c01bbd47fc00a2c39e90264f33305004495a9",hash:"f1f6d9172e6dd72579567a75ec578aaf9b1ec606"},o=t[l]||(t[l]={});o[e]&&o[e].hash===n||(o[e]=i);var r=o[e];return f=function(){return r},r}f();const v={components:{TopBar:m},data(){return f().f[0]++,f().s[0]++,{title:"COSMOS Iframe",url:null}},created(){f().f[1]++,f().s[1]++,f().b[1][0]++,this.$route.query&&(f().b[1][1]++,this.$route.query.title)?(f().b[0][0]++,f().s[2]++,this.title=this.$route.query.title):f().b[0][1]++,f().s[3]++,f().b[3][0]++,this.$route.query&&(f().b[3][1]++,this.$route.query.url)?(f().b[2][0]++,f().s[4]++,this.url=this.$route.query.url):f().b[2][1]++}},p=v;var h=(0,u.Z)(p,i,o,!1,null,null,null);const b=h.exports},7219:(e,n,t)=>{"use strict";t.r(n),t.d(n,{default:()=>s});var l=t(9601),i=t.n(l),o=t(2609),r=t.n(o),a=r()(i());a.push([e.id,".v-list[data-v-11569d60] .v-label{margin-left:5px}.v-list-item__icon[data-v-11569d60]{margin-right:15px!important}.v-list-item__title[data-v-11569d60]{color:#fff}",""]);const s=a},2416:(e,n,t)=>{var l=t(7219);l.__esModule&&(l=l.default),"string"===typeof l&&(l=[[e.id,l,""]]),l.locals&&(e.exports=l.locals);var i=t(3514).Z;i("325f248f",l,!0,{sourceMap:!1,shadowMode:!1})},9710:(e,n,t)=>{"use strict";var l=t(5309),i=t(2177),o=t(2032),r=o("match");e.exports=function(e){var n;return l(e)&&(void 0!==(n=e[r])?!!n:"RegExp"===i(e))}},976:(e,n,t)=>{"use strict";var l=t(8724),i=t(4678),o=t(6148),r=t(7929),a=RegExp.prototype;e.exports=function(e){var n=e.flags;return void 0!==n||"flags"in a||i(e,"flags")||!o(a,e)?n:l(r,e)}},4597:(e,n,t)=>{"use strict";var l=t(5532),i=t(8724),o=t(9668),r=t(1166),a=t(688),s=t(5268),c=t(9710),u=t(599),d=t(5383),m=t(976),f=t(6889),v=t(2032),p=t(6555),h=v("replace"),b=TypeError,_=o("".indexOf),A=o("".replace),y=o("".slice),g=Math.max,C=function(e,n,t){return t>e.length?-1:""===n?t:_(e,n,t)};l({target:"String",proto:!0},{replaceAll:function(e,n){var t,l,o,v,x,k,w,I,S,M=r(this),$=0,T=0,q="";if(!s(e)){if(t=c(e),t&&(l=u(r(m(e))),!~_(l,"g")))throw new b("`.replaceAll` does not allow non-global regexes");if(o=d(e,h),o)return i(o,e,M,n);if(p&&t)return A(u(M),e,n)}v=u(M),x=u(e),k=a(n),k||(n=u(n)),w=x.length,I=g(1,w),$=C(v,x,0);while(-1!==$)S=k?u(n(x,$,v)):f(x,v,$,[],void 0,n),q+=y(v,T,$)+S,T=$+w,$=C(v,x,$+I);return T<v.length&&(q+=y(v,T)),q}})}}]);
|
2
|
+
//# sourceMappingURL=497.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"js/497.js","mappings":"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","sources":["webpack://@openc3/cosmos-tool-iframe/./src/tools/Iframe/Iframe.vue","webpack://@openc3/cosmos-tool-iframe/../openc3-tool-common/src/components/TopBar.vue","webpack://@openc3/cosmos-tool-iframe/../openc3-tool-common/src/components/TopBar.vue?c4b5","webpack://@openc3/cosmos-tool-iframe/../openc3-tool-common/src/components/TopBar.vue?a437","webpack://@openc3/cosmos-tool-iframe/src/tools/Iframe/Iframe.vue","webpack://@openc3/cosmos-tool-iframe/./src/tools/Iframe/Iframe.vue?d477","webpack://@openc3/cosmos-tool-iframe/./src/tools/Iframe/Iframe.vue?cbdf","webpack://@openc3/cosmos-tool-iframe/../openc3-tool-common/src/components/TopBar.vue?7def","webpack://@openc3/cosmos-tool-iframe/../openc3-tool-common/src/components/TopBar.vue?e77f","webpack://@openc3/cosmos-tool-iframe/../../node_modules/core-js/internals/is-regexp.js","webpack://@openc3/cosmos-tool-iframe/../../node_modules/core-js/internals/regexp-get-flags.js","webpack://@openc3/cosmos-tool-iframe/../../node_modules/core-js/modules/es.string.replace-all.js"],"sourcesContent":["var render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',[_c('top-bar',{attrs:{\"title\":_vm.title}}),_vm._v(\" \"),(_vm.url)?_c('div',{staticStyle:{\"display\":\"flex\",\"width\":\"100%\",\"height\":\"100%\",\"flex-direction\":\"column\",\"overflow\":\"hidden\"}},[_c('iframe',{staticStyle:{\"flex-grow\":\"1\",\"border\":\"none\",\"margin\":\"0\",\"padding\":\"0\",\"height\":\"calc(100vh - 118px)\"},attrs:{\"src\":_vm.url,\"title\":_vm.title}})]):_vm._e()],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function render(){var _vm=this,_c=_vm._self._c;return _c('mounting-portal',{attrs:{\"mount-to\":\"#openc3-menu\",\"append\":\"\"}},[_c('div',{staticClass:\"v-toolbar__content\"},[_vm._l((_vm.menus),function(menu,i){return _c('v-menu',{key:i,ref:\"topmenu\",refInFor:true,attrs:{\"offset-y\":\"\"},scopedSlots:_vm._u([{key:\"activator\",fn:function({ on, attrs }){return [_c('v-btn',_vm._g(_vm._b({staticClass:\"mx-1\",attrs:{\"outlined\":\"\",\"data-test\":_vm.formatDT(`${_vm.title} ${menu.label}`)}},'v-btn',attrs,false),on),[_c('span',{domProps:{\"textContent\":_vm._s(menu.label)}}),_vm._v(\" \"),_c('v-icon',{attrs:{\"right\":\"\"}},[_vm._v(\" mdi-menu-down \")])],1)]}}],null,true)},[_vm._v(\" \"),_c('v-list',[_c('v-radio-group',{staticClass:\"ma-0 pa-0\",attrs:{\"value\":menu.radioGroup,\"hide-details\":\"\",\"dense\":\"\"}},[_vm._l((menu.items),function(option,j){return [(option.divider)?_c('v-divider',{key:j}):(option.subMenu)?_c('div',{key:j},[_c('v-menu',{key:_vm.k,attrs:{\"open-on-hover\":\"\",\"offset-x\":\"\",\"bottom\":\"\"},scopedSlots:_vm._u([{key:\"activator\",fn:function({ on, attrs }){return [_c('v-list-item',_vm._g(_vm._b({key:j,attrs:{\"disabled\":option.disabled}},'v-list-item',attrs,false),on),[(option.icon)?_c('v-list-item-icon',[_c('v-icon',{attrs:{\"disabled\":option.disabled}},[_vm._v(_vm._s(option.icon))])],1):_vm._e(),_vm._v(\" \"),(!option.radio && !option.checkbox)?_c('v-list-item-title',{style:('cursor: pointer;' +\n (option.disabled ? 'opacity: 0.2' : ''))},[_vm._v(_vm._s(option.label)+\"\\n \")]):_vm._e(),_vm._v(\" \"),_c('v-icon',[_vm._v(\" mdi-chevron-right \")])],1)]}}],null,true)},[_vm._v(\" \"),_c('v-list',_vm._l((option.subMenu),function(submenu,k){return _c('v-list-item',{key:k,on:{\"click\":function($event){return _vm.subMenuClick(submenu)}}},[(submenu.icon)?_c('v-list-item-icon',[_c('v-icon',[_vm._v(_vm._s(submenu.icon))])],1):_vm._e(),_vm._v(\" \"),_c('v-list-item-title',[_vm._v(_vm._s(submenu.label))])],1)}),1)],1)],1):_c('v-list-item',{key:j,attrs:{\"disabled\":option.disabled,\"data-test\":_vm.formatDT(`${_vm.title} ${menu.label} ${option.label}`)},on:{\"click\":function($event){return option.command(option)}}},[(option.radio)?_c('v-list-item-action',[_c('v-radio',{attrs:{\"color\":\"secondary\",\"label\":option.label,\"value\":option.label}})],1):_vm._e(),_vm._v(\" \"),(option.checkbox)?_c('v-list-item-action',[_c('v-checkbox',{attrs:{\"color\":\"secondary\",\"label\":option.label},model:{value:(option.checked),callback:function ($$v) {_vm.$set(option, \"checked\", $$v)},expression:\"option.checked\"}})],1):_vm._e(),_vm._v(\" \"),(option.icon)?_c('v-list-item-icon',[_c('v-icon',{attrs:{\"disabled\":option.disabled}},[_vm._v(_vm._s(option.icon))])],1):_vm._e(),_vm._v(\" \"),(!option.radio && !option.checkbox)?_c('v-list-item-title',{style:('cursor: pointer;' + (option.disabled ? 'opacity: 0.2' : ''))},[_vm._v(_vm._s(option.label))]):_vm._e()],1)]})],2)],1)],1)}),_vm._v(\" \"),_c('v-spacer'),_vm._v(\" \"),_c('v-toolbar-title',[_vm._v(_vm._s(_vm.title))]),_vm._v(\" \"),_c('v-spacer')],2)])\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/@vue/cli-plugin-babel/node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./TopBar.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/@vue/cli-plugin-babel/node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./TopBar.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./TopBar.vue?vue&type=template&id=11569d60&scoped=true\"\nimport script from \"./TopBar.vue?vue&type=script&lang=js\"\nexport * from \"./TopBar.vue?vue&type=script&lang=js\"\nimport style0 from \"./TopBar.vue?vue&type=style&index=0&id=11569d60&prod&scoped=true&lang=css\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"11569d60\",\n null\n \n)\n\nexport default component.exports","<!--\n# Copyright 2023 OpenC3, Inc.\n# All Rights Reserved.\n#\n# This program is free software; you can modify and/or redistribute it\n# under the terms of the GNU Affero General Public License\n# as published by the Free Software Foundation; version 3 with\n# attribution addendums as found in the LICENSE.txt\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU Affero General Public License for more details.\n#\n# This file may also be used under the terms of a commercial license\n# if purchased from OpenC3, Inc.\n-->\n\n<template>\n <div>\n <top-bar :title=\"title\" />\n <div\n v-if=\"url\"\n style=\"\n display: flex;\n width: 100%;\n height: 100%;\n flex-direction: column;\n overflow: hidden;\n \"\n >\n <iframe\n :src=\"url\"\n :title=\"title\"\n style=\"\n flex-grow: 1;\n border: none;\n margin: 0;\n padding: 0;\n height: calc(100vh - 118px);\n \"\n ></iframe>\n </div>\n </div>\n</template>\n\n<script>\nimport TopBar from '@openc3/tool-common/src/components/TopBar'\n\nexport default {\n components: {\n TopBar,\n },\n data() {\n return {\n title: 'COSMOS Iframe',\n url: null,\n }\n },\n created() {\n if (this.$route.query && this.$route.query.title) {\n this.title = this.$route.query.title\n }\n if (this.$route.query && this.$route.query.url) {\n this.url = this.$route.query.url\n }\n },\n}\n</script>\n","import mod from \"-!../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../node_modules/@vue/cli-plugin-babel/node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Iframe.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../node_modules/@vue/cli-plugin-babel/node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Iframe.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Iframe.vue?vue&type=template&id=01fd64ae\"\nimport script from \"./Iframe.vue?vue&type=script&lang=js\"\nexport * from \"./Iframe.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/@vue/vue-loader-v15/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","// Imports\nimport ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/noSourceMaps.js\";\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, `.v-list[data-v-11569d60] .v-label{margin-left:5px}.v-list-item__icon[data-v-11569d60]{margin-right:15px!important}.v-list-item__title[data-v-11569d60]{color:#fff}`, \"\"]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!../../../../node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!../../../../node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!../../../../node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[3]!../../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./TopBar.vue?vue&type=style&index=0&id=11569d60&prod&scoped=true&lang=css\");\nif(content.__esModule) content = content.default;\nif(typeof content === 'string') content = [[module.id, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = require(\"!../../../../node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"325f248f\", content, true, {\"sourceMap\":false,\"shadowMode\":false});","'use strict';\nvar isObject = require('../internals/is-object');\nvar classof = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar MATCH = wellKnownSymbol('match');\n\n// `IsRegExp` abstract operation\n// https://tc39.es/ecma262/#sec-isregexp\nmodule.exports = function (it) {\n var isRegExp;\n return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) === 'RegExp');\n};\n","'use strict';\nvar call = require('../internals/function-call');\nvar hasOwn = require('../internals/has-own-property');\nvar isPrototypeOf = require('../internals/object-is-prototype-of');\nvar regExpFlags = require('../internals/regexp-flags');\n\nvar RegExpPrototype = RegExp.prototype;\n\nmodule.exports = function (R) {\n var flags = R.flags;\n return flags === undefined && !('flags' in RegExpPrototype) && !hasOwn(R, 'flags') && isPrototypeOf(RegExpPrototype, R)\n ? call(regExpFlags, R) : flags;\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar call = require('../internals/function-call');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar isCallable = require('../internals/is-callable');\nvar isNullOrUndefined = require('../internals/is-null-or-undefined');\nvar isRegExp = require('../internals/is-regexp');\nvar toString = require('../internals/to-string');\nvar getMethod = require('../internals/get-method');\nvar getRegExpFlags = require('../internals/regexp-get-flags');\nvar getSubstitution = require('../internals/get-substitution');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar REPLACE = wellKnownSymbol('replace');\nvar $TypeError = TypeError;\nvar indexOf = uncurryThis(''.indexOf);\nvar replace = uncurryThis(''.replace);\nvar stringSlice = uncurryThis(''.slice);\nvar max = Math.max;\n\nvar stringIndexOf = function (string, searchValue, fromIndex) {\n if (fromIndex > string.length) return -1;\n if (searchValue === '') return fromIndex;\n return indexOf(string, searchValue, fromIndex);\n};\n\n// `String.prototype.replaceAll` method\n// https://tc39.es/ecma262/#sec-string.prototype.replaceall\n$({ target: 'String', proto: true }, {\n replaceAll: function replaceAll(searchValue, replaceValue) {\n var O = requireObjectCoercible(this);\n var IS_REG_EXP, flags, replacer, string, searchString, functionalReplace, searchLength, advanceBy, replacement;\n var position = 0;\n var endOfLastMatch = 0;\n var result = '';\n if (!isNullOrUndefined(searchValue)) {\n IS_REG_EXP = isRegExp(searchValue);\n if (IS_REG_EXP) {\n flags = toString(requireObjectCoercible(getRegExpFlags(searchValue)));\n if (!~indexOf(flags, 'g')) throw new $TypeError('`.replaceAll` does not allow non-global regexes');\n }\n replacer = getMethod(searchValue, REPLACE);\n if (replacer) {\n return call(replacer, searchValue, O, replaceValue);\n } else if (IS_PURE && IS_REG_EXP) {\n return replace(toString(O), searchValue, replaceValue);\n }\n }\n string = toString(O);\n searchString = toString(searchValue);\n functionalReplace = isCallable(replaceValue);\n if (!functionalReplace) replaceValue = toString(replaceValue);\n searchLength = searchString.length;\n advanceBy = max(1, searchLength);\n position = stringIndexOf(string, searchString, 0);\n while (position !== -1) {\n replacement = functionalReplace\n ? toString(replaceValue(searchString, position, string))\n : getSubstitution(searchString, string, position, [], undefined, replaceValue);\n result += stringSlice(string, endOfLastMatch, position) + replacement;\n endOfLastMatch = position + searchLength;\n position = stringIndexOf(string, searchString, position + advanceBy);\n }\n if (endOfLastMatch < string.length) {\n result += stringSlice(string, endOfLastMatch);\n }\n return result;\n }\n});\n"],"names":["cov_1yhbvsicpg","actualCoverage","s","render","f","_vm","this","_c","_self","attrs","title","_v","url","b","staticStyle","_e","staticRenderFns","staticClass","_l","menus","menu","i","key","ref","refInFor","scopedSlots","_u","fn","on","_g","_b","formatDT","label","domProps","_s","radioGroup","items","option","j","divider","subMenu","k","disabled","icon","radio","checkbox","style","submenu","$event","subMenuClick","command","model","value","checked","callback","$$v","$set","expression","props","type","Array","default","String","methods","string","replaceAll","toLowerCase","$refs","topmenu","isActive","mounted","substring","document","component","components","TopBar","data","created","$route","query","___CSS_LOADER_EXPORT___","push","module","id","content","__esModule","locals","exports","add","isObject","classof","wellKnownSymbol","MATCH","it","isRegExp","undefined","call","hasOwn","isPrototypeOf","regExpFlags","RegExpPrototype","RegExp","prototype","R","flags","$","uncurryThis","requireObjectCoercible","isCallable","isNullOrUndefined","toString","getMethod","getRegExpFlags","getSubstitution","IS_PURE","REPLACE","$TypeError","TypeError","indexOf","replace","stringSlice","slice","max","Math","stringIndexOf","searchValue","fromIndex","length","target","proto","replaceValue","IS_REG_EXP","replacer","searchString","functionalReplace","searchLength","advanceBy","replacement","O","position","endOfLastMatch","result"],"sourceRoot":""}
|
@@ -0,0 +1,2 @@
|
|
1
|
+
"use strict";(self["webpackChunk_openc3_cosmos_tool_iframe"]=self["webpackChunk_openc3_cosmos_tool_iframe"]||[]).push([[540],{2540:(e,o,t)=>{t.r(o),t.d(o,{default:()=>c});var r=function(){var e=this,o=e._self._c;return o("v-card",[o("v-card-title",[e._v("404 Not Found Error")]),e._v(" "),o("v-card-text",[e._v("The requested URL "),o("code",[e._v(e._s(e.$route.fullPath))]),e._v(" was not\n routable.")])],1)},l=[],s=t(3483),_={},u=(0,s.Z)(_,r,l,!1,null,null,null);const c=u.exports}}]);
|
2
|
+
//# sourceMappingURL=540.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"js/540.js","mappings":"2KAAA,IAAIA,EAAS,WAAkB,IAAIC,EAAIC,KAAKC,EAAGF,EAAIG,MAAMD,GAAG,OAAOA,EAAG,SAAS,CAACA,EAAG,eAAe,CAACF,EAAII,GAAG,yBAAyBJ,EAAII,GAAG,KAAKF,EAAG,cAAc,CAACF,EAAII,GAAG,sBAAsBF,EAAG,OAAO,CAACF,EAAII,GAAGJ,EAAIK,GAAGL,EAAIM,OAAOC,aAAaP,EAAII,GAAG,8BAA8B,EACpR,EACII,EAAkB,G,UCDlBC,EAAS,CAAC,EAKVC,GAAY,OACdD,EACAV,EACAS,GACA,EACA,KACA,KACA,MAIF,QAAeE,EAAiB,O","sources":["webpack://@openc3/cosmos-tool-iframe/../openc3-tool-common/src/components/NotFound.vue","webpack://@openc3/cosmos-tool-iframe/../openc3-tool-common/src/components/NotFound.vue?4849"],"sourcesContent":["var render = function render(){var _vm=this,_c=_vm._self._c;return _c('v-card',[_c('v-card-title',[_vm._v(\"404 Not Found Error\")]),_vm._v(\" \"),_c('v-card-text',[_vm._v(\"The requested URL \"),_c('code',[_vm._v(_vm._s(_vm.$route.fullPath))]),_vm._v(\" was not\\n routable.\")])],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./NotFound.vue?vue&type=template&id=163f57b0\"\nvar script = {}\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/@vue/vue-loader-v15/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"],"names":["render","_vm","this","_c","_self","_v","_s","$route","fullPath","staticRenderFns","script","component"],"sourceRoot":""}
|