platypush/platypush/backend/http/webapp/dist/static/js/2820-legacy.869be689.js.map

1 line
6.0 KiB
Plaintext
Raw Normal View History

2022-10-07 02:23:12 +02:00
{"version":3,"file":"static/js/2820-legacy.869be689.js","mappings":"+OACE,QAAgC,GAAzB,cAAY,Y,eAMrB,GACEA,KAAM,UACNC,WAAY,CAACC,MAAAA,EAAA,I,UCJf,MAAMC,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASC,KAEpE,O,wECNOC,MAAM,qB,GACJA,MAAM,oB,GAINA,MAAM,kB,6FALb,QAQM,MARN,EAQM,EAPJ,OAEM,MAFN,EAEM,EADJ,QAA0C,GAAjC,aAAW,+BAAE,EAAAC,SAASC,EAAX,QAGtB,OAEM,MAFN,EAEM,EADJ,QAAyC,GAA3B,cAAa,EAAAC,YAAU,2B,gDCLlCH,MAAM,O,GACJA,MAAM,sC,GAEAA,MAAM,c,0CAJrB,QAUM,OAVDA,OAAK,SAAC,SAAQ,eAAyB,EAAAI,kBAA5C,EACE,OAQM,MARN,EAQM,EAPJ,OAMM,MANN,EAMM,EALJ,OAIO,QAJA,SAAM,yCAAU,EAAAC,MAAK,cAAgB,EAAAC,WAA/B,GAAyC,eAAtD,EACE,OAEQ,QAFR,EAEQ,WADN,OAAwE,SAAjEC,KAAK,SAASC,YAAY,kB,qDAA2B,EAAAF,WAAU,C,IAAtE,iBAA4D,EAAAA,iBAFhE,SAHN,E,CAcF,OACEX,KAAM,SACNc,MAAO,CAAC,eAERC,KAJa,WAKX,MAAO,CACLJ,WAAY,GAEf,G,UChBH,MAAMR,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAAS,GAAQ,CAAC,YAAY,qBAEzF,Q,mBFQA,GACEH,KAAM,QACNC,WAAY,CAACe,YAAA,IAAaC,OAAAA,GAC1BC,OAAQ,CAACC,EAAA,GACTC,MAAO,CACLZ,WAAY,CACVI,KAAMS,OACNC,UAAU,IAIdC,QAAS,CACDjB,SADC,SACQkB,GAAS,gKAChB,EAAKC,QAAL,UAAgB,EAAKjB,WAArB,aAA4C,CAACgB,QAASA,IADtC,4CAExB,IGxBJ,MAAM,GAA2B,OAAgB,EAAQ,CAAC,CAAC,SAASpB,GAAQ,CAAC,YAAY,qBAEzF,O","sources":["webpack://platypush/./src/components/panels/Rtorrent/Index.vue","webpack://platypush/./src/components/panels/Rtorrent/Index.vue?5c1f","webpack://platypush/./src/components/panels/Torrent/Panel.vue","webpack://platypush/./src/components/panels/Torrent/Header.vue","webpack://platypush/./src/components/panels/Torrent/Header.vue?da39","webpack://platypush/./src/components/panels/Torrent/Panel.vue?046c"],"sourcesContent":["<template>\n <Panel plugin-name=\"rtorrent\" />\n</template>\n\n<script>\nimport Panel from \"@/components/panels/Torrent/Panel\";\n\nexport default {\n name: \"Torrent\",\n components: {Panel}\n}\n</script>\n","import { render } from \"./Index.vue?vue&type=template&id=4938278b\"\nimport script from \"./Index.vue?vue&type=script&lang=js\"\nexport * from \"./Index.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"/home/blacklight/git_tree/platypush/platypush/backend/http/webapp/node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","<template>\n <div class=\"torrent-container\">\n <div class=\"header-container\">\n <Header @torrent-add=\"download($event)\" />\n </div>\n\n <div class=\"view-container\">\n <TorrentView :plugin-name=\"pluginName\" />\n </div>\n </div>\n</template>\n\n<script>\nimport Header from \"@/components/panels/Torrent/Header\";\nimport TorrentView from \"@/components/panels/Torrent/View\";\nimport Utils from \"@/Utils\";\n\nexport default {\n name: \"Panel\",\n components: {TorrentView, Header},\n mixins: [Utils],\n props: {\n pluginName: {\n type: String,\n required: true,\n },\n },\n\n methods: {\n async download(torrent) {\n await this.request(`${this.pluginName}.download`, {torrent: torrent})\n }\n },\n}\n</script>\n\n<style lang=\"scss\" scoped>\n@import \"vars\";\n\n.torrent-container {\n width: 100%;\n height: calc(100% - #{$torrent-header-height});\n\n .view-container {\n height: 100%;\n overflow: auto;\n padding-top: .2em;\n }\n}\n</style>\n","<template>\n <div class=\"header\" :class=\"{'with-filter': filterVisible}\">\n <div class=\"row\">\n <div class=\"col-s-12 col-m-9 col-l-7 left side\">\n <form @submit.prevent=\"$emit('torrent-add', torrentURL)\">\n <label class=\"search-box\">\n <input type=\"search\" placeholder=\"Add torrent URL\" v-model=\"torrentURL\">\n </label>\n </form>\n </div>\n </div>\n </div>\n</template>\n\n<script>\nexport default {\n name: \"Header\",\n emits: ['torrent-add'],\n\n data() {\n return {\n torrentURL: '',\n }\n },\n}\n</script>\n\n<style lang=\"scss\" scoped>\n@import \"vars\";\n\n.header {\n width: 100%;\n height: $torrent-header-height;\n position: relative;\n background: $menu-panel-bg;\n padding: .5em;\n box-shadow: $border-shadow-bottom;\n\n .row {\n display