@abi-software/flatmapvuer 0.3.14 → 0.4.0-beta-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.
- package/LICENSE +201 -201
- package/README.md +105 -105
- package/babel.config.js +14 -14
- package/dist/flatmapvuer.common.js +1749 -972
- package/dist/flatmapvuer.common.js.map +1 -1
- package/dist/flatmapvuer.css +1 -1
- package/dist/flatmapvuer.umd.js +1749 -972
- package/dist/flatmapvuer.umd.js.map +1 -1
- package/dist/flatmapvuer.umd.min.js +1 -1
- package/dist/flatmapvuer.umd.min.js.map +1 -1
- package/package-lock.json +14210 -14210
- package/package.json +71 -71
- package/public/index.html +17 -17
- package/src/App.vue +163 -162
- package/src/assets/_variables.scss +43 -43
- package/src/assets/styles.scss +7 -7
- package/src/components/EventBus.js +2 -2
- package/src/components/FlatmapVuer.vue +1605 -1636
- package/src/components/MultiFlatmapVuer.vue +509 -511
- package/src/components/PubmedViewer.vue +149 -149
- package/src/components/SelectionsGroup.vue +225 -0
- package/src/components/Tooltip.vue +594 -594
- package/src/components/index.js +9 -9
- package/src/components/legends/DynamicLegends.vue +112 -0
- package/src/components/legends/{Legends.vue → SvgLegends.vue} +66 -66
- package/src/icons/fonts/mapicon-species.eot +0 -0
- package/src/icons/fonts/mapicon-species.svg +14 -14
- package/src/icons/fonts/mapicon-species.ttf +0 -0
- package/src/icons/fonts/mapicon-species.woff +0 -0
- package/src/icons/mapicon-species-style.css +42 -42
- package/src/legends/legend.svg +25 -25
- package/src/main.js +8 -8
- package/vue.config.js +31 -31
- package/src/nerve-map.js +0 -99
package/dist/flatmapvuer.umd.js
CHANGED
|
@@ -96,13 +96,6 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
96
96
|
/************************************************************************/
|
|
97
97
|
/******/ ({
|
|
98
98
|
|
|
99
|
-
/***/ "0242":
|
|
100
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
101
|
-
|
|
102
|
-
// extracted by mini-css-extract-plugin
|
|
103
|
-
|
|
104
|
-
/***/ }),
|
|
105
|
-
|
|
106
99
|
/***/ "06f1":
|
|
107
100
|
/***/ (function(module, exports, __webpack_require__) {
|
|
108
101
|
|
|
@@ -110,13 +103,6 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
110
103
|
|
|
111
104
|
/***/ }),
|
|
112
105
|
|
|
113
|
-
/***/ "0cda":
|
|
114
|
-
/***/ (function(module, exports) {
|
|
115
|
-
|
|
116
|
-
module.exports = require("core-js/modules/es.string.split.js");
|
|
117
|
-
|
|
118
|
-
/***/ }),
|
|
119
|
-
|
|
120
106
|
/***/ "0f6c":
|
|
121
107
|
/***/ (function(module, exports) {
|
|
122
108
|
|
|
@@ -204,12 +190,12 @@ module.exports =
|
|
|
204
190
|
/******/
|
|
205
191
|
/******/
|
|
206
192
|
/******/ // Load entry module and return exports
|
|
207
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
193
|
+
/******/ return __webpack_require__(__webpack_require__.s = 139);
|
|
208
194
|
/******/ })
|
|
209
195
|
/************************************************************************/
|
|
210
196
|
/******/ ({
|
|
211
197
|
|
|
212
|
-
/***/
|
|
198
|
+
/***/ 139:
|
|
213
199
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
214
200
|
|
|
215
201
|
"use strict";
|
|
@@ -232,10 +218,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
232
218
|
type: String,
|
|
233
219
|
default: 'start'
|
|
234
220
|
},
|
|
235
|
-
align:
|
|
236
|
-
type: String,
|
|
237
|
-
default: 'top'
|
|
238
|
-
}
|
|
221
|
+
align: String
|
|
239
222
|
},
|
|
240
223
|
|
|
241
224
|
computed: {
|
|
@@ -253,7 +236,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
253
236
|
|
|
254
237
|
render: function render(h) {
|
|
255
238
|
return h(this.tag, {
|
|
256
|
-
class: ['el-row', this.justify !== 'start' ? 'is-justify-' + this.justify : '', this.align
|
|
239
|
+
class: ['el-row', this.justify !== 'start' ? 'is-justify-' + this.justify : '', this.align ? 'is-align-' + this.align : '', { 'el-row--flex': this.type === 'flex' }],
|
|
257
240
|
style: this.style
|
|
258
241
|
}, this.$slots.default);
|
|
259
242
|
}
|
|
@@ -294,17 +277,6 @@ exports.default = function (ref) {
|
|
|
294
277
|
|
|
295
278
|
;
|
|
296
279
|
|
|
297
|
-
/***/ }),
|
|
298
|
-
|
|
299
|
-
/***/ "13aa":
|
|
300
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
301
|
-
|
|
302
|
-
"use strict";
|
|
303
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Tooltip_vue_vue_type_style_index_0_id_6d6dee76_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("c4c7");
|
|
304
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Tooltip_vue_vue_type_style_index_0_id_6d6dee76_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Tooltip_vue_vue_type_style_index_0_id_6d6dee76_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
305
|
-
/* unused harmony reexport * */
|
|
306
|
-
|
|
307
|
-
|
|
308
280
|
/***/ }),
|
|
309
281
|
|
|
310
282
|
/***/ "13e3":
|
|
@@ -401,12 +373,12 @@ module.exports =
|
|
|
401
373
|
/******/
|
|
402
374
|
/******/
|
|
403
375
|
/******/ // Load entry module and return exports
|
|
404
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
376
|
+
/******/ return __webpack_require__(__webpack_require__.s = 133);
|
|
405
377
|
/******/ })
|
|
406
378
|
/************************************************************************/
|
|
407
379
|
/******/ ({
|
|
408
380
|
|
|
409
|
-
/***/
|
|
381
|
+
/***/ 133:
|
|
410
382
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
411
383
|
|
|
412
384
|
"use strict";
|
|
@@ -416,7 +388,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
416
388
|
var resize_event_ = __webpack_require__(16);
|
|
417
389
|
|
|
418
390
|
// EXTERNAL MODULE: external "element-ui/lib/utils/scrollbar-width"
|
|
419
|
-
var scrollbar_width_ = __webpack_require__(
|
|
391
|
+
var scrollbar_width_ = __webpack_require__(39);
|
|
420
392
|
var scrollbar_width_default = /*#__PURE__*/__webpack_require__.n(scrollbar_width_);
|
|
421
393
|
|
|
422
394
|
// EXTERNAL MODULE: external "element-ui/lib/utils/util"
|
|
@@ -731,7 +703,7 @@ module.exports = __webpack_require__("8122");
|
|
|
731
703
|
|
|
732
704
|
/***/ }),
|
|
733
705
|
|
|
734
|
-
/***/
|
|
706
|
+
/***/ 39:
|
|
735
707
|
/***/ (function(module, exports) {
|
|
736
708
|
|
|
737
709
|
module.exports = __webpack_require__("e62d");
|
|
@@ -761,17 +733,6 @@ module.exports = require("core-js/modules/web.dom-collections.iterator.js");
|
|
|
761
733
|
|
|
762
734
|
module.exports = require("core-js/modules/es.array.filter.js");
|
|
763
735
|
|
|
764
|
-
/***/ }),
|
|
765
|
-
|
|
766
|
-
/***/ "1b11":
|
|
767
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
768
|
-
|
|
769
|
-
"use strict";
|
|
770
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_FlatmapVuer_vue_vue_type_style_index_0_id_20b4e460_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("5ca3");
|
|
771
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_FlatmapVuer_vue_vue_type_style_index_0_id_20b4e460_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_FlatmapVuer_vue_vue_type_style_index_0_id_20b4e460_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
772
|
-
/* unused harmony reexport * */
|
|
773
|
-
|
|
774
|
-
|
|
775
736
|
/***/ }),
|
|
776
737
|
|
|
777
738
|
/***/ "1c32":
|
|
@@ -788,6 +749,31 @@ module.exports = require("core-js/modules/es.string.search.js");
|
|
|
788
749
|
|
|
789
750
|
/***/ }),
|
|
790
751
|
|
|
752
|
+
/***/ "21d1":
|
|
753
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
754
|
+
|
|
755
|
+
// extracted by mini-css-extract-plugin
|
|
756
|
+
|
|
757
|
+
/***/ }),
|
|
758
|
+
|
|
759
|
+
/***/ "233b":
|
|
760
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
761
|
+
|
|
762
|
+
"use strict";
|
|
763
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PubmedViewer_vue_vue_type_style_index_0_id_58832c92_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("7a9a");
|
|
764
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PubmedViewer_vue_vue_type_style_index_0_id_58832c92_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PubmedViewer_vue_vue_type_style_index_0_id_58832c92_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
765
|
+
/* unused harmony reexport * */
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
/***/ }),
|
|
769
|
+
|
|
770
|
+
/***/ "2439":
|
|
771
|
+
/***/ (function(module, exports) {
|
|
772
|
+
|
|
773
|
+
module.exports = require("core-js/modules/es.array.push.js");
|
|
774
|
+
|
|
775
|
+
/***/ }),
|
|
776
|
+
|
|
791
777
|
/***/ "2a5e":
|
|
792
778
|
/***/ (function(module, exports, __webpack_require__) {
|
|
793
779
|
|
|
@@ -921,6 +907,17 @@ module.exports = require("core-js/modules/es.symbol.iterator.js");
|
|
|
921
907
|
|
|
922
908
|
module.exports = require("core-js/modules/es.regexp.to-string.js");
|
|
923
909
|
|
|
910
|
+
/***/ }),
|
|
911
|
+
|
|
912
|
+
/***/ "3c15":
|
|
913
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
914
|
+
|
|
915
|
+
"use strict";
|
|
916
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_FlatmapVuer_vue_vue_type_style_index_0_id_66e8be2a_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("5ac6");
|
|
917
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_FlatmapVuer_vue_vue_type_style_index_0_id_66e8be2a_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_FlatmapVuer_vue_vue_type_style_index_0_id_66e8be2a_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
918
|
+
/* unused harmony reexport * */
|
|
919
|
+
|
|
920
|
+
|
|
924
921
|
/***/ }),
|
|
925
922
|
|
|
926
923
|
/***/ "3d2d":
|
|
@@ -1010,7 +1007,7 @@ module.exports =
|
|
|
1010
1007
|
/******/
|
|
1011
1008
|
/******/
|
|
1012
1009
|
/******/ // Load entry module and return exports
|
|
1013
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
1010
|
+
/******/ return __webpack_require__(__webpack_require__.s = 116);
|
|
1014
1011
|
/******/ })
|
|
1015
1012
|
/************************************************************************/
|
|
1016
1013
|
/******/ ({
|
|
@@ -1117,7 +1114,7 @@ function normalizeComponent (
|
|
|
1117
1114
|
|
|
1118
1115
|
/***/ }),
|
|
1119
1116
|
|
|
1120
|
-
/***/
|
|
1117
|
+
/***/ 116:
|
|
1121
1118
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1122
1119
|
|
|
1123
1120
|
"use strict";
|
|
@@ -1216,6 +1213,13 @@ main.install = function (Vue) {
|
|
|
1216
1213
|
|
|
1217
1214
|
/***/ }),
|
|
1218
1215
|
|
|
1216
|
+
/***/ "400b":
|
|
1217
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1218
|
+
|
|
1219
|
+
// extracted by mini-css-extract-plugin
|
|
1220
|
+
|
|
1221
|
+
/***/ }),
|
|
1222
|
+
|
|
1219
1223
|
/***/ "4010":
|
|
1220
1224
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1221
1225
|
|
|
@@ -1229,6 +1233,8 @@ var _resizeObserverPolyfill = __webpack_require__("a1cc");
|
|
|
1229
1233
|
|
|
1230
1234
|
var _resizeObserverPolyfill2 = _interopRequireDefault(_resizeObserverPolyfill);
|
|
1231
1235
|
|
|
1236
|
+
var _throttleDebounce = __webpack_require__("831f");
|
|
1237
|
+
|
|
1232
1238
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
1233
1239
|
|
|
1234
1240
|
var isServer = typeof window === 'undefined';
|
|
@@ -1263,7 +1269,7 @@ var addResizeListener = exports.addResizeListener = function addResizeListener(e
|
|
|
1263
1269
|
if (isServer) return;
|
|
1264
1270
|
if (!element.__resizeListeners__) {
|
|
1265
1271
|
element.__resizeListeners__ = [];
|
|
1266
|
-
element.__ro__ = new _resizeObserverPolyfill2.default(resizeHandler);
|
|
1272
|
+
element.__ro__ = new _resizeObserverPolyfill2.default((0, _throttleDebounce.debounce)(16, resizeHandler));
|
|
1267
1273
|
element.__ro__.observe(element);
|
|
1268
1274
|
}
|
|
1269
1275
|
element.__resizeListeners__.push(fn);
|
|
@@ -1697,6 +1703,13 @@ module.exports = require("core-js/modules/es.array.iterator.js");
|
|
|
1697
1703
|
|
|
1698
1704
|
/***/ }),
|
|
1699
1705
|
|
|
1706
|
+
/***/ "4d90":
|
|
1707
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1708
|
+
|
|
1709
|
+
// extracted by mini-css-extract-plugin
|
|
1710
|
+
|
|
1711
|
+
/***/ }),
|
|
1712
|
+
|
|
1700
1713
|
/***/ "4e4b":
|
|
1701
1714
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1702
1715
|
|
|
@@ -1784,7 +1797,7 @@ module.exports =
|
|
|
1784
1797
|
/******/
|
|
1785
1798
|
/******/
|
|
1786
1799
|
/******/ // Load entry module and return exports
|
|
1787
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
1800
|
+
/******/ return __webpack_require__(__webpack_require__.s = 62);
|
|
1788
1801
|
/******/ })
|
|
1789
1802
|
/************************************************************************/
|
|
1790
1803
|
/******/ ({
|
|
@@ -1919,7 +1932,7 @@ module.exports = __webpack_require__("4010");
|
|
|
1919
1932
|
|
|
1920
1933
|
/***/ }),
|
|
1921
1934
|
|
|
1922
|
-
/***/
|
|
1935
|
+
/***/ 19:
|
|
1923
1936
|
/***/ (function(module, exports) {
|
|
1924
1937
|
|
|
1925
1938
|
module.exports = __webpack_require__("7435");
|
|
@@ -1947,14 +1960,14 @@ module.exports = __webpack_require__("8122");
|
|
|
1947
1960
|
|
|
1948
1961
|
/***/ }),
|
|
1949
1962
|
|
|
1950
|
-
/***/
|
|
1963
|
+
/***/ 32:
|
|
1951
1964
|
/***/ (function(module, exports) {
|
|
1952
1965
|
|
|
1953
1966
|
module.exports = __webpack_require__("2a5e");
|
|
1954
1967
|
|
|
1955
1968
|
/***/ }),
|
|
1956
1969
|
|
|
1957
|
-
/***/
|
|
1970
|
+
/***/ 34:
|
|
1958
1971
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1959
1972
|
|
|
1960
1973
|
"use strict";
|
|
@@ -2205,7 +2218,7 @@ component.options.__file = "packages/select/src/option.vue"
|
|
|
2205
2218
|
|
|
2206
2219
|
/***/ }),
|
|
2207
2220
|
|
|
2208
|
-
/***/
|
|
2221
|
+
/***/ 38:
|
|
2209
2222
|
/***/ (function(module, exports) {
|
|
2210
2223
|
|
|
2211
2224
|
module.exports = __webpack_require__("8bbc");
|
|
@@ -2233,7 +2246,7 @@ module.exports = __webpack_require__("6b7c");
|
|
|
2233
2246
|
|
|
2234
2247
|
/***/ }),
|
|
2235
2248
|
|
|
2236
|
-
/***/
|
|
2249
|
+
/***/ 62:
|
|
2237
2250
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
2238
2251
|
|
|
2239
2252
|
"use strict";
|
|
@@ -2399,7 +2412,7 @@ var render = function() {
|
|
|
2399
2412
|
return null
|
|
2400
2413
|
}
|
|
2401
2414
|
$event.preventDefault()
|
|
2402
|
-
_vm.
|
|
2415
|
+
_vm.handleNavigate("next")
|
|
2403
2416
|
},
|
|
2404
2417
|
function($event) {
|
|
2405
2418
|
if (
|
|
@@ -2412,7 +2425,7 @@ var render = function() {
|
|
|
2412
2425
|
return null
|
|
2413
2426
|
}
|
|
2414
2427
|
$event.preventDefault()
|
|
2415
|
-
_vm.
|
|
2428
|
+
_vm.handleNavigate("prev")
|
|
2416
2429
|
},
|
|
2417
2430
|
function($event) {
|
|
2418
2431
|
if (
|
|
@@ -2505,11 +2518,15 @@ var render = function() {
|
|
|
2505
2518
|
"validate-event": false,
|
|
2506
2519
|
tabindex: _vm.multiple && _vm.filterable ? "-1" : null
|
|
2507
2520
|
},
|
|
2508
|
-
on: {
|
|
2521
|
+
on: {
|
|
2522
|
+
focus: _vm.handleFocus,
|
|
2523
|
+
blur: _vm.handleBlur,
|
|
2524
|
+
input: _vm.debouncedOnInputChange,
|
|
2525
|
+
compositionstart: _vm.handleComposition,
|
|
2526
|
+
compositionupdate: _vm.handleComposition,
|
|
2527
|
+
compositionend: _vm.handleComposition
|
|
2528
|
+
},
|
|
2509
2529
|
nativeOn: {
|
|
2510
|
-
keyup: function($event) {
|
|
2511
|
-
return _vm.debouncedOnInputChange($event)
|
|
2512
|
-
},
|
|
2513
2530
|
keydown: [
|
|
2514
2531
|
function($event) {
|
|
2515
2532
|
if (
|
|
@@ -2523,7 +2540,7 @@ var render = function() {
|
|
|
2523
2540
|
}
|
|
2524
2541
|
$event.stopPropagation()
|
|
2525
2542
|
$event.preventDefault()
|
|
2526
|
-
_vm.
|
|
2543
|
+
_vm.handleNavigate("next")
|
|
2527
2544
|
},
|
|
2528
2545
|
function($event) {
|
|
2529
2546
|
if (
|
|
@@ -2537,7 +2554,7 @@ var render = function() {
|
|
|
2537
2554
|
}
|
|
2538
2555
|
$event.stopPropagation()
|
|
2539
2556
|
$event.preventDefault()
|
|
2540
|
-
_vm.
|
|
2557
|
+
_vm.handleNavigate("prev")
|
|
2541
2558
|
},
|
|
2542
2559
|
function($event) {
|
|
2543
2560
|
if (
|
|
@@ -2573,9 +2590,6 @@ var render = function() {
|
|
|
2573
2590
|
_vm.visible = false
|
|
2574
2591
|
}
|
|
2575
2592
|
],
|
|
2576
|
-
paste: function($event) {
|
|
2577
|
-
return _vm.debouncedOnInputChange($event)
|
|
2578
|
-
},
|
|
2579
2593
|
mouseenter: function($event) {
|
|
2580
2594
|
_vm.inputHovering = true
|
|
2581
2595
|
},
|
|
@@ -2861,10 +2875,10 @@ if (false) { var api; }
|
|
|
2861
2875
|
component.options.__file = "packages/select/src/select-dropdown.vue"
|
|
2862
2876
|
/* harmony default export */ var select_dropdown = (component.exports);
|
|
2863
2877
|
// EXTERNAL MODULE: ./packages/select/src/option.vue + 4 modules
|
|
2864
|
-
var src_option = __webpack_require__(
|
|
2878
|
+
var src_option = __webpack_require__(34);
|
|
2865
2879
|
|
|
2866
2880
|
// EXTERNAL MODULE: external "element-ui/lib/tag"
|
|
2867
|
-
var tag_ = __webpack_require__(
|
|
2881
|
+
var tag_ = __webpack_require__(38);
|
|
2868
2882
|
var tag_default = /*#__PURE__*/__webpack_require__.n(tag_);
|
|
2869
2883
|
|
|
2870
2884
|
// EXTERNAL MODULE: external "element-ui/lib/scrollbar"
|
|
@@ -2872,7 +2886,7 @@ var scrollbar_ = __webpack_require__(15);
|
|
|
2872
2886
|
var scrollbar_default = /*#__PURE__*/__webpack_require__.n(scrollbar_);
|
|
2873
2887
|
|
|
2874
2888
|
// EXTERNAL MODULE: external "throttle-debounce/debounce"
|
|
2875
|
-
var debounce_ = __webpack_require__(
|
|
2889
|
+
var debounce_ = __webpack_require__(19);
|
|
2876
2890
|
var debounce_default = /*#__PURE__*/__webpack_require__.n(debounce_);
|
|
2877
2891
|
|
|
2878
2892
|
// EXTERNAL MODULE: external "element-ui/lib/utils/clickoutside"
|
|
@@ -2883,7 +2897,7 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
|
|
|
2883
2897
|
var resize_event_ = __webpack_require__(16);
|
|
2884
2898
|
|
|
2885
2899
|
// EXTERNAL MODULE: external "element-ui/lib/utils/scroll-into-view"
|
|
2886
|
-
var scroll_into_view_ = __webpack_require__(
|
|
2900
|
+
var scroll_into_view_ = __webpack_require__(32);
|
|
2887
2901
|
var scroll_into_view_default = /*#__PURE__*/__webpack_require__.n(scroll_into_view_);
|
|
2888
2902
|
|
|
2889
2903
|
// EXTERNAL MODULE: external "element-ui/lib/utils/util"
|
|
@@ -3092,6 +3106,8 @@ var shared_ = __webpack_require__(21);
|
|
|
3092
3106
|
//
|
|
3093
3107
|
//
|
|
3094
3108
|
//
|
|
3109
|
+
//
|
|
3110
|
+
//
|
|
3095
3111
|
|
|
3096
3112
|
|
|
3097
3113
|
|
|
@@ -3389,6 +3405,11 @@ var shared_ = __webpack_require__(21);
|
|
|
3389
3405
|
},
|
|
3390
3406
|
|
|
3391
3407
|
methods: {
|
|
3408
|
+
handleNavigate: function handleNavigate(direction) {
|
|
3409
|
+
if (this.isOnComposition) return;
|
|
3410
|
+
|
|
3411
|
+
this.navigateOptions(direction);
|
|
3412
|
+
},
|
|
3392
3413
|
handleComposition: function handleComposition(event) {
|
|
3393
3414
|
var _this5 = this;
|
|
3394
3415
|
|
|
@@ -3474,7 +3495,7 @@ var shared_ = __webpack_require__(21);
|
|
|
3474
3495
|
}
|
|
3475
3496
|
}
|
|
3476
3497
|
if (option) return option;
|
|
3477
|
-
var label = !isObject && !isNull && !isUndefined ? value : '';
|
|
3498
|
+
var label = !isObject && !isNull && !isUndefined ? String(value) : '';
|
|
3478
3499
|
var newOption = {
|
|
3479
3500
|
value: value,
|
|
3480
3501
|
currentLabel: label
|
|
@@ -3514,10 +3535,10 @@ var shared_ = __webpack_require__(21);
|
|
|
3514
3535
|
handleFocus: function handleFocus(event) {
|
|
3515
3536
|
if (!this.softFocus) {
|
|
3516
3537
|
if (this.automaticDropdown || this.filterable) {
|
|
3517
|
-
this.visible
|
|
3518
|
-
if (this.filterable) {
|
|
3538
|
+
if (this.filterable && !this.visible) {
|
|
3519
3539
|
this.menuVisibleOnFocus = true;
|
|
3520
3540
|
}
|
|
3541
|
+
this.visible = true;
|
|
3521
3542
|
}
|
|
3522
3543
|
this.$emit('focus', event);
|
|
3523
3544
|
} else {
|
|
@@ -3591,8 +3612,9 @@ var shared_ = __webpack_require__(21);
|
|
|
3591
3612
|
return item.tagName === 'INPUT';
|
|
3592
3613
|
})[0];
|
|
3593
3614
|
var tags = _this10.$refs.tags;
|
|
3615
|
+
var tagsHeight = tags ? Math.round(tags.getBoundingClientRect().height) : 0;
|
|
3594
3616
|
var sizeInMap = _this10.initialInputHeight || 40;
|
|
3595
|
-
input.style.height = _this10.selected.length === 0 ? sizeInMap + 'px' : Math.max(tags ?
|
|
3617
|
+
input.style.height = _this10.selected.length === 0 ? sizeInMap + 'px' : Math.max(tags ? tagsHeight + (tagsHeight > sizeInMap ? 6 : 0) : 0, sizeInMap) + 'px';
|
|
3596
3618
|
if (_this10.visible && _this10.emptyText !== false) {
|
|
3597
3619
|
_this10.broadcast('ElSelectDropdown', 'updatePopper');
|
|
3598
3620
|
}
|
|
@@ -4113,13 +4135,6 @@ exports.PopupManager = _popupManager2.default;
|
|
|
4113
4135
|
|
|
4114
4136
|
/***/ }),
|
|
4115
4137
|
|
|
4116
|
-
/***/ "58e9":
|
|
4117
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
4118
|
-
|
|
4119
|
-
// extracted by mini-css-extract-plugin
|
|
4120
|
-
|
|
4121
|
-
/***/ }),
|
|
4122
|
-
|
|
4123
4138
|
/***/ "5924":
|
|
4124
4139
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4125
4140
|
|
|
@@ -4231,7 +4246,7 @@ function addClass(el, cls) {
|
|
|
4231
4246
|
}
|
|
4232
4247
|
}
|
|
4233
4248
|
if (!el.classList) {
|
|
4234
|
-
el.
|
|
4249
|
+
el.setAttribute('class', curClass);
|
|
4235
4250
|
}
|
|
4236
4251
|
};
|
|
4237
4252
|
|
|
@@ -4252,7 +4267,7 @@ function removeClass(el, cls) {
|
|
|
4252
4267
|
}
|
|
4253
4268
|
}
|
|
4254
4269
|
if (!el.classList) {
|
|
4255
|
-
el.
|
|
4270
|
+
el.setAttribute('class', trim(curClass));
|
|
4256
4271
|
}
|
|
4257
4272
|
};
|
|
4258
4273
|
|
|
@@ -4316,10 +4331,10 @@ function setStyle(element, styleName, value) {
|
|
|
4316
4331
|
var isScroll = exports.isScroll = function isScroll(el, vertical) {
|
|
4317
4332
|
if (isServer) return;
|
|
4318
4333
|
|
|
4319
|
-
var determinedDirection = vertical !== null
|
|
4334
|
+
var determinedDirection = vertical !== null && vertical !== undefined;
|
|
4320
4335
|
var overflow = determinedDirection ? vertical ? getStyle(el, 'overflow-y') : getStyle(el, 'overflow-x') : getStyle(el, 'overflow');
|
|
4321
4336
|
|
|
4322
|
-
return overflow.match(/(scroll|auto)/);
|
|
4337
|
+
return overflow.match(/(scroll|auto|overlay)/);
|
|
4323
4338
|
};
|
|
4324
4339
|
|
|
4325
4340
|
var getScrollContainer = exports.getScrollContainer = function getScrollContainer(el, vertical) {
|
|
@@ -4361,7 +4376,14 @@ var isInContainer = exports.isInContainer = function isInContainer(el, container
|
|
|
4361
4376
|
|
|
4362
4377
|
/***/ }),
|
|
4363
4378
|
|
|
4364
|
-
/***/ "
|
|
4379
|
+
/***/ "5a3b":
|
|
4380
|
+
/***/ (function(module, exports) {
|
|
4381
|
+
|
|
4382
|
+
module.exports = require("core-js/modules/es.regexp.test.js");
|
|
4383
|
+
|
|
4384
|
+
/***/ }),
|
|
4385
|
+
|
|
4386
|
+
/***/ "5ac6":
|
|
4365
4387
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4366
4388
|
|
|
4367
4389
|
// extracted by mini-css-extract-plugin
|
|
@@ -5733,7 +5755,7 @@ module.exports =
|
|
|
5733
5755
|
/******/
|
|
5734
5756
|
/******/
|
|
5735
5757
|
/******/ // Load entry module and return exports
|
|
5736
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
5758
|
+
/******/ return __webpack_require__(__webpack_require__.s = 89);
|
|
5737
5759
|
/******/ })
|
|
5738
5760
|
/************************************************************************/
|
|
5739
5761
|
/******/ ({
|
|
@@ -5847,7 +5869,7 @@ module.exports = __webpack_require__("d010");
|
|
|
5847
5869
|
|
|
5848
5870
|
/***/ }),
|
|
5849
5871
|
|
|
5850
|
-
/***/
|
|
5872
|
+
/***/ 89:
|
|
5851
5873
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
5852
5874
|
|
|
5853
5875
|
"use strict";
|
|
@@ -5926,7 +5948,9 @@ var keyCode = Object.freeze({
|
|
|
5926
5948
|
return (this.elFormItem || {}).elFormItemSize;
|
|
5927
5949
|
},
|
|
5928
5950
|
_elTag: function _elTag() {
|
|
5929
|
-
|
|
5951
|
+
var tag = (this.$vnode.data || {}).tag;
|
|
5952
|
+
if (!tag || tag === 'component') tag = 'div';
|
|
5953
|
+
return tag;
|
|
5930
5954
|
},
|
|
5931
5955
|
radioGroupSize: function radioGroupSize() {
|
|
5932
5956
|
return this.size || this._elFormItemSize || (this.$ELEMENT || {}).size;
|
|
@@ -6127,7 +6151,7 @@ module.exports =
|
|
|
6127
6151
|
/******/
|
|
6128
6152
|
/******/
|
|
6129
6153
|
/******/ // Load entry module and return exports
|
|
6130
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
6154
|
+
/******/ return __webpack_require__(__webpack_require__.s = 78);
|
|
6131
6155
|
/******/ })
|
|
6132
6156
|
/************************************************************************/
|
|
6133
6157
|
/******/ ({
|
|
@@ -6262,7 +6286,7 @@ module.exports = __webpack_require__("8bbf");
|
|
|
6262
6286
|
|
|
6263
6287
|
/***/ }),
|
|
6264
6288
|
|
|
6265
|
-
/***/
|
|
6289
|
+
/***/ 78:
|
|
6266
6290
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
6267
6291
|
|
|
6268
6292
|
"use strict";
|
|
@@ -6686,6 +6710,20 @@ exports.default = {
|
|
|
6686
6710
|
|
|
6687
6711
|
/***/ }),
|
|
6688
6712
|
|
|
6713
|
+
/***/ "712c":
|
|
6714
|
+
/***/ (function(module, exports) {
|
|
6715
|
+
|
|
6716
|
+
module.exports = require("core-js/modules/web.url-search-params.js");
|
|
6717
|
+
|
|
6718
|
+
/***/ }),
|
|
6719
|
+
|
|
6720
|
+
/***/ "722b":
|
|
6721
|
+
/***/ (function(module, exports) {
|
|
6722
|
+
|
|
6723
|
+
module.exports = require("core-js/modules/es.array.unscopables.flat.js");
|
|
6724
|
+
|
|
6725
|
+
/***/ }),
|
|
6726
|
+
|
|
6689
6727
|
/***/ "7435":
|
|
6690
6728
|
/***/ (function(module, exports) {
|
|
6691
6729
|
|
|
@@ -6700,6 +6738,13 @@ module.exports = require("throttle-debounce/debounce");
|
|
|
6700
6738
|
|
|
6701
6739
|
/***/ }),
|
|
6702
6740
|
|
|
6741
|
+
/***/ "7a9a":
|
|
6742
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
6743
|
+
|
|
6744
|
+
// extracted by mini-css-extract-plugin
|
|
6745
|
+
|
|
6746
|
+
/***/ }),
|
|
6747
|
+
|
|
6703
6748
|
/***/ "7b31":
|
|
6704
6749
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6705
6750
|
|
|
@@ -6787,7 +6832,7 @@ module.exports =
|
|
|
6787
6832
|
/******/
|
|
6788
6833
|
/******/
|
|
6789
6834
|
/******/ // Load entry module and return exports
|
|
6790
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
6835
|
+
/******/ return __webpack_require__(__webpack_require__.s = 117);
|
|
6791
6836
|
/******/ })
|
|
6792
6837
|
/************************************************************************/
|
|
6793
6838
|
/******/ ({
|
|
@@ -6894,7 +6939,7 @@ function normalizeComponent (
|
|
|
6894
6939
|
|
|
6895
6940
|
/***/ }),
|
|
6896
6941
|
|
|
6897
|
-
/***/
|
|
6942
|
+
/***/ 117:
|
|
6898
6943
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
6899
6944
|
|
|
6900
6945
|
"use strict";
|
|
@@ -7097,7 +7142,7 @@ module.exports =
|
|
|
7097
7142
|
/******/
|
|
7098
7143
|
/******/
|
|
7099
7144
|
/******/ // Load entry module and return exports
|
|
7100
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
7145
|
+
/******/ return __webpack_require__(__webpack_require__.s = 93);
|
|
7101
7146
|
/******/ })
|
|
7102
7147
|
/************************************************************************/
|
|
7103
7148
|
/******/ ({
|
|
@@ -7211,7 +7256,7 @@ module.exports = __webpack_require__("d010");
|
|
|
7211
7256
|
|
|
7212
7257
|
/***/ }),
|
|
7213
7258
|
|
|
7214
|
-
/***/
|
|
7259
|
+
/***/ 93:
|
|
7215
7260
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
7216
7261
|
|
|
7217
7262
|
"use strict";
|
|
@@ -7601,6 +7646,31 @@ function objToArray(obj) {
|
|
|
7601
7646
|
return isEmpty(obj) ? [] : [obj];
|
|
7602
7647
|
}
|
|
7603
7648
|
|
|
7649
|
+
/***/ }),
|
|
7650
|
+
|
|
7651
|
+
/***/ "82cc":
|
|
7652
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
7653
|
+
|
|
7654
|
+
// extracted by mini-css-extract-plugin
|
|
7655
|
+
|
|
7656
|
+
/***/ }),
|
|
7657
|
+
|
|
7658
|
+
/***/ "831f":
|
|
7659
|
+
/***/ (function(module, exports) {
|
|
7660
|
+
|
|
7661
|
+
module.exports = require("throttle-debounce");
|
|
7662
|
+
|
|
7663
|
+
/***/ }),
|
|
7664
|
+
|
|
7665
|
+
/***/ "83af":
|
|
7666
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
7667
|
+
|
|
7668
|
+
"use strict";
|
|
7669
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_SvgLegends_vue_vue_type_style_index_0_id_3d3218c8_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("82cc");
|
|
7670
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_SvgLegends_vue_vue_type_style_index_0_id_3d3218c8_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_SvgLegends_vue_vue_type_style_index_0_id_3d3218c8_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
7671
|
+
/* unused harmony reexport * */
|
|
7672
|
+
|
|
7673
|
+
|
|
7604
7674
|
/***/ }),
|
|
7605
7675
|
|
|
7606
7676
|
/***/ "8535":
|
|
@@ -7704,7 +7774,7 @@ module.exports =
|
|
|
7704
7774
|
/******/
|
|
7705
7775
|
/******/
|
|
7706
7776
|
/******/ // Load entry module and return exports
|
|
7707
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
7777
|
+
/******/ return __webpack_require__(__webpack_require__.s = 73);
|
|
7708
7778
|
/******/ })
|
|
7709
7779
|
/************************************************************************/
|
|
7710
7780
|
/******/ ({
|
|
@@ -7825,14 +7895,21 @@ module.exports = __webpack_require__("5924");
|
|
|
7825
7895
|
|
|
7826
7896
|
/***/ }),
|
|
7827
7897
|
|
|
7828
|
-
/***/
|
|
7898
|
+
/***/ 42:
|
|
7829
7899
|
/***/ (function(module, exports) {
|
|
7830
7900
|
|
|
7831
7901
|
module.exports = __webpack_require__("c56a");
|
|
7832
7902
|
|
|
7833
7903
|
/***/ }),
|
|
7834
7904
|
|
|
7835
|
-
/***/
|
|
7905
|
+
/***/ 7:
|
|
7906
|
+
/***/ (function(module, exports) {
|
|
7907
|
+
|
|
7908
|
+
module.exports = __webpack_require__("8bbf");
|
|
7909
|
+
|
|
7910
|
+
/***/ }),
|
|
7911
|
+
|
|
7912
|
+
/***/ 73:
|
|
7836
7913
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
7837
7914
|
|
|
7838
7915
|
"use strict";
|
|
@@ -7980,7 +8057,7 @@ var dom_ = __webpack_require__(2);
|
|
|
7980
8057
|
var popup_ = __webpack_require__(13);
|
|
7981
8058
|
|
|
7982
8059
|
// EXTERNAL MODULE: external "element-ui/lib/utils/after-leave"
|
|
7983
|
-
var after_leave_ = __webpack_require__(
|
|
8060
|
+
var after_leave_ = __webpack_require__(42);
|
|
7984
8061
|
var after_leave_default = /*#__PURE__*/__webpack_require__.n(after_leave_);
|
|
7985
8062
|
|
|
7986
8063
|
// CONCATENATED MODULE: ./packages/loading/src/directive.js
|
|
@@ -8044,7 +8121,7 @@ loadingDirective.install = function (Vue) {
|
|
|
8044
8121
|
el.mask.style[property] = el.maskStyle[property];
|
|
8045
8122
|
});
|
|
8046
8123
|
|
|
8047
|
-
if (el.originalPosition !== 'absolute' && el.originalPosition !== 'fixed') {
|
|
8124
|
+
if (el.originalPosition !== 'absolute' && el.originalPosition !== 'fixed' && el.originalPosition !== 'sticky') {
|
|
8048
8125
|
Object(dom_["addClass"])(parent, 'el-loading-parent--relative');
|
|
8049
8126
|
}
|
|
8050
8127
|
if (binding.modifiers.fullscreen && binding.modifiers.lock) {
|
|
@@ -8202,7 +8279,7 @@ var src_Loading = function Loading() {
|
|
|
8202
8279
|
});
|
|
8203
8280
|
|
|
8204
8281
|
src_addStyle(options, parent, instance);
|
|
8205
|
-
if (instance.originalPosition !== 'absolute' && instance.originalPosition !== 'fixed') {
|
|
8282
|
+
if (instance.originalPosition !== 'absolute' && instance.originalPosition !== 'fixed' && instance.originalPosition !== 'sticky') {
|
|
8206
8283
|
Object(dom_["addClass"])(parent, 'el-loading-parent--relative');
|
|
8207
8284
|
}
|
|
8208
8285
|
if (options.fullscreen && options.lock) {
|
|
@@ -8235,13 +8312,6 @@ var src_Loading = function Loading() {
|
|
|
8235
8312
|
|
|
8236
8313
|
/***/ }),
|
|
8237
8314
|
|
|
8238
|
-
/***/ 7:
|
|
8239
|
-
/***/ (function(module, exports) {
|
|
8240
|
-
|
|
8241
|
-
module.exports = __webpack_require__("8bbf");
|
|
8242
|
-
|
|
8243
|
-
/***/ }),
|
|
8244
|
-
|
|
8245
8315
|
/***/ 9:
|
|
8246
8316
|
/***/ (function(module, exports) {
|
|
8247
8317
|
|
|
@@ -8340,7 +8410,7 @@ module.exports =
|
|
|
8340
8410
|
/******/
|
|
8341
8411
|
/******/
|
|
8342
8412
|
/******/ // Load entry module and return exports
|
|
8343
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
8413
|
+
/******/ return __webpack_require__(__webpack_require__.s = 132);
|
|
8344
8414
|
/******/ })
|
|
8345
8415
|
/************************************************************************/
|
|
8346
8416
|
/******/ ({
|
|
@@ -8447,7 +8517,7 @@ function normalizeComponent (
|
|
|
8447
8517
|
|
|
8448
8518
|
/***/ }),
|
|
8449
8519
|
|
|
8450
|
-
/***/
|
|
8520
|
+
/***/ 132:
|
|
8451
8521
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
8452
8522
|
|
|
8453
8523
|
"use strict";
|
|
@@ -8569,13 +8639,6 @@ module.exports = require("vue");
|
|
|
8569
8639
|
|
|
8570
8640
|
/***/ }),
|
|
8571
8641
|
|
|
8572
|
-
/***/ "940c":
|
|
8573
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
8574
|
-
|
|
8575
|
-
// extracted by mini-css-extract-plugin
|
|
8576
|
-
|
|
8577
|
-
/***/ }),
|
|
8578
|
-
|
|
8579
8642
|
/***/ "97d3":
|
|
8580
8643
|
/***/ (function(module, exports) {
|
|
8581
8644
|
|
|
@@ -8665,17 +8728,6 @@ var RE_NARGS = /(%|)\{([0-9a-zA-Z_]+)\}/g;
|
|
|
8665
8728
|
* https://github.com/Matt-Esch/string-template/index.js
|
|
8666
8729
|
*/
|
|
8667
8730
|
|
|
8668
|
-
/***/ }),
|
|
8669
|
-
|
|
8670
|
-
/***/ "9e82":
|
|
8671
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
8672
|
-
|
|
8673
|
-
"use strict";
|
|
8674
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Legends_vue_vue_type_style_index_0_id_514dd6be_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("0242");
|
|
8675
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Legends_vue_vue_type_style_index_0_id_514dd6be_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Legends_vue_vue_type_style_index_0_id_514dd6be_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
8676
|
-
/* unused harmony reexport * */
|
|
8677
|
-
|
|
8678
|
-
|
|
8679
8731
|
/***/ }),
|
|
8680
8732
|
|
|
8681
8733
|
/***/ "a1cc":
|
|
@@ -8772,7 +8824,7 @@ module.exports =
|
|
|
8772
8824
|
/******/
|
|
8773
8825
|
/******/
|
|
8774
8826
|
/******/ // Load entry module and return exports
|
|
8775
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
8827
|
+
/******/ return __webpack_require__(__webpack_require__.s = 103);
|
|
8776
8828
|
/******/ })
|
|
8777
8829
|
/************************************************************************/
|
|
8778
8830
|
/******/ ({
|
|
@@ -8879,7 +8931,7 @@ function normalizeComponent (
|
|
|
8879
8931
|
|
|
8880
8932
|
/***/ }),
|
|
8881
8933
|
|
|
8882
|
-
/***/
|
|
8934
|
+
/***/ 103:
|
|
8883
8935
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
8884
8936
|
|
|
8885
8937
|
"use strict";
|
|
@@ -9021,6 +9073,24 @@ var isDefined = exports.isDefined = function isDefined(val) {
|
|
|
9021
9073
|
|
|
9022
9074
|
/***/ }),
|
|
9023
9075
|
|
|
9076
|
+
/***/ "a79a":
|
|
9077
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9078
|
+
|
|
9079
|
+
"use strict";
|
|
9080
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_SelectionsGroup_vue_vue_type_style_index_0_id_f6ac6e34_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("400b");
|
|
9081
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_SelectionsGroup_vue_vue_type_style_index_0_id_f6ac6e34_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_SelectionsGroup_vue_vue_type_style_index_0_id_f6ac6e34_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
9082
|
+
/* unused harmony reexport * */
|
|
9083
|
+
|
|
9084
|
+
|
|
9085
|
+
/***/ }),
|
|
9086
|
+
|
|
9087
|
+
/***/ "a9ee":
|
|
9088
|
+
/***/ (function(module, exports) {
|
|
9089
|
+
|
|
9090
|
+
module.exports = require("core-js/modules/es.json.stringify.js");
|
|
9091
|
+
|
|
9092
|
+
/***/ }),
|
|
9093
|
+
|
|
9024
9094
|
/***/ "aaa5":
|
|
9025
9095
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9026
9096
|
|
|
@@ -9040,17 +9110,6 @@ var isDefined = exports.isDefined = function isDefined(val) {
|
|
|
9040
9110
|
|
|
9041
9111
|
module.exports = require("css-element-queries/src/ResizeSensor");
|
|
9042
9112
|
|
|
9043
|
-
/***/ }),
|
|
9044
|
-
|
|
9045
|
-
/***/ "b191":
|
|
9046
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9047
|
-
|
|
9048
|
-
"use strict";
|
|
9049
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PubmedViewer_vue_vue_type_style_index_0_id_58832c92_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("940c");
|
|
9050
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PubmedViewer_vue_vue_type_style_index_0_id_58832c92_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_PubmedViewer_vue_vue_type_style_index_0_id_58832c92_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
9051
|
-
/* unused harmony reexport * */
|
|
9052
|
-
|
|
9053
|
-
|
|
9054
9113
|
/***/ }),
|
|
9055
9114
|
|
|
9056
9115
|
/***/ "b2d6":
|
|
@@ -9177,6 +9236,9 @@ exports.default = {
|
|
|
9177
9236
|
popconfirm: {
|
|
9178
9237
|
confirmButtonText: 'Yes',
|
|
9179
9238
|
cancelButtonText: 'No'
|
|
9239
|
+
},
|
|
9240
|
+
empty: {
|
|
9241
|
+
description: 'No Data'
|
|
9180
9242
|
}
|
|
9181
9243
|
}
|
|
9182
9244
|
};
|
|
@@ -9190,10 +9252,14 @@ exports.default = {
|
|
|
9190
9252
|
|
|
9191
9253
|
/***/ }),
|
|
9192
9254
|
|
|
9193
|
-
/***/ "
|
|
9194
|
-
/***/ (function(module,
|
|
9255
|
+
/***/ "b64b":
|
|
9256
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9257
|
+
|
|
9258
|
+
"use strict";
|
|
9259
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Tooltip_vue_vue_type_style_index_0_id_6d6dee76_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("21d1");
|
|
9260
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Tooltip_vue_vue_type_style_index_0_id_6d6dee76_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_Tooltip_vue_vue_type_style_index_0_id_6d6dee76_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
9261
|
+
/* unused harmony reexport * */
|
|
9195
9262
|
|
|
9196
|
-
module.exports = require("core-js/modules/web.url.js");
|
|
9197
9263
|
|
|
9198
9264
|
/***/ }),
|
|
9199
9265
|
|
|
@@ -9202,17 +9268,6 @@ module.exports = require("core-js/modules/web.url.js");
|
|
|
9202
9268
|
|
|
9203
9269
|
// extracted by mini-css-extract-plugin
|
|
9204
9270
|
|
|
9205
|
-
/***/ }),
|
|
9206
|
-
|
|
9207
|
-
/***/ "c033":
|
|
9208
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9209
|
-
|
|
9210
|
-
"use strict";
|
|
9211
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_MultiFlatmapVuer_vue_vue_type_style_index_0_id_6b4bad1c_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("58e9");
|
|
9212
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_MultiFlatmapVuer_vue_vue_type_style_index_0_id_6b4bad1c_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_8_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_MultiFlatmapVuer_vue_vue_type_style_index_0_id_6b4bad1c_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
9213
|
-
/* unused harmony reexport * */
|
|
9214
|
-
|
|
9215
|
-
|
|
9216
9271
|
/***/ }),
|
|
9217
9272
|
|
|
9218
9273
|
/***/ "c2cc":
|
|
@@ -9302,12 +9357,12 @@ module.exports =
|
|
|
9302
9357
|
/******/
|
|
9303
9358
|
/******/
|
|
9304
9359
|
/******/ // Load entry module and return exports
|
|
9305
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
9360
|
+
/******/ return __webpack_require__(__webpack_require__.s = 140);
|
|
9306
9361
|
/******/ })
|
|
9307
9362
|
/************************************************************************/
|
|
9308
9363
|
/******/ ({
|
|
9309
9364
|
|
|
9310
|
-
/***/
|
|
9365
|
+
/***/ 140:
|
|
9311
9366
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9312
9367
|
|
|
9313
9368
|
"use strict";
|
|
@@ -9397,13 +9452,6 @@ col.install = function (Vue) {
|
|
|
9397
9452
|
|
|
9398
9453
|
/***/ }),
|
|
9399
9454
|
|
|
9400
|
-
/***/ "c4c7":
|
|
9401
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
9402
|
-
|
|
9403
|
-
// extracted by mini-css-extract-plugin
|
|
9404
|
-
|
|
9405
|
-
/***/ }),
|
|
9406
|
-
|
|
9407
9455
|
/***/ "c56a":
|
|
9408
9456
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9409
9457
|
|
|
@@ -9533,7 +9581,7 @@ module.exports =
|
|
|
9533
9581
|
/******/
|
|
9534
9582
|
/******/
|
|
9535
9583
|
/******/ // Load entry module and return exports
|
|
9536
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
9584
|
+
/******/ return __webpack_require__(__webpack_require__.s = 119);
|
|
9537
9585
|
/******/ })
|
|
9538
9586
|
/************************************************************************/
|
|
9539
9587
|
/******/ ({
|
|
@@ -9640,7 +9688,7 @@ function normalizeComponent (
|
|
|
9640
9688
|
|
|
9641
9689
|
/***/ }),
|
|
9642
9690
|
|
|
9643
|
-
/***/
|
|
9691
|
+
/***/ 119:
|
|
9644
9692
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9645
9693
|
|
|
9646
9694
|
"use strict";
|
|
@@ -9819,6 +9867,13 @@ module.exports = require("core-js/modules/es.function.name.js");
|
|
|
9819
9867
|
|
|
9820
9868
|
/***/ }),
|
|
9821
9869
|
|
|
9870
|
+
/***/ "dc50":
|
|
9871
|
+
/***/ (function(module, exports) {
|
|
9872
|
+
|
|
9873
|
+
module.exports = require("core-js/modules/es.error.cause.js");
|
|
9874
|
+
|
|
9875
|
+
/***/ }),
|
|
9876
|
+
|
|
9822
9877
|
/***/ "dcdc":
|
|
9823
9878
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9824
9879
|
|
|
@@ -9906,7 +9961,7 @@ module.exports =
|
|
|
9906
9961
|
/******/
|
|
9907
9962
|
/******/
|
|
9908
9963
|
/******/ // Load entry module and return exports
|
|
9909
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
9964
|
+
/******/ return __webpack_require__(__webpack_require__.s = 91);
|
|
9910
9965
|
/******/ })
|
|
9911
9966
|
/************************************************************************/
|
|
9912
9967
|
/******/ ({
|
|
@@ -10020,7 +10075,7 @@ module.exports = __webpack_require__("d010");
|
|
|
10020
10075
|
|
|
10021
10076
|
/***/ }),
|
|
10022
10077
|
|
|
10023
|
-
/***/
|
|
10078
|
+
/***/ 91:
|
|
10024
10079
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
10025
10080
|
|
|
10026
10081
|
"use strict";
|
|
@@ -10591,7 +10646,7 @@ module.exports =
|
|
|
10591
10646
|
/******/
|
|
10592
10647
|
/******/
|
|
10593
10648
|
/******/ // Load entry module and return exports
|
|
10594
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
10649
|
+
/******/ return __webpack_require__(__webpack_require__.s = 54);
|
|
10595
10650
|
/******/ })
|
|
10596
10651
|
/************************************************************************/
|
|
10597
10652
|
/******/ ({
|
|
@@ -10705,7 +10760,7 @@ module.exports = __webpack_require__("8122");
|
|
|
10705
10760
|
|
|
10706
10761
|
/***/ }),
|
|
10707
10762
|
|
|
10708
|
-
/***/
|
|
10763
|
+
/***/ 34:
|
|
10709
10764
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
10710
10765
|
|
|
10711
10766
|
"use strict";
|
|
@@ -10963,12 +11018,12 @@ module.exports = __webpack_require__("d010");
|
|
|
10963
11018
|
|
|
10964
11019
|
/***/ }),
|
|
10965
11020
|
|
|
10966
|
-
/***/
|
|
11021
|
+
/***/ 54:
|
|
10967
11022
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
10968
11023
|
|
|
10969
11024
|
"use strict";
|
|
10970
11025
|
__webpack_require__.r(__webpack_exports__);
|
|
10971
|
-
/* harmony import */ var _select_src_option__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
11026
|
+
/* harmony import */ var _select_src_option__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(34);
|
|
10972
11027
|
|
|
10973
11028
|
|
|
10974
11029
|
/* istanbul ignore next */
|
|
@@ -10982,6 +11037,17 @@ _select_src_option__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"].install = fun
|
|
|
10982
11037
|
|
|
10983
11038
|
/******/ });
|
|
10984
11039
|
|
|
11040
|
+
/***/ }),
|
|
11041
|
+
|
|
11042
|
+
/***/ "e8bf":
|
|
11043
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
11044
|
+
|
|
11045
|
+
"use strict";
|
|
11046
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_DynamicLegends_vue_vue_type_style_index_0_id_7ea6eb51_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("f765");
|
|
11047
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_DynamicLegends_vue_vue_type_style_index_0_id_7ea6eb51_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_DynamicLegends_vue_vue_type_style_index_0_id_7ea6eb51_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
11048
|
+
/* unused harmony reexport * */
|
|
11049
|
+
|
|
11050
|
+
|
|
10985
11051
|
/***/ }),
|
|
10986
11052
|
|
|
10987
11053
|
/***/ "e974":
|
|
@@ -11205,6 +11271,17 @@ module.exports = require("core-js/modules/es.array.slice.js");
|
|
|
11205
11271
|
|
|
11206
11272
|
module.exports = require("core-js/modules/es.object.keys.js");
|
|
11207
11273
|
|
|
11274
|
+
/***/ }),
|
|
11275
|
+
|
|
11276
|
+
/***/ "ec09":
|
|
11277
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
11278
|
+
|
|
11279
|
+
"use strict";
|
|
11280
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_MultiFlatmapVuer_vue_vue_type_style_index_0_id_0d8bc999_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("4d90");
|
|
11281
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_MultiFlatmapVuer_vue_vue_type_style_index_0_id_0d8bc999_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_MultiFlatmapVuer_vue_vue_type_style_index_0_id_0d8bc999_prod_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
|
|
11282
|
+
/* unused harmony reexport * */
|
|
11283
|
+
|
|
11284
|
+
|
|
11208
11285
|
/***/ }),
|
|
11209
11286
|
|
|
11210
11287
|
/***/ "ec71":
|
|
@@ -11301,7 +11378,7 @@ module.exports =
|
|
|
11301
11378
|
/******/
|
|
11302
11379
|
/******/
|
|
11303
11380
|
/******/ // Load entry module and return exports
|
|
11304
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
11381
|
+
/******/ return __webpack_require__(__webpack_require__.s = 96);
|
|
11305
11382
|
/******/ })
|
|
11306
11383
|
/************************************************************************/
|
|
11307
11384
|
/******/ ({
|
|
@@ -11408,7 +11485,7 @@ function normalizeComponent (
|
|
|
11408
11485
|
|
|
11409
11486
|
/***/ }),
|
|
11410
11487
|
|
|
11411
|
-
/***/
|
|
11488
|
+
/***/ 96:
|
|
11412
11489
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
11413
11490
|
|
|
11414
11491
|
"use strict";
|
|
@@ -11522,7 +11599,7 @@ render._withStripped = true
|
|
|
11522
11599
|
return this.size || this._elFormItemSize || (this.$ELEMENT || {}).size;
|
|
11523
11600
|
},
|
|
11524
11601
|
buttonDisabled: function buttonDisabled() {
|
|
11525
|
-
return this.disabled
|
|
11602
|
+
return this.$options.propsData.hasOwnProperty('disabled') ? this.disabled : (this.elForm || {}).disabled;
|
|
11526
11603
|
}
|
|
11527
11604
|
},
|
|
11528
11605
|
|
|
@@ -11700,6 +11777,9 @@ exports.default = {
|
|
|
11700
11777
|
popconfirm: {
|
|
11701
11778
|
confirmButtonText: '确定',
|
|
11702
11779
|
cancelButtonText: '取消'
|
|
11780
|
+
},
|
|
11781
|
+
empty: {
|
|
11782
|
+
description: '暂无数据'
|
|
11703
11783
|
}
|
|
11704
11784
|
}
|
|
11705
11785
|
};
|
|
@@ -11793,7 +11873,7 @@ module.exports =
|
|
|
11793
11873
|
/******/
|
|
11794
11874
|
/******/
|
|
11795
11875
|
/******/ // Load entry module and return exports
|
|
11796
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
11876
|
+
/******/ return __webpack_require__(__webpack_require__.s = 75);
|
|
11797
11877
|
/******/ })
|
|
11798
11878
|
/************************************************************************/
|
|
11799
11879
|
/******/ ({
|
|
@@ -11921,7 +12001,7 @@ module.exports = __webpack_require__("d010");
|
|
|
11921
12001
|
|
|
11922
12002
|
/***/ }),
|
|
11923
12003
|
|
|
11924
|
-
/***/
|
|
12004
|
+
/***/ 75:
|
|
11925
12005
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
11926
12006
|
|
|
11927
12007
|
"use strict";
|
|
@@ -12563,15 +12643,18 @@ var shared_ = __webpack_require__(21);
|
|
|
12563
12643
|
this.focused = true;
|
|
12564
12644
|
this.$emit('focus', event);
|
|
12565
12645
|
},
|
|
12566
|
-
handleCompositionStart: function handleCompositionStart() {
|
|
12646
|
+
handleCompositionStart: function handleCompositionStart(event) {
|
|
12647
|
+
this.$emit('compositionstart', event);
|
|
12567
12648
|
this.isComposing = true;
|
|
12568
12649
|
},
|
|
12569
12650
|
handleCompositionUpdate: function handleCompositionUpdate(event) {
|
|
12651
|
+
this.$emit('compositionupdate', event);
|
|
12570
12652
|
var text = event.target.value;
|
|
12571
12653
|
var lastCharacter = text[text.length - 1] || '';
|
|
12572
12654
|
this.isComposing = !Object(shared_["isKorean"])(lastCharacter);
|
|
12573
12655
|
},
|
|
12574
12656
|
handleCompositionEnd: function handleCompositionEnd(event) {
|
|
12657
|
+
this.$emit('compositionend', event);
|
|
12575
12658
|
if (this.isComposing) {
|
|
12576
12659
|
this.isComposing = false;
|
|
12577
12660
|
this.handleInput(event);
|
|
@@ -12793,7 +12876,7 @@ module.exports =
|
|
|
12793
12876
|
/******/
|
|
12794
12877
|
/******/
|
|
12795
12878
|
/******/ // Load entry module and return exports
|
|
12796
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
12879
|
+
/******/ return __webpack_require__(__webpack_require__.s = 88);
|
|
12797
12880
|
/******/ })
|
|
12798
12881
|
/************************************************************************/
|
|
12799
12882
|
/******/ ({
|
|
@@ -12900,7 +12983,14 @@ function normalizeComponent (
|
|
|
12900
12983
|
|
|
12901
12984
|
/***/ }),
|
|
12902
12985
|
|
|
12903
|
-
/***/
|
|
12986
|
+
/***/ 4:
|
|
12987
|
+
/***/ (function(module, exports) {
|
|
12988
|
+
|
|
12989
|
+
module.exports = __webpack_require__("d010");
|
|
12990
|
+
|
|
12991
|
+
/***/ }),
|
|
12992
|
+
|
|
12993
|
+
/***/ 88:
|
|
12904
12994
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
12905
12995
|
|
|
12906
12996
|
"use strict";
|
|
@@ -12970,7 +13060,8 @@ var render = function() {
|
|
|
12970
13060
|
"aria-hidden": "true",
|
|
12971
13061
|
name: _vm.name,
|
|
12972
13062
|
disabled: _vm.isDisabled,
|
|
12973
|
-
tabindex: "-1"
|
|
13063
|
+
tabindex: "-1",
|
|
13064
|
+
autocomplete: "off"
|
|
12974
13065
|
},
|
|
12975
13066
|
domProps: {
|
|
12976
13067
|
value: _vm.label,
|
|
@@ -13067,6 +13158,7 @@ var emitter_default = /*#__PURE__*/__webpack_require__.n(emitter_);
|
|
|
13067
13158
|
//
|
|
13068
13159
|
//
|
|
13069
13160
|
//
|
|
13161
|
+
//
|
|
13070
13162
|
|
|
13071
13163
|
|
|
13072
13164
|
|
|
@@ -13193,13 +13285,6 @@ src_radio.install = function (Vue) {
|
|
|
13193
13285
|
|
|
13194
13286
|
/* harmony default export */ var packages_radio = __webpack_exports__["default"] = (src_radio);
|
|
13195
13287
|
|
|
13196
|
-
/***/ }),
|
|
13197
|
-
|
|
13198
|
-
/***/ 4:
|
|
13199
|
-
/***/ (function(module, exports) {
|
|
13200
|
-
|
|
13201
|
-
module.exports = __webpack_require__("d010");
|
|
13202
|
-
|
|
13203
13288
|
/***/ })
|
|
13204
13289
|
|
|
13205
13290
|
/******/ });
|
|
@@ -13213,6 +13298,13 @@ module.exports = __webpack_require__("d010");
|
|
|
13213
13298
|
|
|
13214
13299
|
/***/ }),
|
|
13215
13300
|
|
|
13301
|
+
/***/ "f765":
|
|
13302
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
13303
|
+
|
|
13304
|
+
// extracted by mini-css-extract-plugin
|
|
13305
|
+
|
|
13306
|
+
/***/ }),
|
|
13307
|
+
|
|
13216
13308
|
/***/ "f989":
|
|
13217
13309
|
/***/ (function(module, exports) {
|
|
13218
13310
|
|
|
@@ -13255,16 +13347,495 @@ if (typeof window !== 'undefined') {
|
|
|
13255
13347
|
// Indicate to webpack that this file can be concatenated
|
|
13256
13348
|
/* harmony default export */ var setPublicPath = (null);
|
|
13257
13349
|
|
|
13258
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13259
|
-
var render = function () {
|
|
13260
|
-
var
|
|
13261
|
-
|
|
13262
|
-
|
|
13263
|
-
|
|
13264
|
-
|
|
13265
|
-
|
|
13266
|
-
|
|
13267
|
-
|
|
13350
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e8f1c40a-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FlatmapVuer.vue?vue&type=template&id=66e8be2a&scoped=true&
|
|
13351
|
+
var render = function render() {
|
|
13352
|
+
var _vm = this,
|
|
13353
|
+
_c = _vm._self._c;
|
|
13354
|
+
return _c('div', {
|
|
13355
|
+
directives: [{
|
|
13356
|
+
name: "loading",
|
|
13357
|
+
rawName: "v-loading",
|
|
13358
|
+
value: _vm.loading,
|
|
13359
|
+
expression: "loading"
|
|
13360
|
+
}],
|
|
13361
|
+
ref: "flatmapContainer",
|
|
13362
|
+
staticClass: "flatmap-container",
|
|
13363
|
+
attrs: {
|
|
13364
|
+
"element-loading-text": "Loading...",
|
|
13365
|
+
"element-loading-spinner": "el-icon-loading",
|
|
13366
|
+
"element-loading-background": "rgba(0, 0, 0, 0.3)"
|
|
13367
|
+
}
|
|
13368
|
+
}, [_c('map-svg-sprite-color'), _c('div', {
|
|
13369
|
+
staticStyle: {
|
|
13370
|
+
"height": "100%",
|
|
13371
|
+
"width": "100%",
|
|
13372
|
+
"position": "relative",
|
|
13373
|
+
"overflow-y": "none"
|
|
13374
|
+
}
|
|
13375
|
+
}, [_c('div', {
|
|
13376
|
+
ref: "display",
|
|
13377
|
+
staticStyle: {
|
|
13378
|
+
"height": "100%",
|
|
13379
|
+
"width": "100%"
|
|
13380
|
+
}
|
|
13381
|
+
}), _c('div', {
|
|
13382
|
+
staticClass: "beta-popovers"
|
|
13383
|
+
}, [_c('div', [_c('el-popover', {
|
|
13384
|
+
ref: "warningPopover",
|
|
13385
|
+
attrs: {
|
|
13386
|
+
"content": _vm.isLegacy ? 'This is a legacy map, you may view the latest map instead.' : _vm.warningMessage,
|
|
13387
|
+
"placement": "right",
|
|
13388
|
+
"appendToBody": false,
|
|
13389
|
+
"trigger": "manual",
|
|
13390
|
+
"popper-class": "warning-popper flatmap-popper right-popper"
|
|
13391
|
+
},
|
|
13392
|
+
model: {
|
|
13393
|
+
value: _vm.hoverVisibilities[6].value,
|
|
13394
|
+
callback: function callback($$v) {
|
|
13395
|
+
_vm.$set(_vm.hoverVisibilities[6], "value", $$v);
|
|
13396
|
+
},
|
|
13397
|
+
expression: "hoverVisibilities[6].value"
|
|
13398
|
+
}
|
|
13399
|
+
}), _vm.displayWarning && _vm.warningMessage ? _c('i', {
|
|
13400
|
+
directives: [{
|
|
13401
|
+
name: "popover",
|
|
13402
|
+
rawName: "v-popover:warningPopover",
|
|
13403
|
+
arg: "warningPopover"
|
|
13404
|
+
}],
|
|
13405
|
+
staticClass: "el-icon-warning warning-icon",
|
|
13406
|
+
on: {
|
|
13407
|
+
"mouseover": function mouseover($event) {
|
|
13408
|
+
return _vm.showToolitip(6);
|
|
13409
|
+
},
|
|
13410
|
+
"mouseout": function mouseout($event) {
|
|
13411
|
+
return _vm.hideToolitip(6);
|
|
13412
|
+
}
|
|
13413
|
+
}
|
|
13414
|
+
}, [_vm.isLegacy ? [_c('span', {
|
|
13415
|
+
staticClass: "warning-text"
|
|
13416
|
+
}, [_vm._v("Legacy Map")]), _c('div', {
|
|
13417
|
+
staticClass: "latest-map-text",
|
|
13418
|
+
on: {
|
|
13419
|
+
"click": _vm.viewLatestMap
|
|
13420
|
+
}
|
|
13421
|
+
}, [_vm._v("Click here for the latest map")])] : [_c('span', {
|
|
13422
|
+
staticClass: "warning-text"
|
|
13423
|
+
}, [_vm._v("Beta")])]], 2) : _vm._e()], 1), _vm.displayLatestChanges ? _c('el-popover', {
|
|
13424
|
+
ref: "latestChangesPopover",
|
|
13425
|
+
attrs: {
|
|
13426
|
+
"content": _vm.latestChangesMessage,
|
|
13427
|
+
"placement": "right",
|
|
13428
|
+
"appendToBody": false,
|
|
13429
|
+
"trigger": "manual",
|
|
13430
|
+
"popper-class": "warning-popper flatmap-popper right-popper"
|
|
13431
|
+
},
|
|
13432
|
+
model: {
|
|
13433
|
+
value: _vm.hoverVisibilities[7].value,
|
|
13434
|
+
callback: function callback($$v) {
|
|
13435
|
+
_vm.$set(_vm.hoverVisibilities[7], "value", $$v);
|
|
13436
|
+
},
|
|
13437
|
+
expression: "hoverVisibilities[7].value"
|
|
13438
|
+
}
|
|
13439
|
+
}) : _vm._e(), _vm.displayLatestChanges && _vm.latestChangesMessage ? _c('i', {
|
|
13440
|
+
directives: [{
|
|
13441
|
+
name: "popover",
|
|
13442
|
+
rawName: "v-popover:latestChangesPopover",
|
|
13443
|
+
arg: "latestChangesPopover"
|
|
13444
|
+
}],
|
|
13445
|
+
staticClass: "el-icon-warning latest-changesicon",
|
|
13446
|
+
on: {
|
|
13447
|
+
"mouseover": function mouseover($event) {
|
|
13448
|
+
return _vm.showToolitip(7);
|
|
13449
|
+
},
|
|
13450
|
+
"mouseout": function mouseout($event) {
|
|
13451
|
+
return _vm.hideToolitip(7);
|
|
13452
|
+
}
|
|
13453
|
+
}
|
|
13454
|
+
}, [_c('span', {
|
|
13455
|
+
staticClass: "warning-text"
|
|
13456
|
+
}, [_vm._v("What's new?")])]) : _vm._e()], 1), _c('i', {
|
|
13457
|
+
directives: [{
|
|
13458
|
+
name: "show",
|
|
13459
|
+
rawName: "v-show",
|
|
13460
|
+
value: _vm.minimapResizeShow,
|
|
13461
|
+
expression: "minimapResizeShow"
|
|
13462
|
+
}],
|
|
13463
|
+
ref: "minimapResize",
|
|
13464
|
+
staticClass: "el-icon-arrow-down minimap-resize",
|
|
13465
|
+
class: {
|
|
13466
|
+
enlarge: _vm.minimapSmall,
|
|
13467
|
+
shrink: !_vm.minimapSmall
|
|
13468
|
+
},
|
|
13469
|
+
on: {
|
|
13470
|
+
"click": _vm.closeMinimap
|
|
13471
|
+
}
|
|
13472
|
+
}), _c('div', {
|
|
13473
|
+
staticClass: "bottom-right-control"
|
|
13474
|
+
}, [_c('el-popover', {
|
|
13475
|
+
attrs: {
|
|
13476
|
+
"content": "Zoom in",
|
|
13477
|
+
"placement": "left",
|
|
13478
|
+
"appendToBody": false,
|
|
13479
|
+
"trigger": "manual",
|
|
13480
|
+
"popper-class": "flatmap-popper left-popper"
|
|
13481
|
+
},
|
|
13482
|
+
model: {
|
|
13483
|
+
value: _vm.hoverVisibilities[0].value,
|
|
13484
|
+
callback: function callback($$v) {
|
|
13485
|
+
_vm.$set(_vm.hoverVisibilities[0], "value", $$v);
|
|
13486
|
+
},
|
|
13487
|
+
expression: "hoverVisibilities[0].value"
|
|
13488
|
+
}
|
|
13489
|
+
}, [_c('map-svg-icon', {
|
|
13490
|
+
staticClass: "icon-button zoomIn",
|
|
13491
|
+
attrs: {
|
|
13492
|
+
"slot": "reference",
|
|
13493
|
+
"icon": "zoomIn"
|
|
13494
|
+
},
|
|
13495
|
+
nativeOn: {
|
|
13496
|
+
"click": function click($event) {
|
|
13497
|
+
return _vm.zoomIn();
|
|
13498
|
+
},
|
|
13499
|
+
"mouseover": function mouseover($event) {
|
|
13500
|
+
return _vm.showToolitip(0);
|
|
13501
|
+
},
|
|
13502
|
+
"mouseout": function mouseout($event) {
|
|
13503
|
+
return _vm.hideToolitip(0);
|
|
13504
|
+
}
|
|
13505
|
+
},
|
|
13506
|
+
slot: "reference"
|
|
13507
|
+
})], 1), _c('el-popover', {
|
|
13508
|
+
attrs: {
|
|
13509
|
+
"content": "Zoom out",
|
|
13510
|
+
"placement": "top-end",
|
|
13511
|
+
"appendToBody": false,
|
|
13512
|
+
"trigger": "manual",
|
|
13513
|
+
"popper-class": "flatmap-popper popper-zoomout"
|
|
13514
|
+
},
|
|
13515
|
+
model: {
|
|
13516
|
+
value: _vm.hoverVisibilities[1].value,
|
|
13517
|
+
callback: function callback($$v) {
|
|
13518
|
+
_vm.$set(_vm.hoverVisibilities[1], "value", $$v);
|
|
13519
|
+
},
|
|
13520
|
+
expression: "hoverVisibilities[1].value"
|
|
13521
|
+
}
|
|
13522
|
+
}, [_c('map-svg-icon', {
|
|
13523
|
+
staticClass: "icon-button zoomOut",
|
|
13524
|
+
attrs: {
|
|
13525
|
+
"slot": "reference",
|
|
13526
|
+
"icon": "zoomOut"
|
|
13527
|
+
},
|
|
13528
|
+
nativeOn: {
|
|
13529
|
+
"click": function click($event) {
|
|
13530
|
+
return _vm.zoomOut();
|
|
13531
|
+
},
|
|
13532
|
+
"mouseover": function mouseover($event) {
|
|
13533
|
+
return _vm.showToolitip(1);
|
|
13534
|
+
},
|
|
13535
|
+
"mouseout": function mouseout($event) {
|
|
13536
|
+
return _vm.hideToolitip(1);
|
|
13537
|
+
}
|
|
13538
|
+
},
|
|
13539
|
+
slot: "reference"
|
|
13540
|
+
})], 1), _c('el-popover', {
|
|
13541
|
+
attrs: {
|
|
13542
|
+
"content": "Reset",
|
|
13543
|
+
"placement": "top",
|
|
13544
|
+
"appendToBody": false,
|
|
13545
|
+
"trigger": "manual",
|
|
13546
|
+
"popper-class": "flatmap-popper"
|
|
13547
|
+
},
|
|
13548
|
+
model: {
|
|
13549
|
+
value: _vm.hoverVisibilities[2].value,
|
|
13550
|
+
callback: function callback($$v) {
|
|
13551
|
+
_vm.$set(_vm.hoverVisibilities[2], "value", $$v);
|
|
13552
|
+
},
|
|
13553
|
+
expression: "hoverVisibilities[2].value"
|
|
13554
|
+
}
|
|
13555
|
+
}, [_c('div', [_vm._v(" Fit to "), _c('br'), _vm._v(" window ")]), _c('map-svg-icon', {
|
|
13556
|
+
staticClass: "icon-button fitWindow",
|
|
13557
|
+
attrs: {
|
|
13558
|
+
"slot": "reference",
|
|
13559
|
+
"icon": "fitWindow"
|
|
13560
|
+
},
|
|
13561
|
+
nativeOn: {
|
|
13562
|
+
"click": function click($event) {
|
|
13563
|
+
return _vm.resetView();
|
|
13564
|
+
},
|
|
13565
|
+
"mouseover": function mouseover($event) {
|
|
13566
|
+
return _vm.showToolitip(2);
|
|
13567
|
+
},
|
|
13568
|
+
"mouseout": function mouseout($event) {
|
|
13569
|
+
return _vm.hideToolitip(2);
|
|
13570
|
+
}
|
|
13571
|
+
},
|
|
13572
|
+
slot: "reference"
|
|
13573
|
+
})], 1)], 1), _c('el-popover', {
|
|
13574
|
+
ref: "checkBoxPopover",
|
|
13575
|
+
attrs: {
|
|
13576
|
+
"content": "Change pathway visibility",
|
|
13577
|
+
"placement": "right",
|
|
13578
|
+
"appendToBody": false,
|
|
13579
|
+
"trigger": "manual",
|
|
13580
|
+
"popper-class": "flatmap-popper right-popper"
|
|
13581
|
+
},
|
|
13582
|
+
model: {
|
|
13583
|
+
value: _vm.hoverVisibilities[4].value,
|
|
13584
|
+
callback: function callback($$v) {
|
|
13585
|
+
_vm.$set(_vm.hoverVisibilities[4], "value", $$v);
|
|
13586
|
+
},
|
|
13587
|
+
expression: "hoverVisibilities[4].value"
|
|
13588
|
+
}
|
|
13589
|
+
}), _c('div', {
|
|
13590
|
+
staticClass: "pathway-location",
|
|
13591
|
+
class: {
|
|
13592
|
+
open: _vm.drawerOpen,
|
|
13593
|
+
close: !_vm.drawerOpen
|
|
13594
|
+
}
|
|
13595
|
+
}, [_vm.pathControls ? _c('div', {
|
|
13596
|
+
directives: [{
|
|
13597
|
+
name: "popover",
|
|
13598
|
+
rawName: "v-popover:checkBoxPopover",
|
|
13599
|
+
arg: "checkBoxPopover"
|
|
13600
|
+
}],
|
|
13601
|
+
staticClass: "pathway-container",
|
|
13602
|
+
style: {
|
|
13603
|
+
'max-height': _vm.pathwaysMaxHeight + 'px'
|
|
13604
|
+
}
|
|
13605
|
+
}, [!_vm.isFC ? _c('svg-legends', {
|
|
13606
|
+
staticClass: "svg-legends-container"
|
|
13607
|
+
}) : _vm._e(), _c('el-popover', {
|
|
13608
|
+
ref: "markerPopover",
|
|
13609
|
+
attrs: {
|
|
13610
|
+
"content": "Find these markers for data",
|
|
13611
|
+
"placement": "right",
|
|
13612
|
+
"appendToBody": false,
|
|
13613
|
+
"trigger": "manual",
|
|
13614
|
+
"popper-class": "flatmap-popper popper-bump-right right-popper"
|
|
13615
|
+
},
|
|
13616
|
+
model: {
|
|
13617
|
+
value: _vm.hoverVisibilities[5].value,
|
|
13618
|
+
callback: function callback($$v) {
|
|
13619
|
+
_vm.$set(_vm.hoverVisibilities[5], "value", $$v);
|
|
13620
|
+
},
|
|
13621
|
+
expression: "hoverVisibilities[5].value"
|
|
13622
|
+
}
|
|
13623
|
+
}), _c('div', {
|
|
13624
|
+
directives: [{
|
|
13625
|
+
name: "show",
|
|
13626
|
+
rawName: "v-show",
|
|
13627
|
+
value: _vm.hoverVisibilities[5].value,
|
|
13628
|
+
expression: "hoverVisibilities[5].value"
|
|
13629
|
+
}, {
|
|
13630
|
+
name: "popover",
|
|
13631
|
+
rawName: "v-popover:markerPopover",
|
|
13632
|
+
arg: "markerPopover"
|
|
13633
|
+
}],
|
|
13634
|
+
staticClass: "flatmap-marker-help",
|
|
13635
|
+
domProps: {
|
|
13636
|
+
"innerHTML": _vm._s(_vm.flatmapMarker)
|
|
13637
|
+
}
|
|
13638
|
+
}), _vm.isFC && _vm.systems && _vm.systems.length > 0 ? _c('dynamic-legends', {
|
|
13639
|
+
key: "systemslegends",
|
|
13640
|
+
attrs: {
|
|
13641
|
+
"title": "Systems",
|
|
13642
|
+
"identifierKey": "name",
|
|
13643
|
+
"lists": _vm.systems
|
|
13644
|
+
}
|
|
13645
|
+
}) : _vm._e(), !_vm.isFC && _vm.centreLines && _vm.centreLines.length > 0 ? _c('selections-group', {
|
|
13646
|
+
key: "centrelinesSelection",
|
|
13647
|
+
ref: "centrelinesSelection",
|
|
13648
|
+
attrs: {
|
|
13649
|
+
"title": "Centrelines",
|
|
13650
|
+
"labelKey": "label",
|
|
13651
|
+
"identifierKey": "key",
|
|
13652
|
+
"selections": _vm.centreLines
|
|
13653
|
+
},
|
|
13654
|
+
on: {
|
|
13655
|
+
"changed": _vm.centreLinesSelected
|
|
13656
|
+
}
|
|
13657
|
+
}) : _vm._e(), _vm.isFC && _vm.sckanDisplay && _vm.sckanDisplay.length > 0 ? _c('selections-group', {
|
|
13658
|
+
key: "skcanSelection",
|
|
13659
|
+
ref: "skcanSelection",
|
|
13660
|
+
attrs: {
|
|
13661
|
+
"title": "SCKAN",
|
|
13662
|
+
"labelKey": "label",
|
|
13663
|
+
"identifierKey": "key",
|
|
13664
|
+
"selections": _vm.sckanDisplay
|
|
13665
|
+
},
|
|
13666
|
+
on: {
|
|
13667
|
+
"changed": _vm.sckanSelected,
|
|
13668
|
+
"checkAll": _vm.checkAllSCKAN
|
|
13669
|
+
}
|
|
13670
|
+
}) : _vm._e(), _vm.layers && _vm.layers.length > 0 ? _c('selections-group', {
|
|
13671
|
+
key: "layersSelection",
|
|
13672
|
+
ref: "layersSelection",
|
|
13673
|
+
attrs: {
|
|
13674
|
+
"title": "Layers",
|
|
13675
|
+
"labelKey": "description",
|
|
13676
|
+
"identifierKey": "id",
|
|
13677
|
+
"selections": _vm.layers
|
|
13678
|
+
},
|
|
13679
|
+
on: {
|
|
13680
|
+
"changed": _vm.layersSelected,
|
|
13681
|
+
"checkAll": _vm.checkAllLayers
|
|
13682
|
+
}
|
|
13683
|
+
}) : _vm._e(), _vm.pathways && _vm.pathways.length > 0 ? _c('selections-group', {
|
|
13684
|
+
key: "pathwaysSelection",
|
|
13685
|
+
ref: "pathwaysSelection",
|
|
13686
|
+
attrs: {
|
|
13687
|
+
"title": "Pathways",
|
|
13688
|
+
"labelKey": "label",
|
|
13689
|
+
"identifierKey": "type",
|
|
13690
|
+
"selections": _vm.pathways
|
|
13691
|
+
},
|
|
13692
|
+
on: {
|
|
13693
|
+
"changed": _vm.pathwaysSelected,
|
|
13694
|
+
"checkAll": _vm.checkAllPathways
|
|
13695
|
+
}
|
|
13696
|
+
}) : _vm._e()], 1) : _vm._e(), _c('div', {
|
|
13697
|
+
staticClass: "drawer-button",
|
|
13698
|
+
class: {
|
|
13699
|
+
open: _vm.drawerOpen,
|
|
13700
|
+
close: !_vm.drawerOpen
|
|
13701
|
+
},
|
|
13702
|
+
on: {
|
|
13703
|
+
"click": _vm.toggleDrawer
|
|
13704
|
+
}
|
|
13705
|
+
}, [_c('i', {
|
|
13706
|
+
staticClass: "el-icon-arrow-left"
|
|
13707
|
+
})])]), _c('el-popover', {
|
|
13708
|
+
ref: "backgroundPopover",
|
|
13709
|
+
attrs: {
|
|
13710
|
+
"placement": "top-start",
|
|
13711
|
+
"width": "175",
|
|
13712
|
+
"appendToBody": false,
|
|
13713
|
+
"trigger": "click",
|
|
13714
|
+
"popper-class": "background-popper"
|
|
13715
|
+
}
|
|
13716
|
+
}, [_c('el-row', {
|
|
13717
|
+
staticClass: "backgroundText"
|
|
13718
|
+
}, [_vm._v("Organs display")]), _c('el-row', {
|
|
13719
|
+
staticClass: "backgroundControl"
|
|
13720
|
+
}, [_c('el-radio-group', {
|
|
13721
|
+
staticClass: "flatmap-radio",
|
|
13722
|
+
on: {
|
|
13723
|
+
"change": _vm.setColour
|
|
13724
|
+
},
|
|
13725
|
+
model: {
|
|
13726
|
+
value: _vm.colourRadio,
|
|
13727
|
+
callback: function callback($$v) {
|
|
13728
|
+
_vm.colourRadio = $$v;
|
|
13729
|
+
},
|
|
13730
|
+
expression: "colourRadio"
|
|
13731
|
+
}
|
|
13732
|
+
}, [_c('el-radio', {
|
|
13733
|
+
attrs: {
|
|
13734
|
+
"label": true
|
|
13735
|
+
}
|
|
13736
|
+
}, [_vm._v("Colour")]), _c('el-radio', {
|
|
13737
|
+
attrs: {
|
|
13738
|
+
"label": false
|
|
13739
|
+
}
|
|
13740
|
+
}, [_vm._v("Greyscale")])], 1)], 1), _c('el-row', {
|
|
13741
|
+
staticClass: "backgroundSpacer"
|
|
13742
|
+
}), _c('el-row', {
|
|
13743
|
+
staticClass: "backgroundText"
|
|
13744
|
+
}, [_vm._v("Outlines display")]), _c('el-row', {
|
|
13745
|
+
staticClass: "backgroundControl"
|
|
13746
|
+
}, [_c('el-radio-group', {
|
|
13747
|
+
staticClass: "flatmap-radio",
|
|
13748
|
+
on: {
|
|
13749
|
+
"change": _vm.setOutlines
|
|
13750
|
+
},
|
|
13751
|
+
model: {
|
|
13752
|
+
value: _vm.outlinesRadio,
|
|
13753
|
+
callback: function callback($$v) {
|
|
13754
|
+
_vm.outlinesRadio = $$v;
|
|
13755
|
+
},
|
|
13756
|
+
expression: "outlinesRadio"
|
|
13757
|
+
}
|
|
13758
|
+
}, [_c('el-radio', {
|
|
13759
|
+
attrs: {
|
|
13760
|
+
"label": true
|
|
13761
|
+
}
|
|
13762
|
+
}, [_vm._v("Show")]), _c('el-radio', {
|
|
13763
|
+
attrs: {
|
|
13764
|
+
"label": false
|
|
13765
|
+
}
|
|
13766
|
+
}, [_vm._v("Hide")])], 1)], 1), _c('el-row', {
|
|
13767
|
+
staticClass: "backgroundSpacer"
|
|
13768
|
+
}), _c('el-row', {
|
|
13769
|
+
staticClass: "backgroundText"
|
|
13770
|
+
}, [_vm._v("Change background")]), _c('el-row', {
|
|
13771
|
+
staticClass: "backgroundControl"
|
|
13772
|
+
}, _vm._l(_vm.availableBackground, function (item) {
|
|
13773
|
+
return _c('div', {
|
|
13774
|
+
key: item,
|
|
13775
|
+
class: ['backgroundChoice', item, item == _vm.currentBackground ? 'active' : ''],
|
|
13776
|
+
on: {
|
|
13777
|
+
"click": function click($event) {
|
|
13778
|
+
return _vm.backgroundChangeCallback(item);
|
|
13779
|
+
}
|
|
13780
|
+
}
|
|
13781
|
+
});
|
|
13782
|
+
}), 0)], 1), _c('el-popover', {
|
|
13783
|
+
attrs: {
|
|
13784
|
+
"content": "Change settings",
|
|
13785
|
+
"placement": "right",
|
|
13786
|
+
"appendToBody": false,
|
|
13787
|
+
"trigger": "manual",
|
|
13788
|
+
"popper-class": "flatmap-popper right-popper"
|
|
13789
|
+
},
|
|
13790
|
+
model: {
|
|
13791
|
+
value: _vm.hoverVisibilities[3].value,
|
|
13792
|
+
callback: function callback($$v) {
|
|
13793
|
+
_vm.$set(_vm.hoverVisibilities[3], "value", $$v);
|
|
13794
|
+
},
|
|
13795
|
+
expression: "hoverVisibilities[3].value"
|
|
13796
|
+
}
|
|
13797
|
+
}, [_c('map-svg-icon', {
|
|
13798
|
+
directives: [{
|
|
13799
|
+
name: "popover",
|
|
13800
|
+
rawName: "v-popover:backgroundPopover",
|
|
13801
|
+
arg: "backgroundPopover"
|
|
13802
|
+
}],
|
|
13803
|
+
staticClass: "icon-button background-colour",
|
|
13804
|
+
class: {
|
|
13805
|
+
open: _vm.drawerOpen,
|
|
13806
|
+
close: !_vm.drawerOpen
|
|
13807
|
+
},
|
|
13808
|
+
attrs: {
|
|
13809
|
+
"slot": "reference",
|
|
13810
|
+
"icon": "changeBckgd"
|
|
13811
|
+
},
|
|
13812
|
+
nativeOn: {
|
|
13813
|
+
"mouseover": function mouseover($event) {
|
|
13814
|
+
return _vm.showToolitip(3);
|
|
13815
|
+
},
|
|
13816
|
+
"mouseout": function mouseout($event) {
|
|
13817
|
+
return _vm.hideToolitip(3);
|
|
13818
|
+
}
|
|
13819
|
+
},
|
|
13820
|
+
slot: "reference"
|
|
13821
|
+
})], 1), _c('Tooltip', {
|
|
13822
|
+
ref: "tooltip",
|
|
13823
|
+
staticClass: "tooltip",
|
|
13824
|
+
attrs: {
|
|
13825
|
+
"content": _vm.tooltipContent
|
|
13826
|
+
},
|
|
13827
|
+
on: {
|
|
13828
|
+
"resource-selected": _vm.resourceSelected
|
|
13829
|
+
}
|
|
13830
|
+
})], 1)], 1);
|
|
13831
|
+
};
|
|
13832
|
+
var staticRenderFns = [];
|
|
13833
|
+
|
|
13834
|
+
// CONCATENATED MODULE: ./src/components/FlatmapVuer.vue?vue&type=template&id=66e8be2a&scoped=true&
|
|
13835
|
+
|
|
13836
|
+
// EXTERNAL MODULE: external "core-js/modules/es.symbol.js"
|
|
13837
|
+
var es_symbol_js_ = __webpack_require__("9b22");
|
|
13838
|
+
|
|
13268
13839
|
// EXTERNAL MODULE: external "core-js/modules/es.symbol.description.js"
|
|
13269
13840
|
var es_symbol_description_js_ = __webpack_require__("4933");
|
|
13270
13841
|
|
|
@@ -13283,6 +13854,9 @@ var es_string_iterator_js_ = __webpack_require__("9bb5");
|
|
|
13283
13854
|
// EXTERNAL MODULE: external "core-js/modules/web.dom-collections.iterator.js"
|
|
13284
13855
|
var web_dom_collections_iterator_js_ = __webpack_require__("1a25");
|
|
13285
13856
|
|
|
13857
|
+
// EXTERNAL MODULE: external "core-js/modules/es.error.cause.js"
|
|
13858
|
+
var es_error_cause_js_ = __webpack_require__("dc50");
|
|
13859
|
+
|
|
13286
13860
|
// EXTERNAL MODULE: external "core-js/modules/es.array.slice.js"
|
|
13287
13861
|
var es_array_slice_js_ = __webpack_require__("ea12");
|
|
13288
13862
|
|
|
@@ -13292,14 +13866,18 @@ var es_function_name_js_ = __webpack_require__("db0a");
|
|
|
13292
13866
|
// EXTERNAL MODULE: external "core-js/modules/es.array.from.js"
|
|
13293
13867
|
var es_array_from_js_ = __webpack_require__("4362");
|
|
13294
13868
|
|
|
13869
|
+
// EXTERNAL MODULE: external "core-js/modules/es.regexp.exec.js"
|
|
13870
|
+
var es_regexp_exec_js_ = __webpack_require__("c8a6");
|
|
13871
|
+
|
|
13872
|
+
// EXTERNAL MODULE: external "core-js/modules/es.regexp.test.js"
|
|
13873
|
+
var es_regexp_test_js_ = __webpack_require__("5a3b");
|
|
13874
|
+
|
|
13295
13875
|
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
|
|
13296
13876
|
function _arrayLikeToArray(arr, len) {
|
|
13297
13877
|
if (len == null || len > arr.length) len = arr.length;
|
|
13298
|
-
|
|
13299
13878
|
for (var i = 0, arr2 = new Array(len); i < len; i++) {
|
|
13300
13879
|
arr2[i] = arr[i];
|
|
13301
13880
|
}
|
|
13302
|
-
|
|
13303
13881
|
return arr2;
|
|
13304
13882
|
}
|
|
13305
13883
|
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js
|
|
@@ -13309,6 +13887,8 @@ function _arrayLikeToArray(arr, len) {
|
|
|
13309
13887
|
|
|
13310
13888
|
|
|
13311
13889
|
|
|
13890
|
+
|
|
13891
|
+
|
|
13312
13892
|
function _unsupportedIterableToArray(o, minLen) {
|
|
13313
13893
|
if (!o) return;
|
|
13314
13894
|
if (typeof o === "string") return _arrayLikeToArray(o, minLen);
|
|
@@ -13326,16 +13906,14 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
|
13326
13906
|
|
|
13327
13907
|
|
|
13328
13908
|
|
|
13909
|
+
|
|
13329
13910
|
function _createForOfIteratorHelper(o, allowArrayLike) {
|
|
13330
13911
|
var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
|
|
13331
|
-
|
|
13332
13912
|
if (!it) {
|
|
13333
13913
|
if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
|
|
13334
13914
|
if (it) o = it;
|
|
13335
13915
|
var i = 0;
|
|
13336
|
-
|
|
13337
13916
|
var F = function F() {};
|
|
13338
|
-
|
|
13339
13917
|
return {
|
|
13340
13918
|
s: F,
|
|
13341
13919
|
n: function n() {
|
|
@@ -13353,13 +13931,11 @@ function _createForOfIteratorHelper(o, allowArrayLike) {
|
|
|
13353
13931
|
f: F
|
|
13354
13932
|
};
|
|
13355
13933
|
}
|
|
13356
|
-
|
|
13357
13934
|
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
13358
13935
|
}
|
|
13359
|
-
|
|
13360
13936
|
var normalCompletion = true,
|
|
13361
|
-
|
|
13362
|
-
|
|
13937
|
+
didErr = false,
|
|
13938
|
+
err;
|
|
13363
13939
|
return {
|
|
13364
13940
|
s: function s() {
|
|
13365
13941
|
it = it.call(o);
|
|
@@ -13420,22 +13996,8 @@ var col = __webpack_require__("f4f9");
|
|
|
13420
13996
|
var lib_col = __webpack_require__("c2cc");
|
|
13421
13997
|
var lib_col_default = /*#__PURE__*/__webpack_require__.n(lib_col);
|
|
13422
13998
|
|
|
13423
|
-
// EXTERNAL MODULE:
|
|
13424
|
-
var
|
|
13425
|
-
|
|
13426
|
-
// EXTERNAL MODULE: ./node_modules/element-ui/lib/checkbox-group.js
|
|
13427
|
-
var lib_checkbox_group = __webpack_require__("7fc1");
|
|
13428
|
-
var lib_checkbox_group_default = /*#__PURE__*/__webpack_require__.n(lib_checkbox_group);
|
|
13429
|
-
|
|
13430
|
-
// EXTERNAL MODULE: ./node_modules/element-ui/lib/theme-chalk/checkbox.css
|
|
13431
|
-
var theme_chalk_checkbox = __webpack_require__("560b");
|
|
13432
|
-
|
|
13433
|
-
// EXTERNAL MODULE: ./node_modules/element-ui/lib/checkbox.js
|
|
13434
|
-
var lib_checkbox = __webpack_require__("dcdc");
|
|
13435
|
-
var lib_checkbox_default = /*#__PURE__*/__webpack_require__.n(lib_checkbox);
|
|
13436
|
-
|
|
13437
|
-
// EXTERNAL MODULE: external "core-js/modules/es.array.map.js"
|
|
13438
|
-
var es_array_map_js_ = __webpack_require__("4391");
|
|
13999
|
+
// EXTERNAL MODULE: external "core-js/modules/web.dom-collections.for-each.js"
|
|
14000
|
+
var web_dom_collections_for_each_js_ = __webpack_require__("13e3");
|
|
13439
14001
|
|
|
13440
14002
|
// EXTERNAL MODULE: external "core-js/modules/es.array.includes.js"
|
|
13441
14003
|
var es_array_includes_js_ = __webpack_require__("85f7");
|
|
@@ -13443,14 +14005,8 @@ var es_array_includes_js_ = __webpack_require__("85f7");
|
|
|
13443
14005
|
// EXTERNAL MODULE: external "core-js/modules/es.string.includes.js"
|
|
13444
14006
|
var es_string_includes_js_ = __webpack_require__("fd22");
|
|
13445
14007
|
|
|
13446
|
-
// EXTERNAL MODULE: external "core-js/modules/es.
|
|
13447
|
-
var
|
|
13448
|
-
|
|
13449
|
-
// EXTERNAL MODULE: external "core-js/modules/es.string.split.js"
|
|
13450
|
-
var es_string_split_js_ = __webpack_require__("0cda");
|
|
13451
|
-
|
|
13452
|
-
// EXTERNAL MODULE: external "core-js/modules/web.dom-collections.for-each.js"
|
|
13453
|
-
var web_dom_collections_for_each_js_ = __webpack_require__("13e3");
|
|
14008
|
+
// EXTERNAL MODULE: external "core-js/modules/es.array.push.js"
|
|
14009
|
+
var es_array_push_js_ = __webpack_require__("2439");
|
|
13454
14010
|
|
|
13455
14011
|
// EXTERNAL MODULE: external "core-js/modules/es.set.js"
|
|
13456
14012
|
var es_set_js_ = __webpack_require__("8535");
|
|
@@ -13465,10 +14021,156 @@ var es_number_constructor_js_ = __webpack_require__("f989");
|
|
|
13465
14021
|
var external_vue_ = __webpack_require__("8bbf");
|
|
13466
14022
|
var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
|
|
13467
14023
|
|
|
13468
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13469
|
-
var Tooltipvue_type_template_id_6d6dee76_scoped_true_render = function () {
|
|
13470
|
-
var
|
|
13471
|
-
|
|
14024
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e8f1c40a-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Tooltip.vue?vue&type=template&id=6d6dee76&scoped=true&
|
|
14025
|
+
var Tooltipvue_type_template_id_6d6dee76_scoped_true_render = function render() {
|
|
14026
|
+
var _vm = this,
|
|
14027
|
+
_c = _vm._self._c;
|
|
14028
|
+
return _c('div', {
|
|
14029
|
+
staticClass: "tooltip-container"
|
|
14030
|
+
}, [_vm.content ? _c('el-main', {
|
|
14031
|
+
directives: [{
|
|
14032
|
+
name: "loading",
|
|
14033
|
+
rawName: "v-loading",
|
|
14034
|
+
value: _vm.loading,
|
|
14035
|
+
expression: "loading"
|
|
14036
|
+
}],
|
|
14037
|
+
staticClass: "main"
|
|
14038
|
+
}, [_vm.content.title ? _c('div', {
|
|
14039
|
+
staticClass: "block"
|
|
14040
|
+
}, [_c('span', {
|
|
14041
|
+
staticClass: "title"
|
|
14042
|
+
}, [_vm._v(_vm._s(_vm.capitalise(_vm.content.title)))])]) : _c('div', {
|
|
14043
|
+
staticClass: "block"
|
|
14044
|
+
}, [_c('span', {
|
|
14045
|
+
staticClass: "title"
|
|
14046
|
+
}, [_vm._v(_vm._s(_vm.content.featureId))])]), _c('div', {
|
|
14047
|
+
staticClass: "content-container scrollbar"
|
|
14048
|
+
}, [_vm._v(" " + _vm._s(_vm.content.paths) + " "), this.origins ? _c('div', {
|
|
14049
|
+
staticClass: "block"
|
|
14050
|
+
}, [_c('div', [_c('span', {
|
|
14051
|
+
staticClass: "attribute-title"
|
|
14052
|
+
}, [_vm._v("Origin")]), _c('el-popover', {
|
|
14053
|
+
attrs: {
|
|
14054
|
+
"width": "250",
|
|
14055
|
+
"trigger": "hover",
|
|
14056
|
+
"append-to-body": false,
|
|
14057
|
+
"popper-class": "popover-origin-help"
|
|
14058
|
+
}
|
|
14059
|
+
}, [_c('i', {
|
|
14060
|
+
staticClass: "el-icon-warning-outline info",
|
|
14061
|
+
attrs: {
|
|
14062
|
+
"slot": "reference"
|
|
14063
|
+
},
|
|
14064
|
+
slot: "reference"
|
|
14065
|
+
}), _c('span', {
|
|
14066
|
+
staticStyle: {
|
|
14067
|
+
"word-break": "keep-all"
|
|
14068
|
+
}
|
|
14069
|
+
}, [_c('i', [_vm._v("Origin")]), _vm._v(" " + _vm._s(_vm.originDescription) + " ")])])], 1), _vm._l(_vm.origins, function (origin, i) {
|
|
14070
|
+
return _c('div', {
|
|
14071
|
+
key: origin,
|
|
14072
|
+
staticClass: "attribute-content"
|
|
14073
|
+
}, [_vm._v(" " + _vm._s(_vm.capitalise(origin)) + " "), i != _vm.origins.length - 1 ? _c('div', {
|
|
14074
|
+
staticClass: "seperator"
|
|
14075
|
+
}) : _vm._e()]);
|
|
14076
|
+
}), _c('el-button', {
|
|
14077
|
+
directives: [{
|
|
14078
|
+
name: "show",
|
|
14079
|
+
rawName: "v-show",
|
|
14080
|
+
value: _vm.originsWithDatasets.length > 0,
|
|
14081
|
+
expression: "originsWithDatasets.length > 0"
|
|
14082
|
+
}],
|
|
14083
|
+
staticClass: "button",
|
|
14084
|
+
on: {
|
|
14085
|
+
"click": _vm.openDendrites
|
|
14086
|
+
}
|
|
14087
|
+
}, [_vm._v(" Explore origin data ")])], 2) : _vm._e(), this.components ? _c('div', {
|
|
14088
|
+
staticClass: "block"
|
|
14089
|
+
}, [_c('div', {
|
|
14090
|
+
staticClass: "attribute-title"
|
|
14091
|
+
}, [_vm._v("Components")]), _vm._l(_vm.components, function (component, i) {
|
|
14092
|
+
return _c('div', {
|
|
14093
|
+
key: component,
|
|
14094
|
+
staticClass: "attribute-content"
|
|
14095
|
+
}, [_vm._v(" " + _vm._s(_vm.capitalise(component)) + " "), i != _vm.components.length - 1 ? _c('div', {
|
|
14096
|
+
staticClass: "seperator"
|
|
14097
|
+
}) : _vm._e()]);
|
|
14098
|
+
})], 2) : _vm._e(), this.destinations ? _c('div', {
|
|
14099
|
+
staticClass: "block"
|
|
14100
|
+
}, [_c('div', [_c('span', {
|
|
14101
|
+
staticClass: "attribute-title"
|
|
14102
|
+
}, [_vm._v("Destination")]), _c('el-popover', {
|
|
14103
|
+
attrs: {
|
|
14104
|
+
"width": "250",
|
|
14105
|
+
"trigger": "hover",
|
|
14106
|
+
"append-to-body": false,
|
|
14107
|
+
"popper-class": "popover-origin-help"
|
|
14108
|
+
}
|
|
14109
|
+
}, [_c('i', {
|
|
14110
|
+
staticClass: "el-icon-warning-outline info",
|
|
14111
|
+
attrs: {
|
|
14112
|
+
"slot": "reference"
|
|
14113
|
+
},
|
|
14114
|
+
slot: "reference"
|
|
14115
|
+
}), _c('span', {
|
|
14116
|
+
staticStyle: {
|
|
14117
|
+
"word-break": "keep-all"
|
|
14118
|
+
}
|
|
14119
|
+
}, [_c('i', [_vm._v("Destination")]), _vm._v(" is where the axons terminate ")])])], 1), _vm._l(_vm.destinations, function (destination, i) {
|
|
14120
|
+
return _c('div', {
|
|
14121
|
+
key: destination,
|
|
14122
|
+
staticClass: "attribute-content"
|
|
14123
|
+
}, [_vm._v(" " + _vm._s(_vm.capitalise(destination)) + " "), i != _vm.destinations.length - 1 ? _c('div', {
|
|
14124
|
+
staticClass: "seperator"
|
|
14125
|
+
}) : _vm._e()]);
|
|
14126
|
+
}), _c('el-button', {
|
|
14127
|
+
directives: [{
|
|
14128
|
+
name: "show",
|
|
14129
|
+
rawName: "v-show",
|
|
14130
|
+
value: _vm.destinationsWithDatasets.length > 0,
|
|
14131
|
+
expression: "destinationsWithDatasets.length > 0"
|
|
14132
|
+
}],
|
|
14133
|
+
staticClass: "button",
|
|
14134
|
+
on: {
|
|
14135
|
+
"click": _vm.openAxons
|
|
14136
|
+
}
|
|
14137
|
+
}, [_vm._v(" Explore destination data ")])], 2) : _vm._e(), _c('el-button', {
|
|
14138
|
+
directives: [{
|
|
14139
|
+
name: "show",
|
|
14140
|
+
rawName: "v-show",
|
|
14141
|
+
value: _vm.components.length > 0,
|
|
14142
|
+
expression: "components.length > 0"
|
|
14143
|
+
}],
|
|
14144
|
+
staticClass: "button",
|
|
14145
|
+
on: {
|
|
14146
|
+
"click": _vm.openAll
|
|
14147
|
+
}
|
|
14148
|
+
}, [_vm._v(" Search for data on components ")]), _vm.content.featureIds ? _c('pubmed-viewer', {
|
|
14149
|
+
directives: [{
|
|
14150
|
+
name: "show",
|
|
14151
|
+
rawName: "v-show",
|
|
14152
|
+
value: false,
|
|
14153
|
+
expression: "false"
|
|
14154
|
+
}],
|
|
14155
|
+
attrs: {
|
|
14156
|
+
"entry": _vm.content
|
|
14157
|
+
},
|
|
14158
|
+
on: {
|
|
14159
|
+
"pubmedSearchUrl": _vm.pubmedSearchUrlUpdate
|
|
14160
|
+
}
|
|
14161
|
+
}) : _vm._e(), _vm.pubmedSearchUrl != '' ? _c('el-button', {
|
|
14162
|
+
staticClass: "button",
|
|
14163
|
+
attrs: {
|
|
14164
|
+
"icon": "el-icon-notebook-2"
|
|
14165
|
+
},
|
|
14166
|
+
on: {
|
|
14167
|
+
"click": function click($event) {
|
|
14168
|
+
return _vm.openUrl(_vm.pubmedSearchUrl);
|
|
14169
|
+
}
|
|
14170
|
+
}
|
|
14171
|
+
}, [_vm._v(" Open publications in pubmed ")]) : _vm._e()], 1)]) : _vm._e()], 1);
|
|
14172
|
+
};
|
|
14173
|
+
var Tooltipvue_type_template_id_6d6dee76_scoped_true_staticRenderFns = [];
|
|
13472
14174
|
|
|
13473
14175
|
// CONCATENATED MODULE: ./src/components/Tooltip.vue?vue&type=template&id=6d6dee76&scoped=true&
|
|
13474
14176
|
|
|
@@ -13490,6 +14192,7 @@ function _iterableToArray(iter) {
|
|
|
13490
14192
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
13491
14193
|
}
|
|
13492
14194
|
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js
|
|
14195
|
+
|
|
13493
14196
|
function _nonIterableSpread() {
|
|
13494
14197
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
13495
14198
|
}
|
|
@@ -13539,9 +14242,18 @@ var lib_button_default = /*#__PURE__*/__webpack_require__.n(lib_button);
|
|
|
13539
14242
|
// EXTERNAL MODULE: external "core-js/modules/es.string.replace.js"
|
|
13540
14243
|
var es_string_replace_js_ = __webpack_require__("6378");
|
|
13541
14244
|
|
|
14245
|
+
// EXTERNAL MODULE: external "core-js/modules/es.json.stringify.js"
|
|
14246
|
+
var es_json_stringify_js_ = __webpack_require__("a9ee");
|
|
14247
|
+
|
|
14248
|
+
// EXTERNAL MODULE: external "core-js/modules/es.array.map.js"
|
|
14249
|
+
var es_array_map_js_ = __webpack_require__("4391");
|
|
14250
|
+
|
|
13542
14251
|
// EXTERNAL MODULE: external "core-js/modules/es.array.flat.js"
|
|
13543
14252
|
var es_array_flat_js_ = __webpack_require__("da6e");
|
|
13544
14253
|
|
|
14254
|
+
// EXTERNAL MODULE: external "core-js/modules/es.array.unscopables.flat.js"
|
|
14255
|
+
var es_array_unscopables_flat_js_ = __webpack_require__("722b");
|
|
14256
|
+
|
|
13545
14257
|
// EXTERNAL MODULE: external "core-js/modules/es.promise.js"
|
|
13546
14258
|
var es_promise_js_ = __webpack_require__("ec71");
|
|
13547
14259
|
|
|
@@ -13559,20 +14271,25 @@ var en_default = /*#__PURE__*/__webpack_require__.n(en);
|
|
|
13559
14271
|
var locale = __webpack_require__("4897");
|
|
13560
14272
|
var locale_default = /*#__PURE__*/__webpack_require__.n(locale);
|
|
13561
14273
|
|
|
13562
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13563
|
-
var PubmedViewervue_type_template_id_58832c92_scoped_true_render = function () {
|
|
13564
|
-
var
|
|
13565
|
-
|
|
14274
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e8f1c40a-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/PubmedViewer.vue?vue&type=template&id=58832c92&scoped=true&
|
|
14275
|
+
var PubmedViewervue_type_template_id_58832c92_scoped_true_render = function render() {
|
|
14276
|
+
var _vm = this,
|
|
14277
|
+
_c = _vm._self._c;
|
|
14278
|
+
return _c('div', {
|
|
14279
|
+
staticClass: "pubmed-container"
|
|
14280
|
+
});
|
|
14281
|
+
};
|
|
14282
|
+
var PubmedViewervue_type_template_id_58832c92_scoped_true_staticRenderFns = [];
|
|
13566
14283
|
|
|
13567
14284
|
// CONCATENATED MODULE: ./src/components/PubmedViewer.vue?vue&type=template&id=58832c92&scoped=true&
|
|
13568
14285
|
|
|
13569
|
-
// EXTERNAL MODULE: external "core-js/modules/web.url.js"
|
|
13570
|
-
var
|
|
14286
|
+
// EXTERNAL MODULE: external "core-js/modules/web.url-search-params.js"
|
|
14287
|
+
var web_url_search_params_js_ = __webpack_require__("712c");
|
|
13571
14288
|
|
|
13572
14289
|
// EXTERNAL MODULE: external "core-js/modules/es.regexp.to-string.js"
|
|
13573
14290
|
var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
13574
14291
|
|
|
13575
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--
|
|
14292
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/PubmedViewer.vue?vue&type=script&lang=js&
|
|
13576
14293
|
|
|
13577
14294
|
|
|
13578
14295
|
|
|
@@ -13583,16 +14300,8 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13583
14300
|
|
|
13584
14301
|
|
|
13585
14302
|
|
|
13586
|
-
|
|
13587
|
-
//
|
|
13588
|
-
//
|
|
13589
|
-
//
|
|
13590
|
-
//
|
|
13591
|
-
//
|
|
13592
|
-
//
|
|
13593
|
-
//
|
|
13594
|
-
|
|
13595
14303
|
/* eslint-disable no-alert, no-console */
|
|
14304
|
+
|
|
13596
14305
|
/* harmony default export */ var PubmedViewervue_type_script_lang_js_ = ({
|
|
13597
14306
|
name: "Tooltip",
|
|
13598
14307
|
props: {
|
|
@@ -13624,7 +14333,6 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13624
14333
|
},
|
|
13625
14334
|
buildPubmedSqlStatement: function buildPubmedSqlStatement(keastIds) {
|
|
13626
14335
|
var sql = 'select distinct publication from publications where entity in (';
|
|
13627
|
-
|
|
13628
14336
|
if (keastIds.length === 1) {
|
|
13629
14337
|
sql += "'".concat(keastIds[0], "')");
|
|
13630
14338
|
} else if (keastIds.length > 1) {
|
|
@@ -13632,7 +14340,6 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13632
14340
|
sql += "'".concat(keastIds[i], "'").concat(i >= keastIds.length - 1 ? ')' : ',', " ");
|
|
13633
14341
|
}
|
|
13634
14342
|
}
|
|
13635
|
-
|
|
13636
14343
|
return sql;
|
|
13637
14344
|
},
|
|
13638
14345
|
buildPubmedSqlStatementForModels: function buildPubmedSqlStatementForModels(model) {
|
|
@@ -13656,12 +14363,11 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13656
14363
|
},
|
|
13657
14364
|
pubmedQueryOnIds: function pubmedQueryOnIds(keastIds) {
|
|
13658
14365
|
var _this = this;
|
|
13659
|
-
|
|
13660
14366
|
if (!keastIds || keastIds.length === 0) return;
|
|
13661
14367
|
var sql = this.buildPubmedSqlStatement(keastIds);
|
|
13662
14368
|
this.flatmapQuery(sql).then(function (data) {
|
|
13663
|
-
_this.responseData = data;
|
|
13664
|
-
|
|
14369
|
+
_this.responseData = data;
|
|
14370
|
+
// Create pubmed url on paths if we have them
|
|
13665
14371
|
if (data.values.length > 0) {
|
|
13666
14372
|
_this.$emit('pubmedSearchUrl', _this.pubmedSearchUrl(data.values.map(function (id) {
|
|
13667
14373
|
return _this.stripPMIDPrefix(id[0]);
|
|
@@ -13674,7 +14380,6 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13674
14380
|
},
|
|
13675
14381
|
pubmedQueryOnModels: function pubmedQueryOnModels(source) {
|
|
13676
14382
|
var _this2 = this;
|
|
13677
|
-
|
|
13678
14383
|
this.flatmapQuery(this.buildPubmedSqlStatementForModels(source)).then(function (data) {
|
|
13679
14384
|
if (Array.isArray(data.values) && data.values.length > 0) {
|
|
13680
14385
|
_this2.$emit('pubmedSearchUrl', _this2.pubmedSearchUrl(data.values.map(function (id) {
|
|
@@ -13682,10 +14387,10 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13682
14387
|
})));
|
|
13683
14388
|
} else {
|
|
13684
14389
|
_this2.$emit('pubmedSearchUrl', ''); // Clears the pubmed search button
|
|
13685
|
-
|
|
13686
14390
|
}
|
|
13687
14391
|
});
|
|
13688
14392
|
},
|
|
14393
|
+
|
|
13689
14394
|
pubmedSearchUrl: function pubmedSearchUrl(ids) {
|
|
13690
14395
|
var url = 'https://pubmed.ncbi.nlm.nih.gov/?';
|
|
13691
14396
|
var params = new URLSearchParams();
|
|
@@ -13696,8 +14401,8 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13696
14401
|
});
|
|
13697
14402
|
// CONCATENATED MODULE: ./src/components/PubmedViewer.vue?vue&type=script&lang=js&
|
|
13698
14403
|
/* harmony default export */ var components_PubmedViewervue_type_script_lang_js_ = (PubmedViewervue_type_script_lang_js_);
|
|
13699
|
-
// EXTERNAL MODULE: ./src/components/PubmedViewer.vue?vue&type=style&index=0&id=58832c92&scoped=true&lang=scss&
|
|
13700
|
-
var
|
|
14404
|
+
// EXTERNAL MODULE: ./src/components/PubmedViewer.vue?vue&type=style&index=0&id=58832c92&prod&scoped=true&lang=scss&
|
|
14405
|
+
var PubmedViewervue_type_style_index_0_id_58832c92_prod_scoped_true_lang_scss_ = __webpack_require__("233b");
|
|
13701
14406
|
|
|
13702
14407
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
13703
14408
|
/* globals __VUE_SSR_CONTEXT__ */
|
|
@@ -13706,20 +14411,19 @@ var PubmedViewervue_type_style_index_0_id_58832c92_scoped_true_lang_scss_ = __we
|
|
|
13706
14411
|
// This module is a runtime utility for cleaner component module output and will
|
|
13707
14412
|
// be included in the final webpack user bundle.
|
|
13708
14413
|
|
|
13709
|
-
function normalizeComponent
|
|
14414
|
+
function normalizeComponent(
|
|
13710
14415
|
scriptExports,
|
|
13711
14416
|
render,
|
|
13712
14417
|
staticRenderFns,
|
|
13713
14418
|
functionalTemplate,
|
|
13714
14419
|
injectStyles,
|
|
13715
14420
|
scopeId,
|
|
13716
|
-
moduleIdentifier
|
|
14421
|
+
moduleIdentifier /* server only */,
|
|
13717
14422
|
shadowMode /* vue-cli only */
|
|
13718
14423
|
) {
|
|
13719
14424
|
// Vue.extend constructor export interop
|
|
13720
|
-
var options =
|
|
13721
|
-
? scriptExports.options
|
|
13722
|
-
: scriptExports
|
|
14425
|
+
var options =
|
|
14426
|
+
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
13723
14427
|
|
|
13724
14428
|
// render functions
|
|
13725
14429
|
if (render) {
|
|
@@ -13739,7 +14443,8 @@ function normalizeComponent (
|
|
|
13739
14443
|
}
|
|
13740
14444
|
|
|
13741
14445
|
var hook
|
|
13742
|
-
if (moduleIdentifier) {
|
|
14446
|
+
if (moduleIdentifier) {
|
|
14447
|
+
// server build
|
|
13743
14448
|
hook = function (context) {
|
|
13744
14449
|
// 2.3 injection
|
|
13745
14450
|
context =
|
|
@@ -13765,11 +14470,11 @@ function normalizeComponent (
|
|
|
13765
14470
|
} else if (injectStyles) {
|
|
13766
14471
|
hook = shadowMode
|
|
13767
14472
|
? function () {
|
|
13768
|
-
|
|
13769
|
-
|
|
13770
|
-
|
|
13771
|
-
|
|
13772
|
-
|
|
14473
|
+
injectStyles.call(
|
|
14474
|
+
this,
|
|
14475
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
14476
|
+
)
|
|
14477
|
+
}
|
|
13773
14478
|
: injectStyles
|
|
13774
14479
|
}
|
|
13775
14480
|
|
|
@@ -13780,16 +14485,14 @@ function normalizeComponent (
|
|
|
13780
14485
|
options._injectStyles = hook
|
|
13781
14486
|
// register for functional component in vue file
|
|
13782
14487
|
var originalRender = options.render
|
|
13783
|
-
options.render = function renderWithStyleInjection
|
|
14488
|
+
options.render = function renderWithStyleInjection(h, context) {
|
|
13784
14489
|
hook.call(context)
|
|
13785
14490
|
return originalRender(h, context)
|
|
13786
14491
|
}
|
|
13787
14492
|
} else {
|
|
13788
14493
|
// inject component registration as beforeCreate hook
|
|
13789
14494
|
var existing = options.beforeCreate
|
|
13790
|
-
options.beforeCreate = existing
|
|
13791
|
-
? [].concat(existing, hook)
|
|
13792
|
-
: [hook]
|
|
14495
|
+
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
13793
14496
|
}
|
|
13794
14497
|
}
|
|
13795
14498
|
|
|
@@ -13824,7 +14527,9 @@ var component = normalizeComponent(
|
|
|
13824
14527
|
|
|
13825
14528
|
var EventBus = new external_vue_default.a();
|
|
13826
14529
|
/* harmony default export */ var components_EventBus = (EventBus);
|
|
13827
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--
|
|
14530
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Tooltip.vue?vue&type=script&lang=js&
|
|
14531
|
+
|
|
14532
|
+
|
|
13828
14533
|
|
|
13829
14534
|
|
|
13830
14535
|
|
|
@@ -13858,86 +14563,6 @@ var EventBus = new external_vue_default.a();
|
|
|
13858
14563
|
|
|
13859
14564
|
|
|
13860
14565
|
|
|
13861
|
-
//
|
|
13862
|
-
//
|
|
13863
|
-
//
|
|
13864
|
-
//
|
|
13865
|
-
//
|
|
13866
|
-
//
|
|
13867
|
-
//
|
|
13868
|
-
//
|
|
13869
|
-
//
|
|
13870
|
-
//
|
|
13871
|
-
//
|
|
13872
|
-
//
|
|
13873
|
-
//
|
|
13874
|
-
//
|
|
13875
|
-
//
|
|
13876
|
-
//
|
|
13877
|
-
//
|
|
13878
|
-
//
|
|
13879
|
-
//
|
|
13880
|
-
//
|
|
13881
|
-
//
|
|
13882
|
-
//
|
|
13883
|
-
//
|
|
13884
|
-
//
|
|
13885
|
-
//
|
|
13886
|
-
//
|
|
13887
|
-
//
|
|
13888
|
-
//
|
|
13889
|
-
//
|
|
13890
|
-
//
|
|
13891
|
-
//
|
|
13892
|
-
//
|
|
13893
|
-
//
|
|
13894
|
-
//
|
|
13895
|
-
//
|
|
13896
|
-
//
|
|
13897
|
-
//
|
|
13898
|
-
//
|
|
13899
|
-
//
|
|
13900
|
-
//
|
|
13901
|
-
//
|
|
13902
|
-
//
|
|
13903
|
-
//
|
|
13904
|
-
//
|
|
13905
|
-
//
|
|
13906
|
-
//
|
|
13907
|
-
//
|
|
13908
|
-
//
|
|
13909
|
-
//
|
|
13910
|
-
//
|
|
13911
|
-
//
|
|
13912
|
-
//
|
|
13913
|
-
//
|
|
13914
|
-
//
|
|
13915
|
-
//
|
|
13916
|
-
//
|
|
13917
|
-
//
|
|
13918
|
-
//
|
|
13919
|
-
//
|
|
13920
|
-
//
|
|
13921
|
-
//
|
|
13922
|
-
//
|
|
13923
|
-
//
|
|
13924
|
-
//
|
|
13925
|
-
//
|
|
13926
|
-
//
|
|
13927
|
-
//
|
|
13928
|
-
//
|
|
13929
|
-
//
|
|
13930
|
-
//
|
|
13931
|
-
//
|
|
13932
|
-
//
|
|
13933
|
-
//
|
|
13934
|
-
//
|
|
13935
|
-
//
|
|
13936
|
-
//
|
|
13937
|
-
//
|
|
13938
|
-
//
|
|
13939
|
-
//
|
|
13940
|
-
//
|
|
13941
14566
|
|
|
13942
14567
|
/* eslint-disable no-alert, no-console */
|
|
13943
14568
|
|
|
@@ -13948,9 +14573,9 @@ external_vue_default.a.use(lib_button_default.a);
|
|
|
13948
14573
|
external_vue_default.a.use(lib_container_default.a);
|
|
13949
14574
|
external_vue_default.a.use(lib_header_default.a);
|
|
13950
14575
|
external_vue_default.a.use(lib_icon_default.a);
|
|
13951
|
-
external_vue_default.a.use(lib_main_default.a);
|
|
13952
|
-
|
|
14576
|
+
external_vue_default.a.use(lib_main_default.a);
|
|
13953
14577
|
|
|
14578
|
+
// pubmedviewer is currently not in use, but still under review so not ready to delete yet
|
|
13954
14579
|
|
|
13955
14580
|
|
|
13956
14581
|
var _titleCase = function titleCase(str) {
|
|
@@ -13958,14 +14583,13 @@ var _titleCase = function titleCase(str) {
|
|
|
13958
14583
|
return t.charAt(0).toUpperCase() + t.substr(1).toLowerCase();
|
|
13959
14584
|
});
|
|
13960
14585
|
};
|
|
13961
|
-
|
|
13962
14586
|
var inArray = function inArray(ar1, ar2) {
|
|
13963
14587
|
var as1 = JSON.stringify(ar1);
|
|
13964
14588
|
var as2 = JSON.stringify(ar2);
|
|
13965
14589
|
return as1.indexOf(as2) !== -1;
|
|
13966
|
-
};
|
|
13967
|
-
|
|
14590
|
+
};
|
|
13968
14591
|
|
|
14592
|
+
// remove duplicates by stringifying the objects
|
|
13969
14593
|
var Tooltipvue_type_script_lang_js_removeDuplicates = function removeDuplicates(arrayOfAnything) {
|
|
13970
14594
|
return _toConsumableArray(new Set(arrayOfAnything.map(function (e) {
|
|
13971
14595
|
return JSON.stringify(e);
|
|
@@ -13973,12 +14597,10 @@ var Tooltipvue_type_script_lang_js_removeDuplicates = function removeDuplicates(
|
|
|
13973
14597
|
return JSON.parse(e);
|
|
13974
14598
|
});
|
|
13975
14599
|
};
|
|
13976
|
-
|
|
13977
14600
|
var _capitalise = function capitalise(str) {
|
|
13978
14601
|
if (str) return str.charAt(0).toUpperCase() + str.slice(1);
|
|
13979
14602
|
return "";
|
|
13980
14603
|
};
|
|
13981
|
-
|
|
13982
14604
|
/* harmony default export */ var Tooltipvue_type_script_lang_js_ = ({
|
|
13983
14605
|
components: {
|
|
13984
14606
|
PubmedViewer: PubmedViewer
|
|
@@ -14079,10 +14701,7 @@ var _capitalise = function capitalise(str) {
|
|
|
14079
14701
|
},
|
|
14080
14702
|
findAllIdsFromConnectivity: function findAllIdsFromConnectivity(connectivity) {
|
|
14081
14703
|
var dnodes = connectivity.connectivity.flat(); // get nodes from edgelist
|
|
14082
|
-
|
|
14083
14704
|
var nodes = _toConsumableArray(new Set(dnodes)); // remove duplicates
|
|
14084
|
-
|
|
14085
|
-
|
|
14086
14705
|
var found = [];
|
|
14087
14706
|
nodes.forEach(function (n) {
|
|
14088
14707
|
if (Array.isArray(n)) {
|
|
@@ -14095,10 +14714,7 @@ var _capitalise = function capitalise(str) {
|
|
|
14095
14714
|
},
|
|
14096
14715
|
flattenConntectivity: function flattenConntectivity(connectivity) {
|
|
14097
14716
|
var dnodes = connectivity.flat(); // get nodes from edgelist
|
|
14098
|
-
|
|
14099
14717
|
var nodes = _toConsumableArray(new Set(dnodes)); // remove duplicates
|
|
14100
|
-
|
|
14101
|
-
|
|
14102
14718
|
var found = [];
|
|
14103
14719
|
nodes.forEach(function (n) {
|
|
14104
14720
|
if (Array.isArray(n)) {
|
|
@@ -14111,21 +14727,18 @@ var _capitalise = function capitalise(str) {
|
|
|
14111
14727
|
},
|
|
14112
14728
|
findComponents: function findComponents(connectivity) {
|
|
14113
14729
|
var dnodes = connectivity.connectivity.flat(); // get nodes from edgelist
|
|
14114
|
-
|
|
14115
14730
|
var nodes = Tooltipvue_type_script_lang_js_removeDuplicates(dnodes);
|
|
14116
14731
|
var found = [];
|
|
14117
14732
|
var terminal = false;
|
|
14118
14733
|
nodes.forEach(function (node) {
|
|
14119
|
-
terminal = false;
|
|
14120
|
-
|
|
14734
|
+
terminal = false;
|
|
14735
|
+
// Check if the node is an destination or origin (note that they are labelled dendrite and axon as opposed to origin and destination)
|
|
14121
14736
|
if (inArray(connectivity.axons, node)) {
|
|
14122
14737
|
terminal = true;
|
|
14123
14738
|
}
|
|
14124
|
-
|
|
14125
14739
|
if (inArray(connectivity.dendrites, node)) {
|
|
14126
14740
|
terminal = true;
|
|
14127
14741
|
}
|
|
14128
|
-
|
|
14129
14742
|
if (!terminal) {
|
|
14130
14743
|
found.push(node);
|
|
14131
14744
|
}
|
|
@@ -14134,7 +14747,6 @@ var _capitalise = function capitalise(str) {
|
|
|
14134
14747
|
},
|
|
14135
14748
|
getOrganCuries: function getOrganCuries() {
|
|
14136
14749
|
var _this = this;
|
|
14137
|
-
|
|
14138
14750
|
fetch("".concat(this.sparcAPI, "get-organ-curies/")).then(function (response) {
|
|
14139
14751
|
return response.json();
|
|
14140
14752
|
}).then(function (data) {
|
|
@@ -14143,7 +14755,6 @@ var _capitalise = function capitalise(str) {
|
|
|
14143
14755
|
},
|
|
14144
14756
|
buildConnectivitySqlStatement: function buildConnectivitySqlStatement(keastIds) {
|
|
14145
14757
|
var sql = 'select knowledge from knowledge where entity in (';
|
|
14146
|
-
|
|
14147
14758
|
if (keastIds.length === 1) {
|
|
14148
14759
|
sql += "'".concat(keastIds[0], "')");
|
|
14149
14760
|
} else if (keastIds.length > 1) {
|
|
@@ -14151,12 +14762,10 @@ var _capitalise = function capitalise(str) {
|
|
|
14151
14762
|
sql += "'".concat(keastIds[i], "'").concat(i >= keastIds.length - 1 ? ')' : ',', " ");
|
|
14152
14763
|
}
|
|
14153
14764
|
}
|
|
14154
|
-
|
|
14155
14765
|
return sql;
|
|
14156
14766
|
},
|
|
14157
14767
|
buildLabelSqlStatement: function buildLabelSqlStatement(uberons) {
|
|
14158
14768
|
var sql = 'select entity, label from labels where entity in (';
|
|
14159
|
-
|
|
14160
14769
|
if (uberons.length === 1) {
|
|
14161
14770
|
sql += "'".concat(uberons[0], "')");
|
|
14162
14771
|
} else if (uberons.length > 1) {
|
|
@@ -14164,12 +14773,10 @@ var _capitalise = function capitalise(str) {
|
|
|
14164
14773
|
sql += "'".concat(uberons[i], "'").concat(i >= uberons.length - 1 ? ')' : ',', " ");
|
|
14165
14774
|
}
|
|
14166
14775
|
}
|
|
14167
|
-
|
|
14168
14776
|
return sql;
|
|
14169
14777
|
},
|
|
14170
14778
|
createLabelLookup: function createLabelLookup(uberons) {
|
|
14171
14779
|
var _this2 = this;
|
|
14172
|
-
|
|
14173
14780
|
return new Promise(function (resolve) {
|
|
14174
14781
|
var uberonMap = {};
|
|
14175
14782
|
var data = {
|
|
@@ -14186,24 +14793,20 @@ var _capitalise = function capitalise(str) {
|
|
|
14186
14793
|
}).then(function (payload) {
|
|
14187
14794
|
var entity = payload.keys.indexOf("entity");
|
|
14188
14795
|
var label = payload.keys.indexOf("label");
|
|
14189
|
-
|
|
14190
14796
|
if (entity > -1 && label > -1) {
|
|
14191
14797
|
payload.values.forEach(function (pair) {
|
|
14192
14798
|
uberonMap[pair[entity]] = pair[label];
|
|
14193
14799
|
});
|
|
14194
14800
|
}
|
|
14195
|
-
|
|
14196
14801
|
resolve(uberonMap);
|
|
14197
14802
|
});
|
|
14198
14803
|
});
|
|
14199
14804
|
},
|
|
14200
14805
|
createComponentsLabelList: function createComponentsLabelList(components, lookUp) {
|
|
14201
14806
|
var _this3 = this;
|
|
14202
|
-
|
|
14203
14807
|
var labelList = [];
|
|
14204
14808
|
components.forEach(function (n) {
|
|
14205
14809
|
labelList.push(_this3.createLabelFromNeuralNode(n[0]), lookUp);
|
|
14206
|
-
|
|
14207
14810
|
if (n.length === 2) {
|
|
14208
14811
|
labelList.push(_this3.createLabelFromNeuralNode(n[1]), lookUp);
|
|
14209
14812
|
}
|
|
@@ -14212,7 +14815,6 @@ var _capitalise = function capitalise(str) {
|
|
|
14212
14815
|
},
|
|
14213
14816
|
createLabelFromNeuralNode: function createLabelFromNeuralNode(node, lookUp) {
|
|
14214
14817
|
var label = lookUp[node[0]];
|
|
14215
|
-
|
|
14216
14818
|
if (node.length === 2 && node[1].length > 0) {
|
|
14217
14819
|
node[1].forEach(function (n) {
|
|
14218
14820
|
if (lookUp[n] == undefined) {
|
|
@@ -14222,20 +14824,21 @@ var _capitalise = function capitalise(str) {
|
|
|
14222
14824
|
}
|
|
14223
14825
|
});
|
|
14224
14826
|
}
|
|
14225
|
-
|
|
14226
14827
|
return label;
|
|
14227
14828
|
},
|
|
14228
14829
|
processConnectivity: function processConnectivity(connectivity) {
|
|
14229
14830
|
var _this4 = this;
|
|
14230
|
-
|
|
14231
14831
|
// Filter the origin and destinations from components
|
|
14232
|
-
var components = this.findComponents(connectivity);
|
|
14832
|
+
var components = this.findComponents(connectivity);
|
|
14233
14833
|
|
|
14834
|
+
// Remove duplicates
|
|
14234
14835
|
var axons = Tooltipvue_type_script_lang_js_removeDuplicates(connectivity.axons);
|
|
14235
|
-
var dendrites = Tooltipvue_type_script_lang_js_removeDuplicates(connectivity.dendrites);
|
|
14836
|
+
var dendrites = Tooltipvue_type_script_lang_js_removeDuplicates(connectivity.dendrites);
|
|
14236
14837
|
|
|
14237
|
-
|
|
14838
|
+
// Create list of ids to get labels for
|
|
14839
|
+
var conIds = this.findAllIdsFromConnectivity(connectivity);
|
|
14238
14840
|
|
|
14841
|
+
// Create readable labels from the nodes. Setting this to 'this.origins' updates the display
|
|
14239
14842
|
this.createLabelLookup(conIds).then(function (lookUp) {
|
|
14240
14843
|
_this4.destinations = axons.map(function (a) {
|
|
14241
14844
|
return _this4.createLabelFromNeuralNode(a, lookUp);
|
|
@@ -14253,8 +14856,9 @@ var _capitalise = function capitalise(str) {
|
|
|
14253
14856
|
// process the nodes for finding datasets (Note this is not critical to the tooltip, only for the 'search on components' button)
|
|
14254
14857
|
var componentsFlat = this.flattenConntectivity(components);
|
|
14255
14858
|
var axonsFlat = this.flattenConntectivity(axons);
|
|
14256
|
-
var dendritesFlat = this.flattenConntectivity(dendrites);
|
|
14859
|
+
var dendritesFlat = this.flattenConntectivity(dendrites);
|
|
14257
14860
|
|
|
14861
|
+
// Filter for the anatomy which is annotated on datasets
|
|
14258
14862
|
this.destinationsWithDatasets = this.uberons.filter(function (ub) {
|
|
14259
14863
|
return axonsFlat.indexOf(ub.id) !== -1;
|
|
14260
14864
|
});
|
|
@@ -14267,7 +14871,6 @@ var _capitalise = function capitalise(str) {
|
|
|
14267
14871
|
},
|
|
14268
14872
|
pathwayQuery: function pathwayQuery(keastIds) {
|
|
14269
14873
|
var _this5 = this;
|
|
14270
|
-
|
|
14271
14874
|
this.destinations = [];
|
|
14272
14875
|
this.origins = [];
|
|
14273
14876
|
this.components = [];
|
|
@@ -14286,9 +14889,7 @@ var _capitalise = function capitalise(str) {
|
|
|
14286
14889
|
return response.json();
|
|
14287
14890
|
}).then(function (data) {
|
|
14288
14891
|
var connectivity = JSON.parse(data.values[0][0]);
|
|
14289
|
-
|
|
14290
14892
|
_this5.processConnectivity(connectivity);
|
|
14291
|
-
|
|
14292
14893
|
_this5.loading = false;
|
|
14293
14894
|
}).catch(function (error) {
|
|
14294
14895
|
console.error('Error:', error);
|
|
@@ -14298,8 +14899,8 @@ var _capitalise = function capitalise(str) {
|
|
|
14298
14899
|
});
|
|
14299
14900
|
// CONCATENATED MODULE: ./src/components/Tooltip.vue?vue&type=script&lang=js&
|
|
14300
14901
|
/* harmony default export */ var components_Tooltipvue_type_script_lang_js_ = (Tooltipvue_type_script_lang_js_);
|
|
14301
|
-
// EXTERNAL MODULE: ./src/components/Tooltip.vue?vue&type=style&index=0&id=6d6dee76&scoped=true&lang=scss&
|
|
14302
|
-
var
|
|
14902
|
+
// EXTERNAL MODULE: ./src/components/Tooltip.vue?vue&type=style&index=0&id=6d6dee76&prod&scoped=true&lang=scss&
|
|
14903
|
+
var Tooltipvue_type_style_index_0_id_6d6dee76_prod_scoped_true_lang_scss_ = __webpack_require__("b64b");
|
|
14303
14904
|
|
|
14304
14905
|
// CONCATENATED MODULE: ./src/components/Tooltip.vue
|
|
14305
14906
|
|
|
@@ -14322,48 +14923,227 @@ var Tooltip_component = normalizeComponent(
|
|
|
14322
14923
|
)
|
|
14323
14924
|
|
|
14324
14925
|
/* harmony default export */ var Tooltip = (Tooltip_component.exports);
|
|
14325
|
-
//
|
|
14326
|
-
var
|
|
14926
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e8f1c40a-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/SelectionsGroup.vue?vue&type=template&id=f6ac6e34&scoped=true&
|
|
14927
|
+
var SelectionsGroupvue_type_template_id_f6ac6e34_scoped_true_render = function render() {
|
|
14928
|
+
var _vm = this,
|
|
14929
|
+
_c = _vm._self._c;
|
|
14930
|
+
return _c('div', {
|
|
14931
|
+
staticClass: "selections-container"
|
|
14932
|
+
}, [_c('el-row', [_c('el-col', {
|
|
14933
|
+
attrs: {
|
|
14934
|
+
"span": 12
|
|
14935
|
+
}
|
|
14936
|
+
}, [_c('div', {
|
|
14937
|
+
staticClass: "checkall-display-text"
|
|
14938
|
+
}, [_vm._v(_vm._s(_vm.title))])]), _c('el-col', {
|
|
14939
|
+
attrs: {
|
|
14940
|
+
"span": 12
|
|
14941
|
+
}
|
|
14942
|
+
}, [_vm.selections && _vm.selections.length > 1 ? _c('el-checkbox', {
|
|
14943
|
+
staticClass: "all-checkbox",
|
|
14944
|
+
attrs: {
|
|
14945
|
+
"indeterminate": _vm.isIndeterminate
|
|
14946
|
+
},
|
|
14947
|
+
on: {
|
|
14948
|
+
"change": _vm.handleCheckAllChange
|
|
14949
|
+
},
|
|
14950
|
+
model: {
|
|
14951
|
+
value: _vm.checkAll,
|
|
14952
|
+
callback: function callback($$v) {
|
|
14953
|
+
_vm.checkAll = $$v;
|
|
14954
|
+
},
|
|
14955
|
+
expression: "checkAll"
|
|
14956
|
+
}
|
|
14957
|
+
}, [_vm._v("Display all")]) : _vm._e()], 1)], 1), _c('el-checkbox-group', {
|
|
14958
|
+
staticClass: "checkbox-group",
|
|
14959
|
+
attrs: {
|
|
14960
|
+
"size": "small"
|
|
14961
|
+
},
|
|
14962
|
+
on: {
|
|
14963
|
+
"change": _vm.handleCheckedItemsChange
|
|
14964
|
+
},
|
|
14965
|
+
model: {
|
|
14966
|
+
value: _vm.checkedItems,
|
|
14967
|
+
callback: function callback($$v) {
|
|
14968
|
+
_vm.checkedItems = $$v;
|
|
14969
|
+
},
|
|
14970
|
+
expression: "checkedItems"
|
|
14971
|
+
}
|
|
14972
|
+
}, [_c('div', {
|
|
14973
|
+
staticClass: "checkbox-group-inner"
|
|
14974
|
+
}, _vm._l(_vm.selections, function (item) {
|
|
14975
|
+
return _c('el-row', {
|
|
14976
|
+
key: item[_vm.identifierKey],
|
|
14977
|
+
attrs: {
|
|
14978
|
+
"label": item[_vm.identifierKey]
|
|
14979
|
+
}
|
|
14980
|
+
}, [_c('div', {
|
|
14981
|
+
staticClass: "checkbox-container"
|
|
14982
|
+
}, [_c('el-checkbox', {
|
|
14983
|
+
staticClass: "my-checkbox",
|
|
14984
|
+
attrs: {
|
|
14985
|
+
"label": item[_vm.identifierKey],
|
|
14986
|
+
"checked": !('enable' in item && item.enable === false)
|
|
14987
|
+
},
|
|
14988
|
+
on: {
|
|
14989
|
+
"change": function change($event) {
|
|
14990
|
+
return _vm.visibilityToggle(item[_vm.identifierKey], $event);
|
|
14991
|
+
}
|
|
14992
|
+
}
|
|
14993
|
+
}, [_c('div', {
|
|
14994
|
+
staticClass: "path-visual",
|
|
14995
|
+
style: _vm.getVisualStyles(item)
|
|
14996
|
+
}), _vm._v(" " + _vm._s(item[_vm.labelKey]) + " ")])], 1)]);
|
|
14997
|
+
}), 1)])], 1);
|
|
14998
|
+
};
|
|
14999
|
+
var SelectionsGroupvue_type_template_id_f6ac6e34_scoped_true_staticRenderFns = [];
|
|
15000
|
+
|
|
15001
|
+
// CONCATENATED MODULE: ./src/components/SelectionsGroup.vue?vue&type=template&id=f6ac6e34&scoped=true&
|
|
15002
|
+
|
|
15003
|
+
// EXTERNAL MODULE: ./node_modules/element-ui/lib/theme-chalk/checkbox-group.css
|
|
15004
|
+
var checkbox_group = __webpack_require__("d4df");
|
|
14327
15005
|
|
|
14328
|
-
//
|
|
14329
|
-
var
|
|
14330
|
-
var
|
|
15006
|
+
// EXTERNAL MODULE: ./node_modules/element-ui/lib/checkbox-group.js
|
|
15007
|
+
var lib_checkbox_group = __webpack_require__("7fc1");
|
|
15008
|
+
var lib_checkbox_group_default = /*#__PURE__*/__webpack_require__.n(lib_checkbox_group);
|
|
14331
15009
|
|
|
15010
|
+
// EXTERNAL MODULE: ./node_modules/element-ui/lib/theme-chalk/checkbox.css
|
|
15011
|
+
var theme_chalk_checkbox = __webpack_require__("560b");
|
|
14332
15012
|
|
|
14333
|
-
//
|
|
15013
|
+
// EXTERNAL MODULE: ./node_modules/element-ui/lib/checkbox.js
|
|
15014
|
+
var lib_checkbox = __webpack_require__("dcdc");
|
|
15015
|
+
var lib_checkbox_default = /*#__PURE__*/__webpack_require__.n(lib_checkbox);
|
|
14334
15016
|
|
|
14335
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--
|
|
14336
|
-
|
|
14337
|
-
|
|
14338
|
-
|
|
14339
|
-
|
|
14340
|
-
|
|
14341
|
-
|
|
14342
|
-
|
|
14343
|
-
|
|
14344
|
-
|
|
14345
|
-
|
|
14346
|
-
|
|
14347
|
-
|
|
14348
|
-
|
|
14349
|
-
|
|
14350
|
-
|
|
14351
|
-
|
|
14352
|
-
|
|
14353
|
-
|
|
14354
|
-
|
|
14355
|
-
|
|
14356
|
-
|
|
14357
|
-
|
|
14358
|
-
|
|
14359
|
-
|
|
15017
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/SelectionsGroup.vue?vue&type=script&lang=js&
|
|
15018
|
+
|
|
15019
|
+
|
|
15020
|
+
|
|
15021
|
+
|
|
15022
|
+
|
|
15023
|
+
|
|
15024
|
+
|
|
15025
|
+
|
|
15026
|
+
|
|
15027
|
+
|
|
15028
|
+
|
|
15029
|
+
|
|
15030
|
+
|
|
15031
|
+
|
|
15032
|
+
|
|
15033
|
+
|
|
15034
|
+
|
|
15035
|
+
/* eslint-disable no-alert, no-console */
|
|
15036
|
+
|
|
15037
|
+
|
|
15038
|
+
|
|
15039
|
+
locale_default.a.use(en_default.a);
|
|
15040
|
+
external_vue_default.a.use(lib_checkbox_default.a);
|
|
15041
|
+
external_vue_default.a.use(lib_checkbox_group_default.a);
|
|
15042
|
+
external_vue_default.a.use(lib_col_default.a);
|
|
15043
|
+
external_vue_default.a.use(lib_row_default.a);
|
|
15044
|
+
/* harmony default export */ var SelectionsGroupvue_type_script_lang_js_ = ({
|
|
15045
|
+
name: "SelectionsGroup",
|
|
15046
|
+
methods: {
|
|
15047
|
+
/**
|
|
15048
|
+
* Function to toggle paths to default.
|
|
15049
|
+
* Also called when the associated button is pressed.
|
|
15050
|
+
*/
|
|
15051
|
+
reset: function reset() {
|
|
15052
|
+
var _this = this;
|
|
15053
|
+
this.checkAll = true;
|
|
15054
|
+
this.checkedItems = [];
|
|
15055
|
+
this.selections.forEach(function (item) {
|
|
15056
|
+
if (!('enable' in item && item.enable === false)) {
|
|
15057
|
+
_this.checkedItems.push(item[_this.identifierKey]);
|
|
15058
|
+
} else {
|
|
15059
|
+
_this.checkAll = false;
|
|
15060
|
+
}
|
|
15061
|
+
});
|
|
15062
|
+
},
|
|
15063
|
+
visibilityToggle: function visibilityToggle(key, value) {
|
|
15064
|
+
this.$emit("changed", {
|
|
15065
|
+
key: key,
|
|
15066
|
+
value: value
|
|
15067
|
+
});
|
|
15068
|
+
},
|
|
15069
|
+
handleCheckedItemsChange: function handleCheckedItemsChange(value) {
|
|
15070
|
+
var checkedCount = value.length;
|
|
15071
|
+
this.checkAll = checkedCount === this.selections.length;
|
|
15072
|
+
},
|
|
15073
|
+
handleCheckAllChange: function handleCheckAllChange(val) {
|
|
15074
|
+
var _this2 = this;
|
|
15075
|
+
this.checkedItems = val ? this.selections.map(function (a) {
|
|
15076
|
+
return a[_this2.identifierKey];
|
|
15077
|
+
}) : [];
|
|
15078
|
+
this.$emit("checkAll", {
|
|
15079
|
+
keys: this.selections.map(function (a) {
|
|
15080
|
+
return a[_this2.identifierKey];
|
|
15081
|
+
}),
|
|
15082
|
+
value: val
|
|
15083
|
+
});
|
|
15084
|
+
},
|
|
15085
|
+
getVisualStyles: function getVisualStyles(item) {
|
|
15086
|
+
if ('colour' in item) {
|
|
15087
|
+
if ('dashed' in item && item.dashed === true) {
|
|
15088
|
+
var background = "repeating-linear-gradient(90deg,".concat(item.colour, ",").concat(item.colour, " 6px,transparent 0,transparent 9px)");
|
|
15089
|
+
return {
|
|
15090
|
+
'background': background
|
|
15091
|
+
};
|
|
15092
|
+
} else {
|
|
15093
|
+
var _background = item.colour;
|
|
15094
|
+
return {
|
|
15095
|
+
background: _background
|
|
15096
|
+
};
|
|
15097
|
+
}
|
|
15098
|
+
}
|
|
15099
|
+
return {};
|
|
15100
|
+
}
|
|
15101
|
+
},
|
|
15102
|
+
props: {
|
|
15103
|
+
identifierKey: {
|
|
15104
|
+
type: String,
|
|
15105
|
+
default: "id"
|
|
15106
|
+
},
|
|
15107
|
+
labelKey: {
|
|
15108
|
+
type: String,
|
|
15109
|
+
default: "label"
|
|
15110
|
+
},
|
|
15111
|
+
title: {
|
|
15112
|
+
type: String,
|
|
15113
|
+
default: ""
|
|
15114
|
+
},
|
|
15115
|
+
selections: {
|
|
15116
|
+
type: Array,
|
|
15117
|
+
default: function _default() {
|
|
15118
|
+
return [];
|
|
15119
|
+
}
|
|
15120
|
+
}
|
|
15121
|
+
},
|
|
15122
|
+
computed: {
|
|
15123
|
+
isIndeterminate: function isIndeterminate() {
|
|
15124
|
+
var count = this.checkedItems.length;
|
|
15125
|
+
if (count === 0 || this.checkAll) {
|
|
15126
|
+
return false;
|
|
15127
|
+
}
|
|
15128
|
+
return true;
|
|
15129
|
+
}
|
|
15130
|
+
},
|
|
15131
|
+
data: function data() {
|
|
15132
|
+
return {
|
|
15133
|
+
checkedItems: [],
|
|
15134
|
+
checkAll: true
|
|
15135
|
+
};
|
|
15136
|
+
},
|
|
15137
|
+
mounted: function mounted() {
|
|
15138
|
+
this.reset();
|
|
15139
|
+
}
|
|
14360
15140
|
});
|
|
14361
|
-
// CONCATENATED MODULE: ./src/components/
|
|
14362
|
-
/* harmony default export */ var
|
|
14363
|
-
// EXTERNAL MODULE: ./src/components/
|
|
14364
|
-
var
|
|
15141
|
+
// CONCATENATED MODULE: ./src/components/SelectionsGroup.vue?vue&type=script&lang=js&
|
|
15142
|
+
/* harmony default export */ var components_SelectionsGroupvue_type_script_lang_js_ = (SelectionsGroupvue_type_script_lang_js_);
|
|
15143
|
+
// EXTERNAL MODULE: ./src/components/SelectionsGroup.vue?vue&type=style&index=0&id=f6ac6e34&prod&scoped=true&lang=scss&
|
|
15144
|
+
var SelectionsGroupvue_type_style_index_0_id_f6ac6e34_prod_scoped_true_lang_scss_ = __webpack_require__("a79a");
|
|
14365
15145
|
|
|
14366
|
-
// CONCATENATED MODULE: ./src/components/
|
|
15146
|
+
// CONCATENATED MODULE: ./src/components/SelectionsGroup.vue
|
|
14367
15147
|
|
|
14368
15148
|
|
|
14369
15149
|
|
|
@@ -14372,24 +15152,56 @@ var Legendsvue_type_style_index_0_id_514dd6be_scoped_true_lang_scss_ = __webpack
|
|
|
14372
15152
|
|
|
14373
15153
|
/* normalize component */
|
|
14374
15154
|
|
|
14375
|
-
var
|
|
14376
|
-
|
|
14377
|
-
|
|
14378
|
-
|
|
15155
|
+
var SelectionsGroup_component = normalizeComponent(
|
|
15156
|
+
components_SelectionsGroupvue_type_script_lang_js_,
|
|
15157
|
+
SelectionsGroupvue_type_template_id_f6ac6e34_scoped_true_render,
|
|
15158
|
+
SelectionsGroupvue_type_template_id_f6ac6e34_scoped_true_staticRenderFns,
|
|
14379
15159
|
false,
|
|
14380
15160
|
null,
|
|
14381
|
-
"
|
|
15161
|
+
"f6ac6e34",
|
|
14382
15162
|
null
|
|
14383
15163
|
|
|
14384
15164
|
)
|
|
14385
15165
|
|
|
14386
|
-
/* harmony default export */ var
|
|
14387
|
-
//
|
|
14388
|
-
|
|
14389
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FlatmapVuer.vue?vue&type=script&lang=js&
|
|
15166
|
+
/* harmony default export */ var SelectionsGroup = (SelectionsGroup_component.exports);
|
|
15167
|
+
// EXTERNAL MODULE: external "@abi-software/svg-sprite"
|
|
15168
|
+
var svg_sprite_ = __webpack_require__("429c");
|
|
14390
15169
|
|
|
15170
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e8f1c40a-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/legends/DynamicLegends.vue?vue&type=template&id=7ea6eb51&scoped=true&
|
|
15171
|
+
var DynamicLegendsvue_type_template_id_7ea6eb51_scoped_true_render = function render() {
|
|
15172
|
+
var _vm = this,
|
|
15173
|
+
_c = _vm._self._c;
|
|
15174
|
+
return _c('div', [_c('el-row', [_c('el-col', {
|
|
15175
|
+
attrs: {
|
|
15176
|
+
"span": 12
|
|
15177
|
+
}
|
|
15178
|
+
}, [_c('div', {
|
|
15179
|
+
staticClass: "title-display-text"
|
|
15180
|
+
}, [_vm._v(_vm._s(_vm.title))])])], 1), _c('div', {
|
|
15181
|
+
staticClass: "legends-group"
|
|
15182
|
+
}, _vm._l(_vm.lists, function (item) {
|
|
15183
|
+
return _c('el-row', {
|
|
15184
|
+
key: item[_vm.identifierKey],
|
|
15185
|
+
attrs: {
|
|
15186
|
+
"label": item[_vm.identifierKey]
|
|
15187
|
+
}
|
|
15188
|
+
}, [_c('div', {
|
|
15189
|
+
staticClass: "legends-container"
|
|
15190
|
+
}, [_c('div', {
|
|
15191
|
+
staticClass: "legends-visual",
|
|
15192
|
+
style: {
|
|
15193
|
+
background: item[_vm.colourKey]
|
|
15194
|
+
}
|
|
15195
|
+
}), _c('div', {
|
|
15196
|
+
staticClass: "label"
|
|
15197
|
+
}, [_vm._v(" " + _vm._s(_vm.capitalise(item[_vm.identifierKey])) + " ")])])]);
|
|
15198
|
+
}), 1)], 1);
|
|
15199
|
+
};
|
|
15200
|
+
var DynamicLegendsvue_type_template_id_7ea6eb51_scoped_true_staticRenderFns = [];
|
|
14391
15201
|
|
|
15202
|
+
// CONCATENATED MODULE: ./src/components/legends/DynamicLegends.vue?vue&type=template&id=7ea6eb51&scoped=true&
|
|
14392
15203
|
|
|
15204
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/legends/DynamicLegends.vue?vue&type=script&lang=js&
|
|
14393
15205
|
|
|
14394
15206
|
|
|
14395
15207
|
|
|
@@ -14397,6 +15209,186 @@ var Legends_component = normalizeComponent(
|
|
|
14397
15209
|
|
|
14398
15210
|
|
|
14399
15211
|
|
|
15212
|
+
/* eslint-disable no-alert, no-console */
|
|
15213
|
+
|
|
15214
|
+
|
|
15215
|
+
|
|
15216
|
+
locale_default.a.use(en_default.a);
|
|
15217
|
+
external_vue_default.a.use(lib_col_default.a);
|
|
15218
|
+
external_vue_default.a.use(lib_row_default.a);
|
|
15219
|
+
/* harmony default export */ var DynamicLegendsvue_type_script_lang_js_ = ({
|
|
15220
|
+
name: "DynamicLegends",
|
|
15221
|
+
props: {
|
|
15222
|
+
identifierKey: {
|
|
15223
|
+
type: String,
|
|
15224
|
+
default: "id"
|
|
15225
|
+
},
|
|
15226
|
+
colourKey: {
|
|
15227
|
+
type: String,
|
|
15228
|
+
default: "colour"
|
|
15229
|
+
},
|
|
15230
|
+
title: {
|
|
15231
|
+
type: String,
|
|
15232
|
+
default: ""
|
|
15233
|
+
},
|
|
15234
|
+
lists: {
|
|
15235
|
+
type: Array,
|
|
15236
|
+
default: function _default() {
|
|
15237
|
+
return [];
|
|
15238
|
+
}
|
|
15239
|
+
}
|
|
15240
|
+
},
|
|
15241
|
+
methods: {
|
|
15242
|
+
capitalise: function capitalise(label) {
|
|
15243
|
+
return label.charAt(0).toUpperCase() + label.slice(1).toLowerCase();
|
|
15244
|
+
}
|
|
15245
|
+
}
|
|
15246
|
+
});
|
|
15247
|
+
// CONCATENATED MODULE: ./src/components/legends/DynamicLegends.vue?vue&type=script&lang=js&
|
|
15248
|
+
/* harmony default export */ var legends_DynamicLegendsvue_type_script_lang_js_ = (DynamicLegendsvue_type_script_lang_js_);
|
|
15249
|
+
// EXTERNAL MODULE: ./src/components/legends/DynamicLegends.vue?vue&type=style&index=0&id=7ea6eb51&prod&scoped=true&lang=scss&
|
|
15250
|
+
var DynamicLegendsvue_type_style_index_0_id_7ea6eb51_prod_scoped_true_lang_scss_ = __webpack_require__("e8bf");
|
|
15251
|
+
|
|
15252
|
+
// CONCATENATED MODULE: ./src/components/legends/DynamicLegends.vue
|
|
15253
|
+
|
|
15254
|
+
|
|
15255
|
+
|
|
15256
|
+
|
|
15257
|
+
|
|
15258
|
+
|
|
15259
|
+
/* normalize component */
|
|
15260
|
+
|
|
15261
|
+
var DynamicLegends_component = normalizeComponent(
|
|
15262
|
+
legends_DynamicLegendsvue_type_script_lang_js_,
|
|
15263
|
+
DynamicLegendsvue_type_template_id_7ea6eb51_scoped_true_render,
|
|
15264
|
+
DynamicLegendsvue_type_template_id_7ea6eb51_scoped_true_staticRenderFns,
|
|
15265
|
+
false,
|
|
15266
|
+
null,
|
|
15267
|
+
"7ea6eb51",
|
|
15268
|
+
null
|
|
15269
|
+
|
|
15270
|
+
)
|
|
15271
|
+
|
|
15272
|
+
/* harmony default export */ var DynamicLegends = (DynamicLegends_component.exports);
|
|
15273
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e8f1c40a-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/legends/SvgLegends.vue?vue&type=template&id=3d3218c8&scoped=true&
|
|
15274
|
+
var SvgLegendsvue_type_template_id_3d3218c8_scoped_true_render = function render() {
|
|
15275
|
+
var _vm = this,
|
|
15276
|
+
_c = _vm._self._c;
|
|
15277
|
+
return _c('div', {
|
|
15278
|
+
staticClass: "legends-container"
|
|
15279
|
+
}, [_c('svg', {
|
|
15280
|
+
staticStyle: {
|
|
15281
|
+
"enable-background": "new 0 0 500 500"
|
|
15282
|
+
},
|
|
15283
|
+
attrs: {
|
|
15284
|
+
"version": "1.1",
|
|
15285
|
+
"id": "Layer_1",
|
|
15286
|
+
"x": "0px",
|
|
15287
|
+
"y": "0px",
|
|
15288
|
+
"viewBox": "0 0 500 500",
|
|
15289
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
15290
|
+
"xmlns:bx": "https://boxy-svg.com"
|
|
15291
|
+
}
|
|
15292
|
+
}, [_c('defs', [_c('bx:grid', {
|
|
15293
|
+
attrs: {
|
|
15294
|
+
"height": "30.447",
|
|
15295
|
+
"width": "32.516",
|
|
15296
|
+
"x": "0",
|
|
15297
|
+
"y": "0"
|
|
15298
|
+
}
|
|
15299
|
+
})], 1), _c('path', {
|
|
15300
|
+
staticClass: "st0 st0-translate",
|
|
15301
|
+
attrs: {
|
|
15302
|
+
"d": "M61.3,103.8c-15.9,0-28.8-12.3-28.8-27.3c0-15,13-27.3,28.8-27.3s28.8,12.3,28.8,27.3 C90.1,91.5,77.2,103.8,61.3,103.8z"
|
|
15303
|
+
}
|
|
15304
|
+
}), _c('path', {
|
|
15305
|
+
staticClass: "st1",
|
|
15306
|
+
attrs: {
|
|
15307
|
+
"d": "M40.3,356.1C29.5,345,29.8,328,41.5,317.5c11.7-10.5,29.6-9.9,40.7,1.1c11.1,11,10.5,28.1-1.2,38.5 C69.3,367.4,51.1,366.9,40.3,356.1z"
|
|
15308
|
+
}
|
|
15309
|
+
}), _c('path', {
|
|
15310
|
+
staticClass: "st2",
|
|
15311
|
+
attrs: {
|
|
15312
|
+
"d": "M61.2,396.9c-5.3,9.3-15.3,15.1-26.1,15.1l-0.4,0.6c5.1,9,5.1,20,0,29l0.4,0.6c10.7,0,20.8,5.8,26.1,15.1 c5.3-9.3,15.3-15.1,26.1-15.1c-5.3-9.3-5.3-20.9,0-30.4C76.6,412.1,66.7,406.3,61.2,396.9z"
|
|
15313
|
+
}
|
|
15314
|
+
}), _c('text', {
|
|
15315
|
+
staticClass: "st3 st4 st5",
|
|
15316
|
+
staticStyle: {
|
|
15317
|
+
"white-space": "pre"
|
|
15318
|
+
},
|
|
15319
|
+
attrs: {
|
|
15320
|
+
"transform": "matrix(0.9908 0 0 1 118.0161 171.7975)"
|
|
15321
|
+
}
|
|
15322
|
+
}, [_vm._v("Tissue region")]), _c('path', {
|
|
15323
|
+
staticClass: "st6",
|
|
15324
|
+
attrs: {
|
|
15325
|
+
"d": "M40.9,231.1c11.3-10.6,29.5-10.6,40.8,0c11.3,10.6,11.3,27.9,0,38.5c-11.3,10.6-29.5,10.6-40.8,0 C29.7,259,29.7,241.7,40.9,231.1z"
|
|
15326
|
+
}
|
|
15327
|
+
}), _c('text', {
|
|
15328
|
+
staticClass: "st3 st4 st5",
|
|
15329
|
+
staticStyle: {
|
|
15330
|
+
"white-space": "pre"
|
|
15331
|
+
},
|
|
15332
|
+
attrs: {
|
|
15333
|
+
"transform": "matrix(0.9908 0 0 1 118.0161 257.675)"
|
|
15334
|
+
}
|
|
15335
|
+
}, [_vm._v("Brain nuclei")]), _c('text', {
|
|
15336
|
+
staticClass: "st3 st4 st5",
|
|
15337
|
+
staticStyle: {
|
|
15338
|
+
"white-space": "pre"
|
|
15339
|
+
},
|
|
15340
|
+
attrs: {
|
|
15341
|
+
"transform": "matrix(0.9908 0 0 1 118.0903 345.5266)"
|
|
15342
|
+
}
|
|
15343
|
+
}, [_vm._v("Ganglia")]), _c('text', {
|
|
15344
|
+
staticClass: "st3 st4 st5",
|
|
15345
|
+
staticStyle: {
|
|
15346
|
+
"white-space": "pre"
|
|
15347
|
+
},
|
|
15348
|
+
attrs: {
|
|
15349
|
+
"transform": "matrix(0.9908 0 0 1 118.0903 433.1613)"
|
|
15350
|
+
}
|
|
15351
|
+
}, [_vm._v("Nerve plexus")])])]);
|
|
15352
|
+
};
|
|
15353
|
+
var SvgLegendsvue_type_template_id_3d3218c8_scoped_true_staticRenderFns = [];
|
|
15354
|
+
|
|
15355
|
+
// CONCATENATED MODULE: ./src/components/legends/SvgLegends.vue?vue&type=template&id=3d3218c8&scoped=true&
|
|
15356
|
+
|
|
15357
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/legends/SvgLegends.vue?vue&type=script&lang=js&
|
|
15358
|
+
/* harmony default export */ var SvgLegendsvue_type_script_lang_js_ = ({
|
|
15359
|
+
name: 'SvgLegends'
|
|
15360
|
+
});
|
|
15361
|
+
// CONCATENATED MODULE: ./src/components/legends/SvgLegends.vue?vue&type=script&lang=js&
|
|
15362
|
+
/* harmony default export */ var legends_SvgLegendsvue_type_script_lang_js_ = (SvgLegendsvue_type_script_lang_js_);
|
|
15363
|
+
// EXTERNAL MODULE: ./src/components/legends/SvgLegends.vue?vue&type=style&index=0&id=3d3218c8&prod&scoped=true&lang=scss&
|
|
15364
|
+
var SvgLegendsvue_type_style_index_0_id_3d3218c8_prod_scoped_true_lang_scss_ = __webpack_require__("83af");
|
|
15365
|
+
|
|
15366
|
+
// CONCATENATED MODULE: ./src/components/legends/SvgLegends.vue
|
|
15367
|
+
|
|
15368
|
+
|
|
15369
|
+
|
|
15370
|
+
|
|
15371
|
+
|
|
15372
|
+
|
|
15373
|
+
/* normalize component */
|
|
15374
|
+
|
|
15375
|
+
var SvgLegends_component = normalizeComponent(
|
|
15376
|
+
legends_SvgLegendsvue_type_script_lang_js_,
|
|
15377
|
+
SvgLegendsvue_type_template_id_3d3218c8_scoped_true_render,
|
|
15378
|
+
SvgLegendsvue_type_template_id_3d3218c8_scoped_true_staticRenderFns,
|
|
15379
|
+
false,
|
|
15380
|
+
null,
|
|
15381
|
+
"3d3218c8",
|
|
15382
|
+
null
|
|
15383
|
+
|
|
15384
|
+
)
|
|
15385
|
+
|
|
15386
|
+
/* harmony default export */ var SvgLegends = (SvgLegends_component.exports);
|
|
15387
|
+
// CONCATENATED MODULE: ./src/icons/flatmap-marker.js
|
|
15388
|
+
/* harmony default export */ var flatmap_marker = ('<div class="flatmap-marker"><svg display="block" height="41px" width="27px" viewBox="0 0 27 41"><g fill-rule="nonzero"><g transform="translate(3.0, 29.0)" fill="#000000"><ellipse opacity="0.04" cx="10.5" cy="5.80029008" rx="10.5" ry="5.25002273"></ellipse><ellipse opacity="0.04" cx="10.5" cy="5.80029008" rx="10.5" ry="5.25002273"></ellipse><ellipse opacity="0.04" cx="10.5" cy="5.80029008" rx="9.5" ry="4.77275007"></ellipse><ellipse opacity="0.04" cx="10.5" cy="5.80029008" rx="8.5" ry="4.29549936"></ellipse><ellipse opacity="0.04" cx="10.5" cy="5.80029008" rx="7.5" ry="3.81822308"></ellipse><ellipse opacity="0.04" cx="10.5" cy="5.80029008" rx="6.5" ry="3.34094679"></ellipse><ellipse opacity="0.04" cx="10.5" cy="5.80029008" rx="5.5" ry="2.86367051"></ellipse><ellipse opacity="0.04" cx="10.5" cy="5.80029008" rx="4.5" ry="2.38636864"></ellipse></g><g fill="#005974"><path d="M27,13.5 C27,19.074644 20.250001,27.000002 14.75,34.500002 C14.016665,35.500004 12.983335,35.500004 12.25,34.500002 C6.7499993,27.000002 0,19.222562 0,13.5 C0,6.0441559 6.0441559,0 13.5,0 C20.955844,0 27,6.0441559 27,13.5 Z"></path></g><g opacity="0.25" fill="#000000"><path d="M13.5,0 C6.0441559,0 0,6.0441559 0,13.5 C0,19.222562 6.7499993,27 12.25,34.5 C13,35.522727 14.016664,35.500004 14.75,34.5 C20.250001,27 27,19.074644 27,13.5 C27,6.0441559 20.955844,0 13.5,0 Z M13.5,1 C20.415404,1 26,6.584596 26,13.5 C26,15.898657 24.495584,19.181431 22.220703,22.738281 C19.945823,26.295132 16.705119,30.142167 13.943359,33.908203 C13.743445,34.180814 13.612715,34.322738 13.5,34.441406 C13.387285,34.322738 13.256555,34.180814 13.056641,33.908203 C10.284481,30.127985 7.4148684,26.314159 5.015625,22.773438 C2.6163816,19.232715 1,15.953538 1,13.5 C1,6.584596 6.584596,1 13.5,1 Z"></path></g><g transform="translate(6.0, 7.0)" fill="#FFFFFF"></g><g transform="translate(8.0, 8.0)"><circle fill="#000000" opacity="0.25" cx="5.5" cy="5.5" r="5.4999962"></circle><circle fill="#FFFFFF" cx="5.5" cy="5.5" r="5.4999962"></circle></g></g></svg></div>');
|
|
15389
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/FlatmapVuer.vue?vue&type=script&lang=js&
|
|
15390
|
+
|
|
15391
|
+
|
|
14400
15392
|
|
|
14401
15393
|
|
|
14402
15394
|
|
|
@@ -14423,264 +15415,6 @@ var Legends_component = normalizeComponent(
|
|
|
14423
15415
|
|
|
14424
15416
|
|
|
14425
15417
|
|
|
14426
|
-
//
|
|
14427
|
-
//
|
|
14428
|
-
//
|
|
14429
|
-
//
|
|
14430
|
-
//
|
|
14431
|
-
//
|
|
14432
|
-
//
|
|
14433
|
-
//
|
|
14434
|
-
//
|
|
14435
|
-
//
|
|
14436
|
-
//
|
|
14437
|
-
//
|
|
14438
|
-
//
|
|
14439
|
-
//
|
|
14440
|
-
//
|
|
14441
|
-
//
|
|
14442
|
-
//
|
|
14443
|
-
//
|
|
14444
|
-
//
|
|
14445
|
-
//
|
|
14446
|
-
//
|
|
14447
|
-
//
|
|
14448
|
-
//
|
|
14449
|
-
//
|
|
14450
|
-
//
|
|
14451
|
-
//
|
|
14452
|
-
//
|
|
14453
|
-
//
|
|
14454
|
-
//
|
|
14455
|
-
//
|
|
14456
|
-
//
|
|
14457
|
-
//
|
|
14458
|
-
//
|
|
14459
|
-
//
|
|
14460
|
-
//
|
|
14461
|
-
//
|
|
14462
|
-
//
|
|
14463
|
-
//
|
|
14464
|
-
//
|
|
14465
|
-
//
|
|
14466
|
-
//
|
|
14467
|
-
//
|
|
14468
|
-
//
|
|
14469
|
-
//
|
|
14470
|
-
//
|
|
14471
|
-
//
|
|
14472
|
-
//
|
|
14473
|
-
//
|
|
14474
|
-
//
|
|
14475
|
-
//
|
|
14476
|
-
//
|
|
14477
|
-
//
|
|
14478
|
-
//
|
|
14479
|
-
//
|
|
14480
|
-
//
|
|
14481
|
-
//
|
|
14482
|
-
//
|
|
14483
|
-
//
|
|
14484
|
-
//
|
|
14485
|
-
//
|
|
14486
|
-
//
|
|
14487
|
-
//
|
|
14488
|
-
//
|
|
14489
|
-
//
|
|
14490
|
-
//
|
|
14491
|
-
//
|
|
14492
|
-
//
|
|
14493
|
-
//
|
|
14494
|
-
//
|
|
14495
|
-
//
|
|
14496
|
-
//
|
|
14497
|
-
//
|
|
14498
|
-
//
|
|
14499
|
-
//
|
|
14500
|
-
//
|
|
14501
|
-
//
|
|
14502
|
-
//
|
|
14503
|
-
//
|
|
14504
|
-
//
|
|
14505
|
-
//
|
|
14506
|
-
//
|
|
14507
|
-
//
|
|
14508
|
-
//
|
|
14509
|
-
//
|
|
14510
|
-
//
|
|
14511
|
-
//
|
|
14512
|
-
//
|
|
14513
|
-
//
|
|
14514
|
-
//
|
|
14515
|
-
//
|
|
14516
|
-
//
|
|
14517
|
-
//
|
|
14518
|
-
//
|
|
14519
|
-
//
|
|
14520
|
-
//
|
|
14521
|
-
//
|
|
14522
|
-
//
|
|
14523
|
-
//
|
|
14524
|
-
//
|
|
14525
|
-
//
|
|
14526
|
-
//
|
|
14527
|
-
//
|
|
14528
|
-
//
|
|
14529
|
-
//
|
|
14530
|
-
//
|
|
14531
|
-
//
|
|
14532
|
-
//
|
|
14533
|
-
//
|
|
14534
|
-
//
|
|
14535
|
-
//
|
|
14536
|
-
//
|
|
14537
|
-
//
|
|
14538
|
-
//
|
|
14539
|
-
//
|
|
14540
|
-
//
|
|
14541
|
-
//
|
|
14542
|
-
//
|
|
14543
|
-
//
|
|
14544
|
-
//
|
|
14545
|
-
//
|
|
14546
|
-
//
|
|
14547
|
-
//
|
|
14548
|
-
//
|
|
14549
|
-
//
|
|
14550
|
-
//
|
|
14551
|
-
//
|
|
14552
|
-
//
|
|
14553
|
-
//
|
|
14554
|
-
//
|
|
14555
|
-
//
|
|
14556
|
-
//
|
|
14557
|
-
//
|
|
14558
|
-
//
|
|
14559
|
-
//
|
|
14560
|
-
//
|
|
14561
|
-
//
|
|
14562
|
-
//
|
|
14563
|
-
//
|
|
14564
|
-
//
|
|
14565
|
-
//
|
|
14566
|
-
//
|
|
14567
|
-
//
|
|
14568
|
-
//
|
|
14569
|
-
//
|
|
14570
|
-
//
|
|
14571
|
-
//
|
|
14572
|
-
//
|
|
14573
|
-
//
|
|
14574
|
-
//
|
|
14575
|
-
//
|
|
14576
|
-
//
|
|
14577
|
-
//
|
|
14578
|
-
//
|
|
14579
|
-
//
|
|
14580
|
-
//
|
|
14581
|
-
//
|
|
14582
|
-
//
|
|
14583
|
-
//
|
|
14584
|
-
//
|
|
14585
|
-
//
|
|
14586
|
-
//
|
|
14587
|
-
//
|
|
14588
|
-
//
|
|
14589
|
-
//
|
|
14590
|
-
//
|
|
14591
|
-
//
|
|
14592
|
-
//
|
|
14593
|
-
//
|
|
14594
|
-
//
|
|
14595
|
-
//
|
|
14596
|
-
//
|
|
14597
|
-
//
|
|
14598
|
-
//
|
|
14599
|
-
//
|
|
14600
|
-
//
|
|
14601
|
-
//
|
|
14602
|
-
//
|
|
14603
|
-
//
|
|
14604
|
-
//
|
|
14605
|
-
//
|
|
14606
|
-
//
|
|
14607
|
-
//
|
|
14608
|
-
//
|
|
14609
|
-
//
|
|
14610
|
-
//
|
|
14611
|
-
//
|
|
14612
|
-
//
|
|
14613
|
-
//
|
|
14614
|
-
//
|
|
14615
|
-
//
|
|
14616
|
-
//
|
|
14617
|
-
//
|
|
14618
|
-
//
|
|
14619
|
-
//
|
|
14620
|
-
//
|
|
14621
|
-
//
|
|
14622
|
-
//
|
|
14623
|
-
//
|
|
14624
|
-
//
|
|
14625
|
-
//
|
|
14626
|
-
//
|
|
14627
|
-
//
|
|
14628
|
-
//
|
|
14629
|
-
//
|
|
14630
|
-
//
|
|
14631
|
-
//
|
|
14632
|
-
//
|
|
14633
|
-
//
|
|
14634
|
-
//
|
|
14635
|
-
//
|
|
14636
|
-
//
|
|
14637
|
-
//
|
|
14638
|
-
//
|
|
14639
|
-
//
|
|
14640
|
-
//
|
|
14641
|
-
//
|
|
14642
|
-
//
|
|
14643
|
-
//
|
|
14644
|
-
//
|
|
14645
|
-
//
|
|
14646
|
-
//
|
|
14647
|
-
//
|
|
14648
|
-
//
|
|
14649
|
-
//
|
|
14650
|
-
//
|
|
14651
|
-
//
|
|
14652
|
-
//
|
|
14653
|
-
//
|
|
14654
|
-
//
|
|
14655
|
-
//
|
|
14656
|
-
//
|
|
14657
|
-
//
|
|
14658
|
-
//
|
|
14659
|
-
//
|
|
14660
|
-
//
|
|
14661
|
-
//
|
|
14662
|
-
//
|
|
14663
|
-
//
|
|
14664
|
-
//
|
|
14665
|
-
//
|
|
14666
|
-
//
|
|
14667
|
-
//
|
|
14668
|
-
//
|
|
14669
|
-
//
|
|
14670
|
-
//
|
|
14671
|
-
//
|
|
14672
|
-
//
|
|
14673
|
-
//
|
|
14674
|
-
//
|
|
14675
|
-
//
|
|
14676
|
-
//
|
|
14677
|
-
//
|
|
14678
|
-
//
|
|
14679
|
-
//
|
|
14680
|
-
//
|
|
14681
|
-
//
|
|
14682
|
-
//
|
|
14683
|
-
//
|
|
14684
15418
|
|
|
14685
15419
|
/* eslint-disable no-alert, no-console */
|
|
14686
15420
|
|
|
@@ -14690,30 +15424,24 @@ var Legends_component = normalizeComponent(
|
|
|
14690
15424
|
|
|
14691
15425
|
|
|
14692
15426
|
|
|
15427
|
+
|
|
15428
|
+
|
|
14693
15429
|
locale_default.a.use(en_default.a);
|
|
14694
|
-
external_vue_default.a.use(lib_checkbox_default.a);
|
|
14695
|
-
external_vue_default.a.use(lib_checkbox_group_default.a);
|
|
14696
15430
|
external_vue_default.a.use(lib_col_default.a);
|
|
14697
15431
|
external_vue_default.a.use(lib_loading_default.a.directive);
|
|
14698
15432
|
external_vue_default.a.use(lib_radio_default.a);
|
|
14699
15433
|
external_vue_default.a.use(lib_radio_group_default.a);
|
|
14700
15434
|
external_vue_default.a.use(lib_row_default.a);
|
|
14701
|
-
|
|
14702
15435
|
var ResizeSensor = __webpack_require__("ae66");
|
|
14703
|
-
|
|
14704
|
-
var mapResize = function mapResize(map) {
|
|
14705
|
-
return function () {
|
|
14706
|
-
if (map) map.resize();
|
|
14707
|
-
};
|
|
14708
|
-
};
|
|
14709
|
-
|
|
14710
15436
|
/* harmony default export */ var FlatmapVuervue_type_script_lang_js_ = ({
|
|
14711
15437
|
name: "FlatmapVuer",
|
|
14712
15438
|
components: {
|
|
15439
|
+
DynamicLegends: DynamicLegends,
|
|
14713
15440
|
MapSvgIcon: svg_sprite_["MapSvgIcon"],
|
|
14714
15441
|
MapSvgSpriteColor: svg_sprite_["MapSvgSpriteColor"],
|
|
14715
15442
|
Tooltip: Tooltip,
|
|
14716
|
-
|
|
15443
|
+
SelectionsGroup: SelectionsGroup,
|
|
15444
|
+
SvgLegends: SvgLegends
|
|
14717
15445
|
},
|
|
14718
15446
|
beforeCreate: function beforeCreate() {
|
|
14719
15447
|
this.mapManager = undefined;
|
|
@@ -14721,12 +15449,11 @@ var mapResize = function mapResize(map) {
|
|
|
14721
15449
|
},
|
|
14722
15450
|
methods: {
|
|
14723
15451
|
viewLatestMap: function viewLatestMap() {
|
|
14724
|
-
var biologicalSex = this.biologicalSex ? this.biologicalSex : undefined;
|
|
14725
|
-
|
|
15452
|
+
var biologicalSex = this.biologicalSex ? this.biologicalSex : undefined;
|
|
15453
|
+
//Human requires special handling
|
|
14726
15454
|
if (this.entry === "NCBITaxon:9606") {
|
|
14727
15455
|
biologicalSex = "PATO:0000384";
|
|
14728
15456
|
}
|
|
14729
|
-
|
|
14730
15457
|
var state = {
|
|
14731
15458
|
entry: this.entry,
|
|
14732
15459
|
biologicalSex: biologicalSex,
|
|
@@ -14736,7 +15463,6 @@ var mapResize = function mapResize(map) {
|
|
|
14736
15463
|
},
|
|
14737
15464
|
backgroundChangeCallback: function backgroundChangeCallback(colour) {
|
|
14738
15465
|
this.currentBackground = colour;
|
|
14739
|
-
|
|
14740
15466
|
if (this.mapImp) {
|
|
14741
15467
|
this.mapImp.setBackgroundColour(this.currentBackground, 1);
|
|
14742
15468
|
}
|
|
@@ -14744,13 +15470,11 @@ var mapResize = function mapResize(map) {
|
|
|
14744
15470
|
toggleDrawer: function toggleDrawer() {
|
|
14745
15471
|
this.drawerOpen = !this.drawerOpen;
|
|
14746
15472
|
},
|
|
14747
|
-
|
|
14748
|
-
|
|
14749
|
-
* Function to toggle colour/greyscale of organs.
|
|
15473
|
+
/**
|
|
15474
|
+
* Function to toggle colour/greyscale of organs.
|
|
14750
15475
|
*/
|
|
14751
15476
|
setColour: function setColour(flag) {
|
|
14752
15477
|
this.colourRadio = flag;
|
|
14753
|
-
|
|
14754
15478
|
if (this.mapImp) {
|
|
14755
15479
|
this.mapImp.setColour({
|
|
14756
15480
|
colour: flag,
|
|
@@ -14758,13 +15482,11 @@ var mapResize = function mapResize(map) {
|
|
|
14758
15482
|
});
|
|
14759
15483
|
}
|
|
14760
15484
|
},
|
|
14761
|
-
|
|
14762
|
-
|
|
14763
|
-
* Function to toggle outlines f organs.
|
|
15485
|
+
/**
|
|
15486
|
+
* Function to toggle outlines f organs.
|
|
14764
15487
|
*/
|
|
14765
15488
|
setOutlines: function setOutlines(flag) {
|
|
14766
15489
|
this.outlineRadio = flag;
|
|
14767
|
-
|
|
14768
15490
|
if (this.mapImp) {
|
|
14769
15491
|
this.mapImp.setColour({
|
|
14770
15492
|
colour: this.colourRadio,
|
|
@@ -14772,78 +15494,103 @@ var mapResize = function mapResize(map) {
|
|
|
14772
15494
|
});
|
|
14773
15495
|
}
|
|
14774
15496
|
},
|
|
14775
|
-
|
|
14776
|
-
|
|
14777
|
-
*
|
|
14778
|
-
* Also called when the associated button is pressed.
|
|
15497
|
+
/**
|
|
15498
|
+
* Function to toggle paths to default.
|
|
15499
|
+
* Also called when the associated button is pressed.
|
|
14779
15500
|
*/
|
|
14780
15501
|
resetView: function resetView() {
|
|
14781
15502
|
if (this.mapImp) {
|
|
14782
15503
|
this.mapImp.resetMap();
|
|
14783
|
-
|
|
14784
|
-
|
|
14785
|
-
}
|
|
14786
|
-
this.
|
|
14787
|
-
|
|
15504
|
+
if (this.$refs.centrelinesSelection) {
|
|
15505
|
+
this.$refs.centrelinesSelection.reset();
|
|
15506
|
+
}
|
|
15507
|
+
if (this.$refs.skcanSelection) {
|
|
15508
|
+
this.$refs.skcanSelection.reset();
|
|
15509
|
+
}
|
|
15510
|
+
if (this.$refs.layersSelection) {
|
|
15511
|
+
this.$refs.layersSelection.reset();
|
|
15512
|
+
}
|
|
15513
|
+
if (this.$refs.pathwaysSelection) {
|
|
15514
|
+
this.$refs.pathwaysSelection.reset();
|
|
15515
|
+
}
|
|
14788
15516
|
}
|
|
14789
15517
|
},
|
|
14790
|
-
|
|
14791
|
-
|
|
14792
|
-
*
|
|
14793
|
-
* Also called when the associated button is pressed.
|
|
15518
|
+
/**
|
|
15519
|
+
* Function to zoom in.
|
|
15520
|
+
* Also called when the associated button is pressed.
|
|
14794
15521
|
*/
|
|
14795
15522
|
zoomIn: function zoomIn() {
|
|
14796
15523
|
if (this.mapImp) {
|
|
14797
15524
|
this.mapImp.zoomIn();
|
|
14798
15525
|
}
|
|
14799
15526
|
},
|
|
14800
|
-
|
|
14801
|
-
|
|
14802
|
-
*
|
|
14803
|
-
* Also called when the associated button is pressed.
|
|
15527
|
+
/**
|
|
15528
|
+
* Function to zoom out.
|
|
15529
|
+
* Also called when the associated button is pressed.
|
|
14804
15530
|
*/
|
|
14805
15531
|
zoomOut: function zoomOut() {
|
|
14806
15532
|
if (this.mapImp) {
|
|
14807
15533
|
this.mapImp.zoomOut();
|
|
14808
15534
|
}
|
|
14809
15535
|
},
|
|
14810
|
-
|
|
15536
|
+
centreLinesSelected: function centreLinesSelected(payload) {
|
|
14811
15537
|
if (this.mapImp) {
|
|
14812
|
-
this.mapImp.
|
|
15538
|
+
this.mapImp.enableCentrelines(payload.value);
|
|
14813
15539
|
}
|
|
14814
15540
|
},
|
|
14815
|
-
|
|
14816
|
-
|
|
14817
|
-
|
|
14818
|
-
|
|
15541
|
+
sckanSelected: function sckanSelected(payload) {
|
|
15542
|
+
if (this.mapImp) {
|
|
15543
|
+
this.mapImp.enableSckanPath(payload.key, payload.value);
|
|
15544
|
+
}
|
|
14819
15545
|
},
|
|
14820
|
-
|
|
14821
|
-
|
|
14822
|
-
|
|
14823
|
-
|
|
14824
|
-
|
|
14825
|
-
|
|
15546
|
+
checkAllSCKAN: function checkAllSCKAN(payload) {
|
|
15547
|
+
var _this = this;
|
|
15548
|
+
if (this.mapImp) {
|
|
15549
|
+
payload.keys.forEach(function (key) {
|
|
15550
|
+
return _this.mapImp.enableSckanPath(key, payload.value);
|
|
15551
|
+
});
|
|
15552
|
+
}
|
|
15553
|
+
},
|
|
15554
|
+
layersSelected: function layersSelected(payload) {
|
|
15555
|
+
if (this.mapImp) {
|
|
15556
|
+
this.mapImp.enableLayer(payload.key, payload.value);
|
|
15557
|
+
}
|
|
15558
|
+
},
|
|
15559
|
+
checkAllLayers: function checkAllLayers(payload) {
|
|
15560
|
+
var _this2 = this;
|
|
15561
|
+
if (this.mapImp) {
|
|
15562
|
+
payload.keys.forEach(function (key) {
|
|
15563
|
+
return _this2.mapImp.enableLayer(key, payload.value);
|
|
15564
|
+
});
|
|
15565
|
+
}
|
|
15566
|
+
},
|
|
15567
|
+
pathwaysSelected: function pathwaysSelected(payload) {
|
|
15568
|
+
if (this.mapImp) {
|
|
15569
|
+
this.mapImp.enablePath(payload.key, payload.value);
|
|
15570
|
+
}
|
|
15571
|
+
},
|
|
15572
|
+
checkAllPathways: function checkAllPathways(payload) {
|
|
15573
|
+
var _this3 = this;
|
|
14826
15574
|
if (this.mapImp) {
|
|
14827
|
-
|
|
15575
|
+
payload.keys.forEach(function (key) {
|
|
15576
|
+
return _this3.mapImp.enablePath(key, payload.value);
|
|
15577
|
+
});
|
|
14828
15578
|
}
|
|
14829
15579
|
},
|
|
14830
15580
|
enablePanZoomEvents: function enablePanZoomEvents(flag) {
|
|
14831
15581
|
this.mapImp.enablePanZoomEvents(flag);
|
|
14832
15582
|
},
|
|
14833
15583
|
eventCallback: function eventCallback() {
|
|
14834
|
-
var
|
|
14835
|
-
|
|
15584
|
+
var _this4 = this;
|
|
14836
15585
|
return function (eventType, data) {
|
|
14837
15586
|
if (eventType !== "pan-zoom") {
|
|
14838
15587
|
var label = data.label;
|
|
14839
15588
|
var resource = [data.models];
|
|
14840
|
-
var taxonomy =
|
|
14841
|
-
var biologicalSex =
|
|
14842
|
-
|
|
15589
|
+
var taxonomy = _this4.entry;
|
|
15590
|
+
var biologicalSex = _this4.biologicalSex;
|
|
14843
15591
|
for (var _len = arguments.length, args = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
|
14844
15592
|
args[_key - 2] = arguments[_key];
|
|
14845
15593
|
}
|
|
14846
|
-
|
|
14847
15594
|
var payload = {
|
|
14848
15595
|
dataset: data.dataset,
|
|
14849
15596
|
biologicalSex: biologicalSex,
|
|
@@ -14853,13 +15600,12 @@ var mapResize = function mapResize(map) {
|
|
|
14853
15600
|
feature: data,
|
|
14854
15601
|
userData: args,
|
|
14855
15602
|
eventType: eventType
|
|
14856
|
-
};
|
|
14857
|
-
|
|
14858
|
-
if (data && data.type !== "marker")
|
|
14859
|
-
|
|
14860
|
-
_this.$emit("resource-selected", payload);
|
|
15603
|
+
};
|
|
15604
|
+
// Disable the nueron pop up for now.
|
|
15605
|
+
if (data && data.type !== "marker") _this4.checkAndCreatePopups(payload);
|
|
15606
|
+
_this4.$emit("resource-selected", payload);
|
|
14861
15607
|
} else {
|
|
14862
|
-
|
|
15608
|
+
_this4.$emit("pan-zoom-callback", data);
|
|
14863
15609
|
}
|
|
14864
15610
|
};
|
|
14865
15611
|
},
|
|
@@ -14880,7 +15626,6 @@ var mapResize = function mapResize(map) {
|
|
|
14880
15626
|
if (ftooltip) ftooltip.style.display = "none";
|
|
14881
15627
|
document.querySelector(".mapboxgl-popup-close-button").style.display = "block";
|
|
14882
15628
|
this.$refs.tooltip.$el.style.display = "flex";
|
|
14883
|
-
|
|
14884
15629
|
document.querySelector(".mapboxgl-popup-close-button").onclick = function () {
|
|
14885
15630
|
document.querySelector(".flatmap-tooltip-popup").style.display = "block";
|
|
14886
15631
|
};
|
|
@@ -14894,14 +15639,13 @@ var mapResize = function mapResize(map) {
|
|
|
14894
15639
|
if (data.resource[0].includes('ilxtr:neuron')) {
|
|
14895
15640
|
return true;
|
|
14896
15641
|
}
|
|
14897
|
-
}
|
|
14898
|
-
|
|
14899
|
-
|
|
15642
|
+
}
|
|
15643
|
+
// annotated with datset check
|
|
14900
15644
|
if (data.dataset) {
|
|
14901
15645
|
return true;
|
|
14902
|
-
}
|
|
14903
|
-
|
|
15646
|
+
}
|
|
14904
15647
|
|
|
15648
|
+
// if there is no cuff, neural data, or dataset we do not display neuron tooltip
|
|
14905
15649
|
return false;
|
|
14906
15650
|
},
|
|
14907
15651
|
createTooltipFromNeuronCuration: function createTooltipFromNeuronCuration(data) {
|
|
@@ -14913,8 +15657,9 @@ var mapResize = function mapResize(map) {
|
|
|
14913
15657
|
distribution: undefined,
|
|
14914
15658
|
actions: []
|
|
14915
15659
|
};
|
|
14916
|
-
this.tooltipVisible = false;
|
|
15660
|
+
this.tooltipVisible = false;
|
|
14917
15661
|
|
|
15662
|
+
// neural data check
|
|
14918
15663
|
if (feature) {
|
|
14919
15664
|
if (feature.includes('ilxtr:neuron')) {
|
|
14920
15665
|
this.tooltipVisible = true;
|
|
@@ -14932,9 +15677,8 @@ var mapResize = function mapResize(map) {
|
|
|
14932
15677
|
nervePath: true
|
|
14933
15678
|
});
|
|
14934
15679
|
}
|
|
14935
|
-
}
|
|
14936
|
-
|
|
14937
|
-
|
|
15680
|
+
}
|
|
15681
|
+
// annotated with datset check
|
|
14938
15682
|
if (data.dataset) {
|
|
14939
15683
|
this.tooltipVisible = true;
|
|
14940
15684
|
this.tooltipContent = content;
|
|
@@ -14953,7 +15697,6 @@ var mapResize = function mapResize(map) {
|
|
|
14953
15697
|
// Keeping this as an API
|
|
14954
15698
|
showPopup: function showPopup(featureId, node, options) {
|
|
14955
15699
|
var myOptions = options;
|
|
14956
|
-
|
|
14957
15700
|
if (this.mapImp) {
|
|
14958
15701
|
if (myOptions) {
|
|
14959
15702
|
if (!myOptions.className) myOptions.className = "custom-popup";
|
|
@@ -14963,7 +15706,6 @@ var mapResize = function mapResize(map) {
|
|
|
14963
15706
|
positionAtLastClick: true
|
|
14964
15707
|
};
|
|
14965
15708
|
}
|
|
14966
|
-
|
|
14967
15709
|
this.mapImp.showPopup(featureId, node, myOptions);
|
|
14968
15710
|
}
|
|
14969
15711
|
},
|
|
@@ -14974,7 +15716,6 @@ var mapResize = function mapResize(map) {
|
|
|
14974
15716
|
},
|
|
14975
15717
|
closeMinimap: function closeMinimap() {
|
|
14976
15718
|
var minimapEl = this.$refs.flatmapContainer.querySelector('.maplibregl-ctrl-minimap'); // find minimap
|
|
14977
|
-
|
|
14978
15719
|
if (this.minimapSmall) {
|
|
14979
15720
|
//switch the classes on the minimap
|
|
14980
15721
|
minimapEl.classList.add('enlarge');
|
|
@@ -14983,7 +15724,6 @@ var mapResize = function mapResize(map) {
|
|
|
14983
15724
|
minimapEl.classList.add('shrink');
|
|
14984
15725
|
minimapEl.classList.remove('enlarge');
|
|
14985
15726
|
}
|
|
14986
|
-
|
|
14987
15727
|
this.minimapSmall = !this.minimapSmall;
|
|
14988
15728
|
},
|
|
14989
15729
|
addResizeButtonToMinimap: function addResizeButtonToMinimap() {
|
|
@@ -15008,11 +15748,10 @@ var mapResize = function mapResize(map) {
|
|
|
15008
15748
|
}
|
|
15009
15749
|
},
|
|
15010
15750
|
showToolitip: function showToolitip(tooltipNumber) {
|
|
15011
|
-
var
|
|
15012
|
-
|
|
15751
|
+
var _this5 = this;
|
|
15013
15752
|
if (!this.inHelp) {
|
|
15014
15753
|
this.tooltipWait = setTimeout(function () {
|
|
15015
|
-
|
|
15754
|
+
_this5.hoverVisibilities[tooltipNumber].value = true;
|
|
15016
15755
|
}, 500);
|
|
15017
15756
|
}
|
|
15018
15757
|
},
|
|
@@ -15039,13 +15778,10 @@ var mapResize = function mapResize(map) {
|
|
|
15039
15778
|
},
|
|
15040
15779
|
getLabels: function getLabels() {
|
|
15041
15780
|
var labels = [];
|
|
15042
|
-
|
|
15043
15781
|
if (this.mapImp) {
|
|
15044
15782
|
var annotations = this.mapImp.annotations;
|
|
15045
|
-
|
|
15046
15783
|
var _iterator = _createForOfIteratorHelper(annotations.values()),
|
|
15047
|
-
|
|
15048
|
-
|
|
15784
|
+
_step;
|
|
15049
15785
|
try {
|
|
15050
15786
|
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
15051
15787
|
var value = _step.value;
|
|
@@ -15056,7 +15792,6 @@ var mapResize = function mapResize(map) {
|
|
|
15056
15792
|
} finally {
|
|
15057
15793
|
_iterator.f();
|
|
15058
15794
|
}
|
|
15059
|
-
|
|
15060
15795
|
return Array.from(new Set(labels));
|
|
15061
15796
|
}
|
|
15062
15797
|
},
|
|
@@ -15071,7 +15806,6 @@ var mapResize = function mapResize(map) {
|
|
|
15071
15806
|
if (identifier && identifier.uuid) state['uuid'] = identifier.uuid;
|
|
15072
15807
|
return state;
|
|
15073
15808
|
}
|
|
15074
|
-
|
|
15075
15809
|
return undefined;
|
|
15076
15810
|
},
|
|
15077
15811
|
setState: function setState(state) {
|
|
@@ -15092,18 +15826,19 @@ var mapResize = function mapResize(map) {
|
|
|
15092
15826
|
}
|
|
15093
15827
|
},
|
|
15094
15828
|
createFlatmap: function createFlatmap(state) {
|
|
15095
|
-
var
|
|
15096
|
-
|
|
15829
|
+
var _this6 = this;
|
|
15097
15830
|
if (!this.mapImp && !this.loading) {
|
|
15098
15831
|
this.loading = true;
|
|
15099
15832
|
var minimap = false;
|
|
15100
|
-
|
|
15101
15833
|
if (this.displayMinimap) {
|
|
15102
15834
|
minimap = {
|
|
15103
15835
|
position: "top-right"
|
|
15104
15836
|
};
|
|
15105
|
-
}
|
|
15837
|
+
}
|
|
15838
|
+
|
|
15839
|
+
//As for flatmap-viewer@2.2.7, see below for the documentation
|
|
15106
15840
|
//for the identifier:
|
|
15841
|
+
|
|
15107
15842
|
//@arg identifier {string|Object}
|
|
15108
15843
|
// A string or object identifying the map to load. If a string its
|
|
15109
15844
|
// value can be either the map's ``uuid``, assigned at generation time,
|
|
@@ -15117,11 +15852,10 @@ var mapResize = function mapResize(map) {
|
|
|
15117
15852
|
// @arg identifier.uuid {string} The unique uuid the flatmap. If given then this exact map will
|
|
15118
15853
|
// be loaded, overriding ``taxon`` and ``biologicalSex``.
|
|
15119
15854
|
|
|
15120
|
-
|
|
15121
15855
|
var identifier = {
|
|
15122
15856
|
taxon: this.entry
|
|
15123
|
-
};
|
|
15124
|
-
|
|
15857
|
+
};
|
|
15858
|
+
//This now handle the uses of uuid when resuming states
|
|
15125
15859
|
if (state) {
|
|
15126
15860
|
if (state.uuid) {
|
|
15127
15861
|
identifier = {
|
|
@@ -15129,7 +15863,6 @@ var mapResize = function mapResize(map) {
|
|
|
15129
15863
|
};
|
|
15130
15864
|
} else if (state.entry) {
|
|
15131
15865
|
identifier.taxon = state.entry;
|
|
15132
|
-
|
|
15133
15866
|
if (state.biologicalSex) {
|
|
15134
15867
|
identifier["biologicalSex"] = state.biologicalSex;
|
|
15135
15868
|
} else if (identifier.taxon === "NCBITaxon:9606") {
|
|
@@ -15144,25 +15877,23 @@ var mapResize = function mapResize(map) {
|
|
|
15144
15877
|
identifier["biologicalSex"] = this.biologicalSex;
|
|
15145
15878
|
}
|
|
15146
15879
|
}
|
|
15147
|
-
|
|
15148
15880
|
var promise1 = this.mapManager.loadMap(identifier, this.$refs.display, this.eventCallback(), {
|
|
15149
15881
|
//fullscreenControl: false,
|
|
15150
15882
|
//annotatable: false,
|
|
15151
15883
|
//debug: true,
|
|
15152
15884
|
featureInfo: this.featureInfo,
|
|
15153
15885
|
"min-zoom": this.minZoom,
|
|
15154
|
-
|
|
15886
|
+
layerControl: true,
|
|
15887
|
+
pathControls: true,
|
|
15155
15888
|
searchable: this.searchable,
|
|
15156
15889
|
tooltips: this.tooltips,
|
|
15157
15890
|
minimap: minimap
|
|
15158
15891
|
});
|
|
15159
15892
|
promise1.then(function (returnedObject) {
|
|
15160
|
-
|
|
15161
|
-
|
|
15162
|
-
|
|
15163
|
-
|
|
15164
|
-
if (_this3._stateToBeSet) _this3.restoreMapState(_this3._stateToBeSet);else {
|
|
15165
|
-
_this3.restoreMapState(state);
|
|
15893
|
+
_this6.mapImp = returnedObject;
|
|
15894
|
+
_this6.onFlatmapReady();
|
|
15895
|
+
if (_this6._stateToBeSet) _this6.restoreMapState(_this6._stateToBeSet);else {
|
|
15896
|
+
_this6.restoreMapState(state);
|
|
15166
15897
|
}
|
|
15167
15898
|
});
|
|
15168
15899
|
} else if (state) {
|
|
@@ -15173,15 +15904,37 @@ var mapResize = function mapResize(map) {
|
|
|
15173
15904
|
if (this.mapImp && !this.loading) this.restoreMapState(this._stateToBeSet);
|
|
15174
15905
|
}
|
|
15175
15906
|
},
|
|
15907
|
+
computePathControlsMaximumHeight: function computePathControlsMaximumHeight() {
|
|
15908
|
+
var elem = this.$refs.display;
|
|
15909
|
+
if (elem) {
|
|
15910
|
+
var computed = getComputedStyle(elem);
|
|
15911
|
+
var padding = parseInt(computed.paddingTop) + parseInt(computed.paddingBottom);
|
|
15912
|
+
var height = elem.clientHeight - padding;
|
|
15913
|
+
this.pathwaysMaxHeight = height - 150;
|
|
15914
|
+
}
|
|
15915
|
+
},
|
|
15916
|
+
mapResize: function mapResize() {
|
|
15917
|
+
if (this.mapImp) {
|
|
15918
|
+
this.mapImp.resize();
|
|
15919
|
+
}
|
|
15920
|
+
this.computePathControlsMaximumHeight();
|
|
15921
|
+
},
|
|
15176
15922
|
onFlatmapReady: function onFlatmapReady() {
|
|
15177
15923
|
// onFlatmapReady is used for functions that need to run immediately after the flatmap is loaded
|
|
15178
|
-
this.sensor = new ResizeSensor(this.$refs.display,
|
|
15924
|
+
this.sensor = new ResizeSensor(this.$refs.display, this.mapResize);
|
|
15925
|
+
if (this.mapImp.options && this.mapImp.options.style === "functional") {
|
|
15926
|
+
this.isFC = true;
|
|
15927
|
+
}
|
|
15179
15928
|
this.mapImp.setBackgroundOpacity(1);
|
|
15180
15929
|
this.backgroundChangeCallback(this.currentBackground);
|
|
15181
15930
|
this.pathways = this.mapImp.pathTypes();
|
|
15182
|
-
this
|
|
15931
|
+
this.layers = this.mapImp.getLayers();
|
|
15932
|
+
this.systems = this.mapImp.getSystems();
|
|
15183
15933
|
this.addResizeButtonToMinimap();
|
|
15184
15934
|
this.loading = false;
|
|
15935
|
+
this.computePathControlsMaximumHeight();
|
|
15936
|
+
this.drawerOpen = true;
|
|
15937
|
+
this.$emit("ready", this);
|
|
15185
15938
|
},
|
|
15186
15939
|
showMinimap: function showMinimap(flag) {
|
|
15187
15940
|
if (this.mapImp) this.mapImp.showMinimap(flag);
|
|
@@ -15189,10 +15942,9 @@ var mapResize = function mapResize(map) {
|
|
|
15189
15942
|
showPathwaysDrawer: function showPathwaysDrawer(flag) {
|
|
15190
15943
|
this.drawerOpen = flag;
|
|
15191
15944
|
},
|
|
15192
|
-
|
|
15193
|
-
|
|
15194
|
-
*
|
|
15195
|
-
* with the option to display the label using displayLabel flag.
|
|
15945
|
+
/**
|
|
15946
|
+
* Function to display features with annotation matching the provided term,
|
|
15947
|
+
* with the option to display the label using displayLabel flag.
|
|
15196
15948
|
*/
|
|
15197
15949
|
searchAndShowResult: function searchAndShowResult(term, displayLabel) {
|
|
15198
15950
|
if (this.mapImp) {
|
|
@@ -15201,27 +15953,22 @@ var mapResize = function mapResize(map) {
|
|
|
15201
15953
|
return true;
|
|
15202
15954
|
} else {
|
|
15203
15955
|
var searchResults = this.mapImp.search(term);
|
|
15204
|
-
|
|
15205
15956
|
if (searchResults && searchResults.results && searchResults.results.length > 0) {
|
|
15206
15957
|
this.mapImp.showSearchResults(searchResults);
|
|
15207
|
-
|
|
15208
15958
|
if (displayLabel && searchResults.results[0].featureId && searchResults.results[0].text) {
|
|
15209
15959
|
this.mapImp.showPopup(searchResults.results[0].featureId, searchResults.results[0].text, {
|
|
15210
15960
|
className: "custom-popup",
|
|
15211
15961
|
positionAtLastClick: false
|
|
15212
15962
|
});
|
|
15213
15963
|
}
|
|
15214
|
-
|
|
15215
15964
|
return true;
|
|
15216
15965
|
} else this.mapImp.clearSearchResults();
|
|
15217
15966
|
}
|
|
15218
15967
|
}
|
|
15219
|
-
|
|
15220
15968
|
return false;
|
|
15221
15969
|
},
|
|
15222
|
-
|
|
15223
|
-
|
|
15224
|
-
* Get the list of suggested terms
|
|
15970
|
+
/**
|
|
15971
|
+
* Get the list of suggested terms
|
|
15225
15972
|
*/
|
|
15226
15973
|
searchSuggestions: function searchSuggestions(term) {
|
|
15227
15974
|
if (this.mapImp) return this.mapImp.search(term);
|
|
@@ -15286,17 +16033,15 @@ var mapResize = function mapResize(map) {
|
|
|
15286
16033
|
type: String,
|
|
15287
16034
|
default: "Search now provide suggested terms. Add new legends. New tilesets. New female map. Improve upstream downstream information"
|
|
15288
16035
|
},
|
|
15289
|
-
|
|
15290
|
-
|
|
15291
|
-
* State containing state of the flatmap.
|
|
16036
|
+
/**
|
|
16037
|
+
* State containing state of the flatmap.
|
|
15292
16038
|
*/
|
|
15293
16039
|
state: {
|
|
15294
16040
|
type: Object,
|
|
15295
16041
|
default: undefined
|
|
15296
16042
|
},
|
|
15297
|
-
|
|
15298
|
-
|
|
15299
|
-
* Specify the endpoint of the flatmap server.
|
|
16043
|
+
/**
|
|
16044
|
+
* Specify the endpoint of the flatmap server.
|
|
15300
16045
|
*/
|
|
15301
16046
|
flatmapAPI: {
|
|
15302
16047
|
type: String,
|
|
@@ -15315,10 +16060,21 @@ var mapResize = function mapResize(map) {
|
|
|
15315
16060
|
},
|
|
15316
16061
|
data: function data() {
|
|
15317
16062
|
return {
|
|
15318
|
-
|
|
16063
|
+
layers: [],
|
|
15319
16064
|
pathways: [],
|
|
15320
|
-
|
|
15321
|
-
|
|
16065
|
+
sckanDisplay: [{
|
|
16066
|
+
label: "Path consistent with SCKAN",
|
|
16067
|
+
key: "VALID"
|
|
16068
|
+
}, {
|
|
16069
|
+
label: "Path inconsistent with SCKAN",
|
|
16070
|
+
key: "INVALID",
|
|
16071
|
+
enable: false
|
|
16072
|
+
}],
|
|
16073
|
+
centreLines: [{
|
|
16074
|
+
label: "Centrelines",
|
|
16075
|
+
key: "centrelines"
|
|
16076
|
+
}],
|
|
16077
|
+
pathwaysMaxHeight: 1000,
|
|
15322
16078
|
hoverVisibilities: [{
|
|
15323
16079
|
value: false
|
|
15324
16080
|
}, {
|
|
@@ -15336,12 +16092,13 @@ var mapResize = function mapResize(map) {
|
|
|
15336
16092
|
}, {
|
|
15337
16093
|
value: false
|
|
15338
16094
|
}],
|
|
16095
|
+
isFC: false,
|
|
15339
16096
|
inHelp: false,
|
|
15340
16097
|
currentBackground: "white",
|
|
15341
16098
|
availableBackground: ["white", "lightskyblue", "black"],
|
|
15342
16099
|
loading: false,
|
|
15343
16100
|
flatmapMarker: flatmap_marker,
|
|
15344
|
-
drawerOpen:
|
|
16101
|
+
drawerOpen: false,
|
|
15345
16102
|
tooltipContent: {
|
|
15346
16103
|
featureIds: []
|
|
15347
16104
|
},
|
|
@@ -15368,15 +16125,14 @@ var mapResize = function mapResize(map) {
|
|
|
15368
16125
|
},
|
|
15369
16126
|
mounted: function mounted() {
|
|
15370
16127
|
var flatmap = __webpack_require__("4979");
|
|
15371
|
-
|
|
15372
16128
|
this.mapManager = new flatmap.MapManager(this.flatmapAPI);
|
|
15373
16129
|
if (this.renderAtMounted) this.createFlatmap();
|
|
15374
16130
|
}
|
|
15375
16131
|
});
|
|
15376
16132
|
// CONCATENATED MODULE: ./src/components/FlatmapVuer.vue?vue&type=script&lang=js&
|
|
15377
16133
|
/* harmony default export */ var components_FlatmapVuervue_type_script_lang_js_ = (FlatmapVuervue_type_script_lang_js_);
|
|
15378
|
-
// EXTERNAL MODULE: ./src/components/FlatmapVuer.vue?vue&type=style&index=0&id=
|
|
15379
|
-
var
|
|
16134
|
+
// EXTERNAL MODULE: ./src/components/FlatmapVuer.vue?vue&type=style&index=0&id=66e8be2a&prod&scoped=true&lang=scss&
|
|
16135
|
+
var FlatmapVuervue_type_style_index_0_id_66e8be2a_prod_scoped_true_lang_scss_ = __webpack_require__("3c15");
|
|
15380
16136
|
|
|
15381
16137
|
// CONCATENATED MODULE: ./src/components/FlatmapVuer.vue
|
|
15382
16138
|
|
|
@@ -15393,18 +16149,128 @@ var FlatmapVuer_component = normalizeComponent(
|
|
|
15393
16149
|
staticRenderFns,
|
|
15394
16150
|
false,
|
|
15395
16151
|
null,
|
|
15396
|
-
"
|
|
16152
|
+
"66e8be2a",
|
|
15397
16153
|
null
|
|
15398
16154
|
|
|
15399
16155
|
)
|
|
15400
16156
|
|
|
15401
16157
|
/* harmony default export */ var FlatmapVuer = (FlatmapVuer_component.exports);
|
|
15402
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15403
|
-
var
|
|
15404
|
-
var
|
|
15405
|
-
|
|
16158
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e8f1c40a-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/MultiFlatmapVuer.vue?vue&type=template&id=0d8bc999&scoped=true&
|
|
16159
|
+
var MultiFlatmapVuervue_type_template_id_0d8bc999_scoped_true_render = function render() {
|
|
16160
|
+
var _vm = this,
|
|
16161
|
+
_c = _vm._self._c;
|
|
16162
|
+
return _c('div', {
|
|
16163
|
+
ref: "multiContainer",
|
|
16164
|
+
staticClass: "multi-container"
|
|
16165
|
+
}, [_c('div', {
|
|
16166
|
+
staticStyle: {
|
|
16167
|
+
"position": "absolute",
|
|
16168
|
+
"z-index": "10"
|
|
16169
|
+
}
|
|
16170
|
+
}, [_c('div', {
|
|
16171
|
+
staticClass: "species-display-text"
|
|
16172
|
+
}, [_vm._v(" Species ")]), _c('el-popover', {
|
|
16173
|
+
ref: "selectPopover",
|
|
16174
|
+
attrs: {
|
|
16175
|
+
"content": "Select a species",
|
|
16176
|
+
"placement": "right",
|
|
16177
|
+
"appendToBody": false,
|
|
16178
|
+
"trigger": "manual",
|
|
16179
|
+
"popper-class": "flatmap-popper right-popper"
|
|
16180
|
+
},
|
|
16181
|
+
model: {
|
|
16182
|
+
value: _vm.helpMode,
|
|
16183
|
+
callback: function callback($$v) {
|
|
16184
|
+
_vm.helpMode = $$v;
|
|
16185
|
+
},
|
|
16186
|
+
expression: "helpMode"
|
|
16187
|
+
}
|
|
16188
|
+
}), _c('el-select', {
|
|
16189
|
+
directives: [{
|
|
16190
|
+
name: "popover",
|
|
16191
|
+
rawName: "v-popover:selectPopover",
|
|
16192
|
+
arg: "selectPopover"
|
|
16193
|
+
}],
|
|
16194
|
+
staticClass: "select-box",
|
|
16195
|
+
attrs: {
|
|
16196
|
+
"id": "flatmap-select",
|
|
16197
|
+
"popper-append-to-body": _vm.appendToBody,
|
|
16198
|
+
"placeholder": "Select",
|
|
16199
|
+
"popper-class": "flatmap_dropdown"
|
|
16200
|
+
},
|
|
16201
|
+
on: {
|
|
16202
|
+
"change": _vm.setSpecies
|
|
16203
|
+
},
|
|
16204
|
+
model: {
|
|
16205
|
+
value: _vm.activeSpecies,
|
|
16206
|
+
callback: function callback($$v) {
|
|
16207
|
+
_vm.activeSpecies = $$v;
|
|
16208
|
+
},
|
|
16209
|
+
expression: "activeSpecies"
|
|
16210
|
+
}
|
|
16211
|
+
}, _vm._l(_vm.speciesList, function (item, key) {
|
|
16212
|
+
return _c('el-option', {
|
|
16213
|
+
key: key,
|
|
16214
|
+
attrs: {
|
|
16215
|
+
"label": key,
|
|
16216
|
+
"value": key
|
|
16217
|
+
}
|
|
16218
|
+
}, [_c('el-row', [_c('el-col', {
|
|
16219
|
+
attrs: {
|
|
16220
|
+
"span": 8
|
|
16221
|
+
}
|
|
16222
|
+
}, [_c('i', {
|
|
16223
|
+
class: item.iconClass
|
|
16224
|
+
})]), _c('el-col', {
|
|
16225
|
+
attrs: {
|
|
16226
|
+
"span": 12
|
|
16227
|
+
}
|
|
16228
|
+
}, [_vm._v(_vm._s(key))])], 1)], 1);
|
|
16229
|
+
}), 1)], 1), _vm._l(_vm.speciesList, function (item, key) {
|
|
16230
|
+
return _c('FlatmapVuer', {
|
|
16231
|
+
directives: [{
|
|
16232
|
+
name: "show",
|
|
16233
|
+
rawName: "v-show",
|
|
16234
|
+
value: _vm.activeSpecies == key,
|
|
16235
|
+
expression: "activeSpecies==key"
|
|
16236
|
+
}],
|
|
16237
|
+
key: key,
|
|
16238
|
+
ref: key,
|
|
16239
|
+
refInFor: true,
|
|
16240
|
+
staticStyle: {
|
|
16241
|
+
"height": "100%"
|
|
16242
|
+
},
|
|
16243
|
+
attrs: {
|
|
16244
|
+
"showLayer": _vm.showLayer,
|
|
16245
|
+
"entry": item.taxo,
|
|
16246
|
+
"biologicalSex": item.biologicalSex,
|
|
16247
|
+
"displayWarning": item.displayWarning,
|
|
16248
|
+
"warningMessage": _vm.warningMessage,
|
|
16249
|
+
"displayLatestChanges": item.displayLatestChanges,
|
|
16250
|
+
"latestChangesMessage": item.latestChangesMessage,
|
|
16251
|
+
"isLegacy": item.isLegacy,
|
|
16252
|
+
"featureInfo": _vm.featureInfo,
|
|
16253
|
+
"minZoom": _vm.minZoom,
|
|
16254
|
+
"pathControls": _vm.pathControls,
|
|
16255
|
+
"searchable": _vm.searchable,
|
|
16256
|
+
"helpMode": _vm.helpMode,
|
|
16257
|
+
"renderAtMounted": _vm.renderAtMounted,
|
|
16258
|
+
"displayMinimap": _vm.displayMinimap,
|
|
16259
|
+
"flatmapAPI": _vm.flatmapAPI,
|
|
16260
|
+
"sparcAPI": _vm.sparcAPI
|
|
16261
|
+
},
|
|
16262
|
+
on: {
|
|
16263
|
+
"view-latest-map": _vm.viewLatestMap,
|
|
16264
|
+
"resource-selected": _vm.FlatmapSelected,
|
|
16265
|
+
"ready": _vm.FlatmapReady,
|
|
16266
|
+
"pan-zoom-callback": _vm.panZoomCallback
|
|
16267
|
+
}
|
|
16268
|
+
});
|
|
16269
|
+
})], 2);
|
|
16270
|
+
};
|
|
16271
|
+
var MultiFlatmapVuervue_type_template_id_0d8bc999_scoped_true_staticRenderFns = [];
|
|
15406
16272
|
|
|
15407
|
-
// CONCATENATED MODULE: ./src/components/MultiFlatmapVuer.vue?vue&type=template&id=
|
|
16273
|
+
// CONCATENATED MODULE: ./src/components/MultiFlatmapVuer.vue?vue&type=template&id=0d8bc999&scoped=true&
|
|
15408
16274
|
|
|
15409
16275
|
// EXTERNAL MODULE: ./node_modules/element-ui/lib/theme-chalk/popover.css
|
|
15410
16276
|
var popover = __webpack_require__("06f1");
|
|
@@ -15430,7 +16296,7 @@ var lib_option_default = /*#__PURE__*/__webpack_require__.n(lib_option);
|
|
|
15430
16296
|
// EXTERNAL MODULE: external "core-js/modules/es.object.keys.js"
|
|
15431
16297
|
var es_object_keys_js_ = __webpack_require__("ea64");
|
|
15432
16298
|
|
|
15433
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--
|
|
16299
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/MultiFlatmapVuer.vue?vue&type=script&lang=js&
|
|
15434
16300
|
|
|
15435
16301
|
|
|
15436
16302
|
|
|
@@ -15452,65 +16318,6 @@ var es_object_keys_js_ = __webpack_require__("ea64");
|
|
|
15452
16318
|
|
|
15453
16319
|
|
|
15454
16320
|
|
|
15455
|
-
//
|
|
15456
|
-
//
|
|
15457
|
-
//
|
|
15458
|
-
//
|
|
15459
|
-
//
|
|
15460
|
-
//
|
|
15461
|
-
//
|
|
15462
|
-
//
|
|
15463
|
-
//
|
|
15464
|
-
//
|
|
15465
|
-
//
|
|
15466
|
-
//
|
|
15467
|
-
//
|
|
15468
|
-
//
|
|
15469
|
-
//
|
|
15470
|
-
//
|
|
15471
|
-
//
|
|
15472
|
-
//
|
|
15473
|
-
//
|
|
15474
|
-
//
|
|
15475
|
-
//
|
|
15476
|
-
//
|
|
15477
|
-
//
|
|
15478
|
-
//
|
|
15479
|
-
//
|
|
15480
|
-
//
|
|
15481
|
-
//
|
|
15482
|
-
//
|
|
15483
|
-
//
|
|
15484
|
-
//
|
|
15485
|
-
//
|
|
15486
|
-
//
|
|
15487
|
-
//
|
|
15488
|
-
//
|
|
15489
|
-
//
|
|
15490
|
-
//
|
|
15491
|
-
//
|
|
15492
|
-
//
|
|
15493
|
-
//
|
|
15494
|
-
//
|
|
15495
|
-
//
|
|
15496
|
-
//
|
|
15497
|
-
//
|
|
15498
|
-
//
|
|
15499
|
-
//
|
|
15500
|
-
//
|
|
15501
|
-
//
|
|
15502
|
-
//
|
|
15503
|
-
//
|
|
15504
|
-
//
|
|
15505
|
-
//
|
|
15506
|
-
//
|
|
15507
|
-
//
|
|
15508
|
-
//
|
|
15509
|
-
//
|
|
15510
|
-
//
|
|
15511
|
-
//
|
|
15512
|
-
//
|
|
15513
|
-
//
|
|
15514
16321
|
|
|
15515
16322
|
/* eslint-disable no-alert, no-console */
|
|
15516
16323
|
|
|
@@ -15544,7 +16351,6 @@ var TAXON_UUID = {
|
|
|
15544
16351
|
},
|
|
15545
16352
|
mounted: function mounted() {
|
|
15546
16353
|
var _this = this;
|
|
15547
|
-
|
|
15548
16354
|
this.initialise();
|
|
15549
16355
|
components_EventBus.$on('onActionClick', function (action) {
|
|
15550
16356
|
_this.FlatmapSelected(action);
|
|
@@ -15553,7 +16359,6 @@ var TAXON_UUID = {
|
|
|
15553
16359
|
methods: {
|
|
15554
16360
|
initialise: function initialise() {
|
|
15555
16361
|
var _this2 = this;
|
|
15556
|
-
|
|
15557
16362
|
return new Promise(function (resolve) {
|
|
15558
16363
|
if (_this2.requireInitialisation) {
|
|
15559
16364
|
//It has not been initialised yet
|
|
@@ -15569,25 +16374,21 @@ var TAXON_UUID = {
|
|
|
15569
16374
|
if (_this2.availableSpecies[key].biologicalSex) {
|
|
15570
16375
|
if (data[i].biologicalSex && data[i].biologicalSex === _this2.availableSpecies[key].biologicalSex) {
|
|
15571
16376
|
_this2.$set(_this2.speciesList, key, _this2.availableSpecies[key]);
|
|
15572
|
-
|
|
15573
16377
|
break;
|
|
15574
16378
|
}
|
|
15575
16379
|
} else {
|
|
15576
16380
|
_this2.$set(_this2.speciesList, key, _this2.availableSpecies[key]);
|
|
15577
|
-
|
|
15578
16381
|
break;
|
|
15579
16382
|
}
|
|
15580
16383
|
}
|
|
15581
16384
|
}
|
|
15582
|
-
});
|
|
15583
|
-
|
|
16385
|
+
});
|
|
16386
|
+
//Use the state species if it does not have any other species information
|
|
15584
16387
|
var species = _this2.initial;
|
|
15585
|
-
|
|
15586
16388
|
if (_this2.state) {
|
|
15587
16389
|
var mapState = _this2.state.state;
|
|
15588
16390
|
if ((!mapState || !mapState.uuid && !mapState.entry) && _this2.state.species) species = _this2.state.species;else species = undefined;
|
|
15589
16391
|
}
|
|
15590
|
-
|
|
15591
16392
|
if (species) {
|
|
15592
16393
|
//No state resuming, set the current flatmap to {this.initial}
|
|
15593
16394
|
if (species && _this2.speciesList[species] !== undefined) {
|
|
@@ -15595,13 +16396,11 @@ var TAXON_UUID = {
|
|
|
15595
16396
|
} else {
|
|
15596
16397
|
_this2.activeSpecies = Object.keys(_this2.speciesList)[0];
|
|
15597
16398
|
}
|
|
15598
|
-
|
|
15599
16399
|
_this2.setSpecies(_this2.activeSpecies, _this2.state ? _this2.state.state : undefined, 5);
|
|
15600
16400
|
}
|
|
15601
|
-
|
|
15602
16401
|
_this2._initialised = true;
|
|
15603
|
-
resolve();
|
|
15604
|
-
|
|
16402
|
+
resolve();
|
|
16403
|
+
//Resolve all other promises resolve in the list
|
|
15605
16404
|
_this2._resolveList.forEach(function (other) {
|
|
15606
16405
|
other();
|
|
15607
16406
|
});
|
|
@@ -15620,15 +16419,12 @@ var TAXON_UUID = {
|
|
|
15620
16419
|
},
|
|
15621
16420
|
FlatmapReady: function FlatmapReady(component) {
|
|
15622
16421
|
this.$emit("ready", component);
|
|
15623
|
-
this.addCloseButtonToMinimap();
|
|
15624
16422
|
},
|
|
15625
16423
|
getCoordinatesOfLastClick: function getCoordinatesOfLastClick() {
|
|
15626
16424
|
var flatmap = this.$refs[this.activeSpecies];
|
|
15627
|
-
|
|
15628
16425
|
if (flatmap && flatmap[0]) {
|
|
15629
16426
|
return flatmap[0].getCoordinatesOfLastClick();
|
|
15630
16427
|
}
|
|
15631
|
-
|
|
15632
16428
|
return undefined;
|
|
15633
16429
|
},
|
|
15634
16430
|
getCurrentFlatmap: function getCurrentFlatmap() {
|
|
@@ -15647,14 +16443,12 @@ var TAXON_UUID = {
|
|
|
15647
16443
|
},
|
|
15648
16444
|
setSpecies: function setSpecies(species, state, numberOfRetry) {
|
|
15649
16445
|
var _this3 = this;
|
|
15650
|
-
|
|
15651
16446
|
if (this.$refs && species in this.$refs) {
|
|
15652
16447
|
this.activeSpecies = species;
|
|
15653
16448
|
this.$refs[this.activeSpecies][0].createFlatmap(state);
|
|
15654
16449
|
this.$emit('flatmapChanged', this.activeSpecies);
|
|
15655
16450
|
} else if (numberOfRetry) {
|
|
15656
16451
|
var retry = numberOfRetry - 1;
|
|
15657
|
-
|
|
15658
16452
|
if (retry >= 0) {
|
|
15659
16453
|
external_vue_default.a.nextTick(function () {
|
|
15660
16454
|
_this3.setSpecies(species, state, retry);
|
|
@@ -15662,39 +16456,33 @@ var TAXON_UUID = {
|
|
|
15662
16456
|
}
|
|
15663
16457
|
}
|
|
15664
16458
|
},
|
|
15665
|
-
|
|
15666
|
-
|
|
15667
|
-
*
|
|
15668
|
-
*
|
|
15669
|
-
*
|
|
15670
|
-
* @private
|
|
16459
|
+
/**
|
|
16460
|
+
* Function to switch to the latest existing map from
|
|
16461
|
+
* a legacy map of the same species.
|
|
16462
|
+
*
|
|
16463
|
+
* @private
|
|
15671
16464
|
*/
|
|
15672
16465
|
viewLatestMap: function viewLatestMap(state) {
|
|
15673
16466
|
var keys = Object.keys(this.speciesList);
|
|
15674
|
-
|
|
15675
16467
|
for (var i = 0; i < keys.length; i++) {
|
|
15676
16468
|
var species = this.speciesList[keys[i]];
|
|
15677
|
-
|
|
15678
16469
|
if (!species.isLegacy && species.taxo === state.entry && species.biologicalSex === state.biologicalSex) {
|
|
15679
16470
|
this.setSpecies(keys[i], state, 0);
|
|
15680
16471
|
return;
|
|
15681
16472
|
}
|
|
15682
16473
|
}
|
|
15683
16474
|
},
|
|
15684
|
-
|
|
15685
|
-
|
|
15686
|
-
*
|
|
15687
|
-
*
|
|
15688
|
-
* @private
|
|
16475
|
+
/**
|
|
16476
|
+
* Create a legacy entry with the provided information
|
|
16477
|
+
*
|
|
16478
|
+
* @private
|
|
15689
16479
|
*/
|
|
15690
16480
|
createLegacyEntry: function createLegacyEntry(state, taxo, uuid) {
|
|
15691
16481
|
if (uuid && taxo) {
|
|
15692
16482
|
var name = "Legacy";
|
|
15693
|
-
|
|
15694
16483
|
if (state.species) {
|
|
15695
16484
|
if (state.species.slice(0, 6) === "Legacy") name = state.species;else name = name + " ".concat(state.species);
|
|
15696
16485
|
}
|
|
15697
|
-
|
|
15698
16486
|
this.$set(this.speciesList, name, {
|
|
15699
16487
|
taxo: taxo,
|
|
15700
16488
|
isLegacy: true,
|
|
@@ -15711,34 +16499,30 @@ var TAXON_UUID = {
|
|
|
15711
16499
|
};
|
|
15712
16500
|
}
|
|
15713
16501
|
},
|
|
15714
|
-
|
|
15715
|
-
|
|
15716
|
-
*
|
|
15717
|
-
*
|
|
15718
|
-
*
|
|
15719
|
-
* @private
|
|
16502
|
+
/**
|
|
16503
|
+
* Function used to translate the legacy map state to one that can be used in current
|
|
16504
|
+
* flatmap if required. If it is a legacy, an Select entry will be added
|
|
16505
|
+
*
|
|
16506
|
+
* @private
|
|
15720
16507
|
*/
|
|
15721
16508
|
updateState: function updateState(state) {
|
|
15722
16509
|
var _this4 = this;
|
|
15723
|
-
|
|
15724
16510
|
return new Promise(function (resolve) {
|
|
15725
16511
|
if (state && state.state) {
|
|
15726
|
-
var mapState = state.state;
|
|
15727
|
-
|
|
16512
|
+
var mapState = state.state;
|
|
16513
|
+
//uuid is not in the state, this is a legacy map
|
|
15728
16514
|
if (!mapState.uuid) {
|
|
15729
16515
|
if (mapState.entry) {
|
|
15730
16516
|
var uuid = mapState.entry in TAXON_UUID ? TAXON_UUID[mapState.entry] : undefined;
|
|
15731
|
-
|
|
15732
16517
|
var newState = _this4.createLegacyEntry(state, mapState.entry, uuid);
|
|
15733
|
-
|
|
15734
16518
|
resolve(newState ? newState : state);
|
|
15735
16519
|
}
|
|
15736
16520
|
} else if (mapState.entry) {
|
|
15737
16521
|
//uuid is in the state but should be checked if it is the latest map
|
|
15738
16522
|
//for that taxon
|
|
15739
16523
|
return new Promise(function () {
|
|
15740
|
-
var mapManager = new (__webpack_require__("4979").MapManager)(_this4.flatmapAPI);
|
|
15741
|
-
|
|
16524
|
+
var mapManager = new (__webpack_require__("4979").MapManager)(_this4.flatmapAPI);
|
|
16525
|
+
//mapManager.findMap_ is an async function so we need to wrap this with a promise
|
|
15742
16526
|
var identifier = {
|
|
15743
16527
|
taxon: mapState.entry
|
|
15744
16528
|
};
|
|
@@ -15753,19 +16537,18 @@ var TAXON_UUID = {
|
|
|
15753
16537
|
resolve(state);
|
|
15754
16538
|
});
|
|
15755
16539
|
});
|
|
15756
|
-
}
|
|
15757
|
-
|
|
16540
|
+
}
|
|
16541
|
+
//Create a new state and add the legacy map to the select
|
|
15758
16542
|
}
|
|
15759
16543
|
|
|
15760
16544
|
resolve(state);
|
|
15761
16545
|
});
|
|
15762
16546
|
},
|
|
15763
|
-
|
|
15764
|
-
|
|
15765
|
-
*
|
|
15766
|
-
*
|
|
15767
|
-
*
|
|
15768
|
-
* @public
|
|
16547
|
+
/**
|
|
16548
|
+
* Function used for getting the current states of the scene. This exported states
|
|
16549
|
+
* can be imported using the importStates method.
|
|
16550
|
+
*
|
|
16551
|
+
* @public
|
|
15769
16552
|
*/
|
|
15770
16553
|
getState: function getState() {
|
|
15771
16554
|
var state = {
|
|
@@ -15776,16 +16559,14 @@ var TAXON_UUID = {
|
|
|
15776
16559
|
state.state = map.getState();
|
|
15777
16560
|
return state;
|
|
15778
16561
|
},
|
|
15779
|
-
|
|
15780
|
-
|
|
15781
|
-
*
|
|
15782
|
-
*
|
|
15783
|
-
*
|
|
15784
|
-
* @public
|
|
16562
|
+
/**
|
|
16563
|
+
* Function used for importing the states of the scene. This exported states
|
|
16564
|
+
* can be imported using the read states method.
|
|
16565
|
+
*
|
|
16566
|
+
* @public
|
|
15785
16567
|
*/
|
|
15786
16568
|
setState: function setState(state) {
|
|
15787
16569
|
var _this5 = this;
|
|
15788
|
-
|
|
15789
16570
|
if (state) {
|
|
15790
16571
|
//Update state if required
|
|
15791
16572
|
this.updateState(state).then(function (currentState) {
|
|
@@ -15794,7 +16575,6 @@ var TAXON_UUID = {
|
|
|
15794
16575
|
_this5.setSpecies(currentState.species, currentState.state, 5);
|
|
15795
16576
|
} else if (currentState.state) {
|
|
15796
16577
|
var map = _this5.getCurrentFlatmap();
|
|
15797
|
-
|
|
15798
16578
|
map.setState(currentState.state);
|
|
15799
16579
|
}
|
|
15800
16580
|
});
|
|
@@ -15822,10 +16602,9 @@ var TAXON_UUID = {
|
|
|
15822
16602
|
type: Boolean,
|
|
15823
16603
|
default: false
|
|
15824
16604
|
},
|
|
15825
|
-
|
|
15826
|
-
|
|
15827
|
-
*
|
|
15828
|
-
* This value will be ignored if a valid state object is provided.
|
|
16605
|
+
/**
|
|
16606
|
+
* Initial species for the flatmap.
|
|
16607
|
+
* This value will be ignored if a valid state object is provided.
|
|
15829
16608
|
*/
|
|
15830
16609
|
initial: {
|
|
15831
16610
|
type: String,
|
|
@@ -15890,17 +16669,15 @@ var TAXON_UUID = {
|
|
|
15890
16669
|
};
|
|
15891
16670
|
}
|
|
15892
16671
|
},
|
|
15893
|
-
|
|
15894
|
-
|
|
15895
|
-
* State containing state of the flatmap.
|
|
16672
|
+
/**
|
|
16673
|
+
* State containing state of the flatmap.
|
|
15896
16674
|
*/
|
|
15897
16675
|
state: {
|
|
15898
16676
|
type: Object,
|
|
15899
16677
|
default: undefined
|
|
15900
16678
|
},
|
|
15901
|
-
|
|
15902
|
-
|
|
15903
|
-
* Specify the endpoint of the flatmap server.
|
|
16679
|
+
/**
|
|
16680
|
+
* Specify the endpoint of the flatmap server.
|
|
15904
16681
|
*/
|
|
15905
16682
|
flatmapAPI: {
|
|
15906
16683
|
type: String,
|
|
@@ -15931,8 +16708,8 @@ var TAXON_UUID = {
|
|
|
15931
16708
|
});
|
|
15932
16709
|
// CONCATENATED MODULE: ./src/components/MultiFlatmapVuer.vue?vue&type=script&lang=js&
|
|
15933
16710
|
/* harmony default export */ var components_MultiFlatmapVuervue_type_script_lang_js_ = (MultiFlatmapVuervue_type_script_lang_js_);
|
|
15934
|
-
// EXTERNAL MODULE: ./src/components/MultiFlatmapVuer.vue?vue&type=style&index=0&id=
|
|
15935
|
-
var
|
|
16711
|
+
// EXTERNAL MODULE: ./src/components/MultiFlatmapVuer.vue?vue&type=style&index=0&id=0d8bc999&prod&scoped=true&lang=scss&
|
|
16712
|
+
var MultiFlatmapVuervue_type_style_index_0_id_0d8bc999_prod_scoped_true_lang_scss_ = __webpack_require__("ec09");
|
|
15936
16713
|
|
|
15937
16714
|
// CONCATENATED MODULE: ./src/components/MultiFlatmapVuer.vue
|
|
15938
16715
|
|
|
@@ -15945,11 +16722,11 @@ var MultiFlatmapVuervue_type_style_index_0_id_6b4bad1c_scoped_true_lang_scss_ =
|
|
|
15945
16722
|
|
|
15946
16723
|
var MultiFlatmapVuer_component = normalizeComponent(
|
|
15947
16724
|
components_MultiFlatmapVuervue_type_script_lang_js_,
|
|
15948
|
-
|
|
15949
|
-
|
|
16725
|
+
MultiFlatmapVuervue_type_template_id_0d8bc999_scoped_true_render,
|
|
16726
|
+
MultiFlatmapVuervue_type_template_id_0d8bc999_scoped_true_staticRenderFns,
|
|
15950
16727
|
false,
|
|
15951
16728
|
null,
|
|
15952
|
-
"
|
|
16729
|
+
"0d8bc999",
|
|
15953
16730
|
null
|
|
15954
16731
|
|
|
15955
16732
|
)
|