@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
|
@@ -87,13 +87,6 @@ module.exports =
|
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
89
89
|
|
|
90
|
-
/***/ "0242":
|
|
91
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
92
|
-
|
|
93
|
-
// extracted by mini-css-extract-plugin
|
|
94
|
-
|
|
95
|
-
/***/ }),
|
|
96
|
-
|
|
97
90
|
/***/ "06f1":
|
|
98
91
|
/***/ (function(module, exports, __webpack_require__) {
|
|
99
92
|
|
|
@@ -101,13 +94,6 @@ module.exports =
|
|
|
101
94
|
|
|
102
95
|
/***/ }),
|
|
103
96
|
|
|
104
|
-
/***/ "0cda":
|
|
105
|
-
/***/ (function(module, exports) {
|
|
106
|
-
|
|
107
|
-
module.exports = require("core-js/modules/es.string.split.js");
|
|
108
|
-
|
|
109
|
-
/***/ }),
|
|
110
|
-
|
|
111
97
|
/***/ "0f6c":
|
|
112
98
|
/***/ (function(module, exports) {
|
|
113
99
|
|
|
@@ -195,12 +181,12 @@ module.exports =
|
|
|
195
181
|
/******/
|
|
196
182
|
/******/
|
|
197
183
|
/******/ // Load entry module and return exports
|
|
198
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
184
|
+
/******/ return __webpack_require__(__webpack_require__.s = 139);
|
|
199
185
|
/******/ })
|
|
200
186
|
/************************************************************************/
|
|
201
187
|
/******/ ({
|
|
202
188
|
|
|
203
|
-
/***/
|
|
189
|
+
/***/ 139:
|
|
204
190
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
205
191
|
|
|
206
192
|
"use strict";
|
|
@@ -223,10 +209,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
223
209
|
type: String,
|
|
224
210
|
default: 'start'
|
|
225
211
|
},
|
|
226
|
-
align:
|
|
227
|
-
type: String,
|
|
228
|
-
default: 'top'
|
|
229
|
-
}
|
|
212
|
+
align: String
|
|
230
213
|
},
|
|
231
214
|
|
|
232
215
|
computed: {
|
|
@@ -244,7 +227,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
244
227
|
|
|
245
228
|
render: function render(h) {
|
|
246
229
|
return h(this.tag, {
|
|
247
|
-
class: ['el-row', this.justify !== 'start' ? 'is-justify-' + this.justify : '', this.align
|
|
230
|
+
class: ['el-row', this.justify !== 'start' ? 'is-justify-' + this.justify : '', this.align ? 'is-align-' + this.align : '', { 'el-row--flex': this.type === 'flex' }],
|
|
248
231
|
style: this.style
|
|
249
232
|
}, this.$slots.default);
|
|
250
233
|
}
|
|
@@ -285,17 +268,6 @@ exports.default = function (ref) {
|
|
|
285
268
|
|
|
286
269
|
;
|
|
287
270
|
|
|
288
|
-
/***/ }),
|
|
289
|
-
|
|
290
|
-
/***/ "13aa":
|
|
291
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
292
|
-
|
|
293
|
-
"use strict";
|
|
294
|
-
/* 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");
|
|
295
|
-
/* 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__);
|
|
296
|
-
/* unused harmony reexport * */
|
|
297
|
-
|
|
298
|
-
|
|
299
271
|
/***/ }),
|
|
300
272
|
|
|
301
273
|
/***/ "13e3":
|
|
@@ -392,12 +364,12 @@ module.exports =
|
|
|
392
364
|
/******/
|
|
393
365
|
/******/
|
|
394
366
|
/******/ // Load entry module and return exports
|
|
395
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
367
|
+
/******/ return __webpack_require__(__webpack_require__.s = 133);
|
|
396
368
|
/******/ })
|
|
397
369
|
/************************************************************************/
|
|
398
370
|
/******/ ({
|
|
399
371
|
|
|
400
|
-
/***/
|
|
372
|
+
/***/ 133:
|
|
401
373
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
402
374
|
|
|
403
375
|
"use strict";
|
|
@@ -407,7 +379,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
407
379
|
var resize_event_ = __webpack_require__(16);
|
|
408
380
|
|
|
409
381
|
// EXTERNAL MODULE: external "element-ui/lib/utils/scrollbar-width"
|
|
410
|
-
var scrollbar_width_ = __webpack_require__(
|
|
382
|
+
var scrollbar_width_ = __webpack_require__(39);
|
|
411
383
|
var scrollbar_width_default = /*#__PURE__*/__webpack_require__.n(scrollbar_width_);
|
|
412
384
|
|
|
413
385
|
// EXTERNAL MODULE: external "element-ui/lib/utils/util"
|
|
@@ -722,7 +694,7 @@ module.exports = __webpack_require__("8122");
|
|
|
722
694
|
|
|
723
695
|
/***/ }),
|
|
724
696
|
|
|
725
|
-
/***/
|
|
697
|
+
/***/ 39:
|
|
726
698
|
/***/ (function(module, exports) {
|
|
727
699
|
|
|
728
700
|
module.exports = __webpack_require__("e62d");
|
|
@@ -752,17 +724,6 @@ module.exports = require("core-js/modules/web.dom-collections.iterator.js");
|
|
|
752
724
|
|
|
753
725
|
module.exports = require("core-js/modules/es.array.filter.js");
|
|
754
726
|
|
|
755
|
-
/***/ }),
|
|
756
|
-
|
|
757
|
-
/***/ "1b11":
|
|
758
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
759
|
-
|
|
760
|
-
"use strict";
|
|
761
|
-
/* 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");
|
|
762
|
-
/* 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__);
|
|
763
|
-
/* unused harmony reexport * */
|
|
764
|
-
|
|
765
|
-
|
|
766
727
|
/***/ }),
|
|
767
728
|
|
|
768
729
|
/***/ "1c32":
|
|
@@ -779,6 +740,31 @@ module.exports = require("core-js/modules/es.string.search.js");
|
|
|
779
740
|
|
|
780
741
|
/***/ }),
|
|
781
742
|
|
|
743
|
+
/***/ "21d1":
|
|
744
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
745
|
+
|
|
746
|
+
// extracted by mini-css-extract-plugin
|
|
747
|
+
|
|
748
|
+
/***/ }),
|
|
749
|
+
|
|
750
|
+
/***/ "233b":
|
|
751
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
752
|
+
|
|
753
|
+
"use strict";
|
|
754
|
+
/* 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");
|
|
755
|
+
/* 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__);
|
|
756
|
+
/* unused harmony reexport * */
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
/***/ }),
|
|
760
|
+
|
|
761
|
+
/***/ "2439":
|
|
762
|
+
/***/ (function(module, exports) {
|
|
763
|
+
|
|
764
|
+
module.exports = require("core-js/modules/es.array.push.js");
|
|
765
|
+
|
|
766
|
+
/***/ }),
|
|
767
|
+
|
|
782
768
|
/***/ "2a5e":
|
|
783
769
|
/***/ (function(module, exports, __webpack_require__) {
|
|
784
770
|
|
|
@@ -912,6 +898,17 @@ module.exports = require("core-js/modules/es.symbol.iterator.js");
|
|
|
912
898
|
|
|
913
899
|
module.exports = require("core-js/modules/es.regexp.to-string.js");
|
|
914
900
|
|
|
901
|
+
/***/ }),
|
|
902
|
+
|
|
903
|
+
/***/ "3c15":
|
|
904
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
905
|
+
|
|
906
|
+
"use strict";
|
|
907
|
+
/* 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");
|
|
908
|
+
/* 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__);
|
|
909
|
+
/* unused harmony reexport * */
|
|
910
|
+
|
|
911
|
+
|
|
915
912
|
/***/ }),
|
|
916
913
|
|
|
917
914
|
/***/ "3d2d":
|
|
@@ -1001,7 +998,7 @@ module.exports =
|
|
|
1001
998
|
/******/
|
|
1002
999
|
/******/
|
|
1003
1000
|
/******/ // Load entry module and return exports
|
|
1004
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
1001
|
+
/******/ return __webpack_require__(__webpack_require__.s = 116);
|
|
1005
1002
|
/******/ })
|
|
1006
1003
|
/************************************************************************/
|
|
1007
1004
|
/******/ ({
|
|
@@ -1108,7 +1105,7 @@ function normalizeComponent (
|
|
|
1108
1105
|
|
|
1109
1106
|
/***/ }),
|
|
1110
1107
|
|
|
1111
|
-
/***/
|
|
1108
|
+
/***/ 116:
|
|
1112
1109
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1113
1110
|
|
|
1114
1111
|
"use strict";
|
|
@@ -1207,6 +1204,13 @@ main.install = function (Vue) {
|
|
|
1207
1204
|
|
|
1208
1205
|
/***/ }),
|
|
1209
1206
|
|
|
1207
|
+
/***/ "400b":
|
|
1208
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1209
|
+
|
|
1210
|
+
// extracted by mini-css-extract-plugin
|
|
1211
|
+
|
|
1212
|
+
/***/ }),
|
|
1213
|
+
|
|
1210
1214
|
/***/ "4010":
|
|
1211
1215
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1212
1216
|
|
|
@@ -1220,6 +1224,8 @@ var _resizeObserverPolyfill = __webpack_require__("a1cc");
|
|
|
1220
1224
|
|
|
1221
1225
|
var _resizeObserverPolyfill2 = _interopRequireDefault(_resizeObserverPolyfill);
|
|
1222
1226
|
|
|
1227
|
+
var _throttleDebounce = __webpack_require__("831f");
|
|
1228
|
+
|
|
1223
1229
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
1224
1230
|
|
|
1225
1231
|
var isServer = typeof window === 'undefined';
|
|
@@ -1254,7 +1260,7 @@ var addResizeListener = exports.addResizeListener = function addResizeListener(e
|
|
|
1254
1260
|
if (isServer) return;
|
|
1255
1261
|
if (!element.__resizeListeners__) {
|
|
1256
1262
|
element.__resizeListeners__ = [];
|
|
1257
|
-
element.__ro__ = new _resizeObserverPolyfill2.default(resizeHandler);
|
|
1263
|
+
element.__ro__ = new _resizeObserverPolyfill2.default((0, _throttleDebounce.debounce)(16, resizeHandler));
|
|
1258
1264
|
element.__ro__.observe(element);
|
|
1259
1265
|
}
|
|
1260
1266
|
element.__resizeListeners__.push(fn);
|
|
@@ -1688,6 +1694,13 @@ module.exports = require("core-js/modules/es.array.iterator.js");
|
|
|
1688
1694
|
|
|
1689
1695
|
/***/ }),
|
|
1690
1696
|
|
|
1697
|
+
/***/ "4d90":
|
|
1698
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1699
|
+
|
|
1700
|
+
// extracted by mini-css-extract-plugin
|
|
1701
|
+
|
|
1702
|
+
/***/ }),
|
|
1703
|
+
|
|
1691
1704
|
/***/ "4e4b":
|
|
1692
1705
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1693
1706
|
|
|
@@ -1775,7 +1788,7 @@ module.exports =
|
|
|
1775
1788
|
/******/
|
|
1776
1789
|
/******/
|
|
1777
1790
|
/******/ // Load entry module and return exports
|
|
1778
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
1791
|
+
/******/ return __webpack_require__(__webpack_require__.s = 62);
|
|
1779
1792
|
/******/ })
|
|
1780
1793
|
/************************************************************************/
|
|
1781
1794
|
/******/ ({
|
|
@@ -1910,7 +1923,7 @@ module.exports = __webpack_require__("4010");
|
|
|
1910
1923
|
|
|
1911
1924
|
/***/ }),
|
|
1912
1925
|
|
|
1913
|
-
/***/
|
|
1926
|
+
/***/ 19:
|
|
1914
1927
|
/***/ (function(module, exports) {
|
|
1915
1928
|
|
|
1916
1929
|
module.exports = __webpack_require__("7435");
|
|
@@ -1938,14 +1951,14 @@ module.exports = __webpack_require__("8122");
|
|
|
1938
1951
|
|
|
1939
1952
|
/***/ }),
|
|
1940
1953
|
|
|
1941
|
-
/***/
|
|
1954
|
+
/***/ 32:
|
|
1942
1955
|
/***/ (function(module, exports) {
|
|
1943
1956
|
|
|
1944
1957
|
module.exports = __webpack_require__("2a5e");
|
|
1945
1958
|
|
|
1946
1959
|
/***/ }),
|
|
1947
1960
|
|
|
1948
|
-
/***/
|
|
1961
|
+
/***/ 34:
|
|
1949
1962
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1950
1963
|
|
|
1951
1964
|
"use strict";
|
|
@@ -2196,7 +2209,7 @@ component.options.__file = "packages/select/src/option.vue"
|
|
|
2196
2209
|
|
|
2197
2210
|
/***/ }),
|
|
2198
2211
|
|
|
2199
|
-
/***/
|
|
2212
|
+
/***/ 38:
|
|
2200
2213
|
/***/ (function(module, exports) {
|
|
2201
2214
|
|
|
2202
2215
|
module.exports = __webpack_require__("8bbc");
|
|
@@ -2224,7 +2237,7 @@ module.exports = __webpack_require__("6b7c");
|
|
|
2224
2237
|
|
|
2225
2238
|
/***/ }),
|
|
2226
2239
|
|
|
2227
|
-
/***/
|
|
2240
|
+
/***/ 62:
|
|
2228
2241
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
2229
2242
|
|
|
2230
2243
|
"use strict";
|
|
@@ -2390,7 +2403,7 @@ var render = function() {
|
|
|
2390
2403
|
return null
|
|
2391
2404
|
}
|
|
2392
2405
|
$event.preventDefault()
|
|
2393
|
-
_vm.
|
|
2406
|
+
_vm.handleNavigate("next")
|
|
2394
2407
|
},
|
|
2395
2408
|
function($event) {
|
|
2396
2409
|
if (
|
|
@@ -2403,7 +2416,7 @@ var render = function() {
|
|
|
2403
2416
|
return null
|
|
2404
2417
|
}
|
|
2405
2418
|
$event.preventDefault()
|
|
2406
|
-
_vm.
|
|
2419
|
+
_vm.handleNavigate("prev")
|
|
2407
2420
|
},
|
|
2408
2421
|
function($event) {
|
|
2409
2422
|
if (
|
|
@@ -2496,11 +2509,15 @@ var render = function() {
|
|
|
2496
2509
|
"validate-event": false,
|
|
2497
2510
|
tabindex: _vm.multiple && _vm.filterable ? "-1" : null
|
|
2498
2511
|
},
|
|
2499
|
-
on: {
|
|
2512
|
+
on: {
|
|
2513
|
+
focus: _vm.handleFocus,
|
|
2514
|
+
blur: _vm.handleBlur,
|
|
2515
|
+
input: _vm.debouncedOnInputChange,
|
|
2516
|
+
compositionstart: _vm.handleComposition,
|
|
2517
|
+
compositionupdate: _vm.handleComposition,
|
|
2518
|
+
compositionend: _vm.handleComposition
|
|
2519
|
+
},
|
|
2500
2520
|
nativeOn: {
|
|
2501
|
-
keyup: function($event) {
|
|
2502
|
-
return _vm.debouncedOnInputChange($event)
|
|
2503
|
-
},
|
|
2504
2521
|
keydown: [
|
|
2505
2522
|
function($event) {
|
|
2506
2523
|
if (
|
|
@@ -2514,7 +2531,7 @@ var render = function() {
|
|
|
2514
2531
|
}
|
|
2515
2532
|
$event.stopPropagation()
|
|
2516
2533
|
$event.preventDefault()
|
|
2517
|
-
_vm.
|
|
2534
|
+
_vm.handleNavigate("next")
|
|
2518
2535
|
},
|
|
2519
2536
|
function($event) {
|
|
2520
2537
|
if (
|
|
@@ -2528,7 +2545,7 @@ var render = function() {
|
|
|
2528
2545
|
}
|
|
2529
2546
|
$event.stopPropagation()
|
|
2530
2547
|
$event.preventDefault()
|
|
2531
|
-
_vm.
|
|
2548
|
+
_vm.handleNavigate("prev")
|
|
2532
2549
|
},
|
|
2533
2550
|
function($event) {
|
|
2534
2551
|
if (
|
|
@@ -2564,9 +2581,6 @@ var render = function() {
|
|
|
2564
2581
|
_vm.visible = false
|
|
2565
2582
|
}
|
|
2566
2583
|
],
|
|
2567
|
-
paste: function($event) {
|
|
2568
|
-
return _vm.debouncedOnInputChange($event)
|
|
2569
|
-
},
|
|
2570
2584
|
mouseenter: function($event) {
|
|
2571
2585
|
_vm.inputHovering = true
|
|
2572
2586
|
},
|
|
@@ -2852,10 +2866,10 @@ if (false) { var api; }
|
|
|
2852
2866
|
component.options.__file = "packages/select/src/select-dropdown.vue"
|
|
2853
2867
|
/* harmony default export */ var select_dropdown = (component.exports);
|
|
2854
2868
|
// EXTERNAL MODULE: ./packages/select/src/option.vue + 4 modules
|
|
2855
|
-
var src_option = __webpack_require__(
|
|
2869
|
+
var src_option = __webpack_require__(34);
|
|
2856
2870
|
|
|
2857
2871
|
// EXTERNAL MODULE: external "element-ui/lib/tag"
|
|
2858
|
-
var tag_ = __webpack_require__(
|
|
2872
|
+
var tag_ = __webpack_require__(38);
|
|
2859
2873
|
var tag_default = /*#__PURE__*/__webpack_require__.n(tag_);
|
|
2860
2874
|
|
|
2861
2875
|
// EXTERNAL MODULE: external "element-ui/lib/scrollbar"
|
|
@@ -2863,7 +2877,7 @@ var scrollbar_ = __webpack_require__(15);
|
|
|
2863
2877
|
var scrollbar_default = /*#__PURE__*/__webpack_require__.n(scrollbar_);
|
|
2864
2878
|
|
|
2865
2879
|
// EXTERNAL MODULE: external "throttle-debounce/debounce"
|
|
2866
|
-
var debounce_ = __webpack_require__(
|
|
2880
|
+
var debounce_ = __webpack_require__(19);
|
|
2867
2881
|
var debounce_default = /*#__PURE__*/__webpack_require__.n(debounce_);
|
|
2868
2882
|
|
|
2869
2883
|
// EXTERNAL MODULE: external "element-ui/lib/utils/clickoutside"
|
|
@@ -2874,7 +2888,7 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
|
|
|
2874
2888
|
var resize_event_ = __webpack_require__(16);
|
|
2875
2889
|
|
|
2876
2890
|
// EXTERNAL MODULE: external "element-ui/lib/utils/scroll-into-view"
|
|
2877
|
-
var scroll_into_view_ = __webpack_require__(
|
|
2891
|
+
var scroll_into_view_ = __webpack_require__(32);
|
|
2878
2892
|
var scroll_into_view_default = /*#__PURE__*/__webpack_require__.n(scroll_into_view_);
|
|
2879
2893
|
|
|
2880
2894
|
// EXTERNAL MODULE: external "element-ui/lib/utils/util"
|
|
@@ -3083,6 +3097,8 @@ var shared_ = __webpack_require__(21);
|
|
|
3083
3097
|
//
|
|
3084
3098
|
//
|
|
3085
3099
|
//
|
|
3100
|
+
//
|
|
3101
|
+
//
|
|
3086
3102
|
|
|
3087
3103
|
|
|
3088
3104
|
|
|
@@ -3380,6 +3396,11 @@ var shared_ = __webpack_require__(21);
|
|
|
3380
3396
|
},
|
|
3381
3397
|
|
|
3382
3398
|
methods: {
|
|
3399
|
+
handleNavigate: function handleNavigate(direction) {
|
|
3400
|
+
if (this.isOnComposition) return;
|
|
3401
|
+
|
|
3402
|
+
this.navigateOptions(direction);
|
|
3403
|
+
},
|
|
3383
3404
|
handleComposition: function handleComposition(event) {
|
|
3384
3405
|
var _this5 = this;
|
|
3385
3406
|
|
|
@@ -3465,7 +3486,7 @@ var shared_ = __webpack_require__(21);
|
|
|
3465
3486
|
}
|
|
3466
3487
|
}
|
|
3467
3488
|
if (option) return option;
|
|
3468
|
-
var label = !isObject && !isNull && !isUndefined ? value : '';
|
|
3489
|
+
var label = !isObject && !isNull && !isUndefined ? String(value) : '';
|
|
3469
3490
|
var newOption = {
|
|
3470
3491
|
value: value,
|
|
3471
3492
|
currentLabel: label
|
|
@@ -3505,10 +3526,10 @@ var shared_ = __webpack_require__(21);
|
|
|
3505
3526
|
handleFocus: function handleFocus(event) {
|
|
3506
3527
|
if (!this.softFocus) {
|
|
3507
3528
|
if (this.automaticDropdown || this.filterable) {
|
|
3508
|
-
this.visible
|
|
3509
|
-
if (this.filterable) {
|
|
3529
|
+
if (this.filterable && !this.visible) {
|
|
3510
3530
|
this.menuVisibleOnFocus = true;
|
|
3511
3531
|
}
|
|
3532
|
+
this.visible = true;
|
|
3512
3533
|
}
|
|
3513
3534
|
this.$emit('focus', event);
|
|
3514
3535
|
} else {
|
|
@@ -3582,8 +3603,9 @@ var shared_ = __webpack_require__(21);
|
|
|
3582
3603
|
return item.tagName === 'INPUT';
|
|
3583
3604
|
})[0];
|
|
3584
3605
|
var tags = _this10.$refs.tags;
|
|
3606
|
+
var tagsHeight = tags ? Math.round(tags.getBoundingClientRect().height) : 0;
|
|
3585
3607
|
var sizeInMap = _this10.initialInputHeight || 40;
|
|
3586
|
-
input.style.height = _this10.selected.length === 0 ? sizeInMap + 'px' : Math.max(tags ?
|
|
3608
|
+
input.style.height = _this10.selected.length === 0 ? sizeInMap + 'px' : Math.max(tags ? tagsHeight + (tagsHeight > sizeInMap ? 6 : 0) : 0, sizeInMap) + 'px';
|
|
3587
3609
|
if (_this10.visible && _this10.emptyText !== false) {
|
|
3588
3610
|
_this10.broadcast('ElSelectDropdown', 'updatePopper');
|
|
3589
3611
|
}
|
|
@@ -4104,13 +4126,6 @@ exports.PopupManager = _popupManager2.default;
|
|
|
4104
4126
|
|
|
4105
4127
|
/***/ }),
|
|
4106
4128
|
|
|
4107
|
-
/***/ "58e9":
|
|
4108
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
4109
|
-
|
|
4110
|
-
// extracted by mini-css-extract-plugin
|
|
4111
|
-
|
|
4112
|
-
/***/ }),
|
|
4113
|
-
|
|
4114
4129
|
/***/ "5924":
|
|
4115
4130
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4116
4131
|
|
|
@@ -4222,7 +4237,7 @@ function addClass(el, cls) {
|
|
|
4222
4237
|
}
|
|
4223
4238
|
}
|
|
4224
4239
|
if (!el.classList) {
|
|
4225
|
-
el.
|
|
4240
|
+
el.setAttribute('class', curClass);
|
|
4226
4241
|
}
|
|
4227
4242
|
};
|
|
4228
4243
|
|
|
@@ -4243,7 +4258,7 @@ function removeClass(el, cls) {
|
|
|
4243
4258
|
}
|
|
4244
4259
|
}
|
|
4245
4260
|
if (!el.classList) {
|
|
4246
|
-
el.
|
|
4261
|
+
el.setAttribute('class', trim(curClass));
|
|
4247
4262
|
}
|
|
4248
4263
|
};
|
|
4249
4264
|
|
|
@@ -4307,10 +4322,10 @@ function setStyle(element, styleName, value) {
|
|
|
4307
4322
|
var isScroll = exports.isScroll = function isScroll(el, vertical) {
|
|
4308
4323
|
if (isServer) return;
|
|
4309
4324
|
|
|
4310
|
-
var determinedDirection = vertical !== null
|
|
4325
|
+
var determinedDirection = vertical !== null && vertical !== undefined;
|
|
4311
4326
|
var overflow = determinedDirection ? vertical ? getStyle(el, 'overflow-y') : getStyle(el, 'overflow-x') : getStyle(el, 'overflow');
|
|
4312
4327
|
|
|
4313
|
-
return overflow.match(/(scroll|auto)/);
|
|
4328
|
+
return overflow.match(/(scroll|auto|overlay)/);
|
|
4314
4329
|
};
|
|
4315
4330
|
|
|
4316
4331
|
var getScrollContainer = exports.getScrollContainer = function getScrollContainer(el, vertical) {
|
|
@@ -4352,7 +4367,14 @@ var isInContainer = exports.isInContainer = function isInContainer(el, container
|
|
|
4352
4367
|
|
|
4353
4368
|
/***/ }),
|
|
4354
4369
|
|
|
4355
|
-
/***/ "
|
|
4370
|
+
/***/ "5a3b":
|
|
4371
|
+
/***/ (function(module, exports) {
|
|
4372
|
+
|
|
4373
|
+
module.exports = require("core-js/modules/es.regexp.test.js");
|
|
4374
|
+
|
|
4375
|
+
/***/ }),
|
|
4376
|
+
|
|
4377
|
+
/***/ "5ac6":
|
|
4356
4378
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4357
4379
|
|
|
4358
4380
|
// extracted by mini-css-extract-plugin
|
|
@@ -5724,7 +5746,7 @@ module.exports =
|
|
|
5724
5746
|
/******/
|
|
5725
5747
|
/******/
|
|
5726
5748
|
/******/ // Load entry module and return exports
|
|
5727
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
5749
|
+
/******/ return __webpack_require__(__webpack_require__.s = 89);
|
|
5728
5750
|
/******/ })
|
|
5729
5751
|
/************************************************************************/
|
|
5730
5752
|
/******/ ({
|
|
@@ -5838,7 +5860,7 @@ module.exports = __webpack_require__("d010");
|
|
|
5838
5860
|
|
|
5839
5861
|
/***/ }),
|
|
5840
5862
|
|
|
5841
|
-
/***/
|
|
5863
|
+
/***/ 89:
|
|
5842
5864
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
5843
5865
|
|
|
5844
5866
|
"use strict";
|
|
@@ -5917,7 +5939,9 @@ var keyCode = Object.freeze({
|
|
|
5917
5939
|
return (this.elFormItem || {}).elFormItemSize;
|
|
5918
5940
|
},
|
|
5919
5941
|
_elTag: function _elTag() {
|
|
5920
|
-
|
|
5942
|
+
var tag = (this.$vnode.data || {}).tag;
|
|
5943
|
+
if (!tag || tag === 'component') tag = 'div';
|
|
5944
|
+
return tag;
|
|
5921
5945
|
},
|
|
5922
5946
|
radioGroupSize: function radioGroupSize() {
|
|
5923
5947
|
return this.size || this._elFormItemSize || (this.$ELEMENT || {}).size;
|
|
@@ -6118,7 +6142,7 @@ module.exports =
|
|
|
6118
6142
|
/******/
|
|
6119
6143
|
/******/
|
|
6120
6144
|
/******/ // Load entry module and return exports
|
|
6121
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
6145
|
+
/******/ return __webpack_require__(__webpack_require__.s = 78);
|
|
6122
6146
|
/******/ })
|
|
6123
6147
|
/************************************************************************/
|
|
6124
6148
|
/******/ ({
|
|
@@ -6253,7 +6277,7 @@ module.exports = __webpack_require__("8bbf");
|
|
|
6253
6277
|
|
|
6254
6278
|
/***/ }),
|
|
6255
6279
|
|
|
6256
|
-
/***/
|
|
6280
|
+
/***/ 78:
|
|
6257
6281
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
6258
6282
|
|
|
6259
6283
|
"use strict";
|
|
@@ -6677,6 +6701,20 @@ exports.default = {
|
|
|
6677
6701
|
|
|
6678
6702
|
/***/ }),
|
|
6679
6703
|
|
|
6704
|
+
/***/ "712c":
|
|
6705
|
+
/***/ (function(module, exports) {
|
|
6706
|
+
|
|
6707
|
+
module.exports = require("core-js/modules/web.url-search-params.js");
|
|
6708
|
+
|
|
6709
|
+
/***/ }),
|
|
6710
|
+
|
|
6711
|
+
/***/ "722b":
|
|
6712
|
+
/***/ (function(module, exports) {
|
|
6713
|
+
|
|
6714
|
+
module.exports = require("core-js/modules/es.array.unscopables.flat.js");
|
|
6715
|
+
|
|
6716
|
+
/***/ }),
|
|
6717
|
+
|
|
6680
6718
|
/***/ "7435":
|
|
6681
6719
|
/***/ (function(module, exports) {
|
|
6682
6720
|
|
|
@@ -6691,6 +6729,13 @@ module.exports = require("throttle-debounce/debounce");
|
|
|
6691
6729
|
|
|
6692
6730
|
/***/ }),
|
|
6693
6731
|
|
|
6732
|
+
/***/ "7a9a":
|
|
6733
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
6734
|
+
|
|
6735
|
+
// extracted by mini-css-extract-plugin
|
|
6736
|
+
|
|
6737
|
+
/***/ }),
|
|
6738
|
+
|
|
6694
6739
|
/***/ "7b31":
|
|
6695
6740
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6696
6741
|
|
|
@@ -6778,7 +6823,7 @@ module.exports =
|
|
|
6778
6823
|
/******/
|
|
6779
6824
|
/******/
|
|
6780
6825
|
/******/ // Load entry module and return exports
|
|
6781
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
6826
|
+
/******/ return __webpack_require__(__webpack_require__.s = 117);
|
|
6782
6827
|
/******/ })
|
|
6783
6828
|
/************************************************************************/
|
|
6784
6829
|
/******/ ({
|
|
@@ -6885,7 +6930,7 @@ function normalizeComponent (
|
|
|
6885
6930
|
|
|
6886
6931
|
/***/ }),
|
|
6887
6932
|
|
|
6888
|
-
/***/
|
|
6933
|
+
/***/ 117:
|
|
6889
6934
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
6890
6935
|
|
|
6891
6936
|
"use strict";
|
|
@@ -7088,7 +7133,7 @@ module.exports =
|
|
|
7088
7133
|
/******/
|
|
7089
7134
|
/******/
|
|
7090
7135
|
/******/ // Load entry module and return exports
|
|
7091
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
7136
|
+
/******/ return __webpack_require__(__webpack_require__.s = 93);
|
|
7092
7137
|
/******/ })
|
|
7093
7138
|
/************************************************************************/
|
|
7094
7139
|
/******/ ({
|
|
@@ -7202,7 +7247,7 @@ module.exports = __webpack_require__("d010");
|
|
|
7202
7247
|
|
|
7203
7248
|
/***/ }),
|
|
7204
7249
|
|
|
7205
|
-
/***/
|
|
7250
|
+
/***/ 93:
|
|
7206
7251
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
7207
7252
|
|
|
7208
7253
|
"use strict";
|
|
@@ -7592,6 +7637,31 @@ function objToArray(obj) {
|
|
|
7592
7637
|
return isEmpty(obj) ? [] : [obj];
|
|
7593
7638
|
}
|
|
7594
7639
|
|
|
7640
|
+
/***/ }),
|
|
7641
|
+
|
|
7642
|
+
/***/ "82cc":
|
|
7643
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
7644
|
+
|
|
7645
|
+
// extracted by mini-css-extract-plugin
|
|
7646
|
+
|
|
7647
|
+
/***/ }),
|
|
7648
|
+
|
|
7649
|
+
/***/ "831f":
|
|
7650
|
+
/***/ (function(module, exports) {
|
|
7651
|
+
|
|
7652
|
+
module.exports = require("throttle-debounce");
|
|
7653
|
+
|
|
7654
|
+
/***/ }),
|
|
7655
|
+
|
|
7656
|
+
/***/ "83af":
|
|
7657
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
7658
|
+
|
|
7659
|
+
"use strict";
|
|
7660
|
+
/* 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");
|
|
7661
|
+
/* 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__);
|
|
7662
|
+
/* unused harmony reexport * */
|
|
7663
|
+
|
|
7664
|
+
|
|
7595
7665
|
/***/ }),
|
|
7596
7666
|
|
|
7597
7667
|
/***/ "8535":
|
|
@@ -7695,7 +7765,7 @@ module.exports =
|
|
|
7695
7765
|
/******/
|
|
7696
7766
|
/******/
|
|
7697
7767
|
/******/ // Load entry module and return exports
|
|
7698
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
7768
|
+
/******/ return __webpack_require__(__webpack_require__.s = 73);
|
|
7699
7769
|
/******/ })
|
|
7700
7770
|
/************************************************************************/
|
|
7701
7771
|
/******/ ({
|
|
@@ -7816,14 +7886,21 @@ module.exports = __webpack_require__("5924");
|
|
|
7816
7886
|
|
|
7817
7887
|
/***/ }),
|
|
7818
7888
|
|
|
7819
|
-
/***/
|
|
7889
|
+
/***/ 42:
|
|
7820
7890
|
/***/ (function(module, exports) {
|
|
7821
7891
|
|
|
7822
7892
|
module.exports = __webpack_require__("c56a");
|
|
7823
7893
|
|
|
7824
7894
|
/***/ }),
|
|
7825
7895
|
|
|
7826
|
-
/***/
|
|
7896
|
+
/***/ 7:
|
|
7897
|
+
/***/ (function(module, exports) {
|
|
7898
|
+
|
|
7899
|
+
module.exports = __webpack_require__("8bbf");
|
|
7900
|
+
|
|
7901
|
+
/***/ }),
|
|
7902
|
+
|
|
7903
|
+
/***/ 73:
|
|
7827
7904
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
7828
7905
|
|
|
7829
7906
|
"use strict";
|
|
@@ -7971,7 +8048,7 @@ var dom_ = __webpack_require__(2);
|
|
|
7971
8048
|
var popup_ = __webpack_require__(13);
|
|
7972
8049
|
|
|
7973
8050
|
// EXTERNAL MODULE: external "element-ui/lib/utils/after-leave"
|
|
7974
|
-
var after_leave_ = __webpack_require__(
|
|
8051
|
+
var after_leave_ = __webpack_require__(42);
|
|
7975
8052
|
var after_leave_default = /*#__PURE__*/__webpack_require__.n(after_leave_);
|
|
7976
8053
|
|
|
7977
8054
|
// CONCATENATED MODULE: ./packages/loading/src/directive.js
|
|
@@ -8035,7 +8112,7 @@ loadingDirective.install = function (Vue) {
|
|
|
8035
8112
|
el.mask.style[property] = el.maskStyle[property];
|
|
8036
8113
|
});
|
|
8037
8114
|
|
|
8038
|
-
if (el.originalPosition !== 'absolute' && el.originalPosition !== 'fixed') {
|
|
8115
|
+
if (el.originalPosition !== 'absolute' && el.originalPosition !== 'fixed' && el.originalPosition !== 'sticky') {
|
|
8039
8116
|
Object(dom_["addClass"])(parent, 'el-loading-parent--relative');
|
|
8040
8117
|
}
|
|
8041
8118
|
if (binding.modifiers.fullscreen && binding.modifiers.lock) {
|
|
@@ -8193,7 +8270,7 @@ var src_Loading = function Loading() {
|
|
|
8193
8270
|
});
|
|
8194
8271
|
|
|
8195
8272
|
src_addStyle(options, parent, instance);
|
|
8196
|
-
if (instance.originalPosition !== 'absolute' && instance.originalPosition !== 'fixed') {
|
|
8273
|
+
if (instance.originalPosition !== 'absolute' && instance.originalPosition !== 'fixed' && instance.originalPosition !== 'sticky') {
|
|
8197
8274
|
Object(dom_["addClass"])(parent, 'el-loading-parent--relative');
|
|
8198
8275
|
}
|
|
8199
8276
|
if (options.fullscreen && options.lock) {
|
|
@@ -8226,13 +8303,6 @@ var src_Loading = function Loading() {
|
|
|
8226
8303
|
|
|
8227
8304
|
/***/ }),
|
|
8228
8305
|
|
|
8229
|
-
/***/ 7:
|
|
8230
|
-
/***/ (function(module, exports) {
|
|
8231
|
-
|
|
8232
|
-
module.exports = __webpack_require__("8bbf");
|
|
8233
|
-
|
|
8234
|
-
/***/ }),
|
|
8235
|
-
|
|
8236
8306
|
/***/ 9:
|
|
8237
8307
|
/***/ (function(module, exports) {
|
|
8238
8308
|
|
|
@@ -8331,7 +8401,7 @@ module.exports =
|
|
|
8331
8401
|
/******/
|
|
8332
8402
|
/******/
|
|
8333
8403
|
/******/ // Load entry module and return exports
|
|
8334
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
8404
|
+
/******/ return __webpack_require__(__webpack_require__.s = 132);
|
|
8335
8405
|
/******/ })
|
|
8336
8406
|
/************************************************************************/
|
|
8337
8407
|
/******/ ({
|
|
@@ -8438,7 +8508,7 @@ function normalizeComponent (
|
|
|
8438
8508
|
|
|
8439
8509
|
/***/ }),
|
|
8440
8510
|
|
|
8441
|
-
/***/
|
|
8511
|
+
/***/ 132:
|
|
8442
8512
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
8443
8513
|
|
|
8444
8514
|
"use strict";
|
|
@@ -8560,13 +8630,6 @@ module.exports = require("vue");
|
|
|
8560
8630
|
|
|
8561
8631
|
/***/ }),
|
|
8562
8632
|
|
|
8563
|
-
/***/ "940c":
|
|
8564
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
8565
|
-
|
|
8566
|
-
// extracted by mini-css-extract-plugin
|
|
8567
|
-
|
|
8568
|
-
/***/ }),
|
|
8569
|
-
|
|
8570
8633
|
/***/ "97d3":
|
|
8571
8634
|
/***/ (function(module, exports) {
|
|
8572
8635
|
|
|
@@ -8656,17 +8719,6 @@ var RE_NARGS = /(%|)\{([0-9a-zA-Z_]+)\}/g;
|
|
|
8656
8719
|
* https://github.com/Matt-Esch/string-template/index.js
|
|
8657
8720
|
*/
|
|
8658
8721
|
|
|
8659
|
-
/***/ }),
|
|
8660
|
-
|
|
8661
|
-
/***/ "9e82":
|
|
8662
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
8663
|
-
|
|
8664
|
-
"use strict";
|
|
8665
|
-
/* 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");
|
|
8666
|
-
/* 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__);
|
|
8667
|
-
/* unused harmony reexport * */
|
|
8668
|
-
|
|
8669
|
-
|
|
8670
8722
|
/***/ }),
|
|
8671
8723
|
|
|
8672
8724
|
/***/ "a1cc":
|
|
@@ -8763,7 +8815,7 @@ module.exports =
|
|
|
8763
8815
|
/******/
|
|
8764
8816
|
/******/
|
|
8765
8817
|
/******/ // Load entry module and return exports
|
|
8766
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
8818
|
+
/******/ return __webpack_require__(__webpack_require__.s = 103);
|
|
8767
8819
|
/******/ })
|
|
8768
8820
|
/************************************************************************/
|
|
8769
8821
|
/******/ ({
|
|
@@ -8870,7 +8922,7 @@ function normalizeComponent (
|
|
|
8870
8922
|
|
|
8871
8923
|
/***/ }),
|
|
8872
8924
|
|
|
8873
|
-
/***/
|
|
8925
|
+
/***/ 103:
|
|
8874
8926
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
8875
8927
|
|
|
8876
8928
|
"use strict";
|
|
@@ -9012,6 +9064,24 @@ var isDefined = exports.isDefined = function isDefined(val) {
|
|
|
9012
9064
|
|
|
9013
9065
|
/***/ }),
|
|
9014
9066
|
|
|
9067
|
+
/***/ "a79a":
|
|
9068
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9069
|
+
|
|
9070
|
+
"use strict";
|
|
9071
|
+
/* 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");
|
|
9072
|
+
/* 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__);
|
|
9073
|
+
/* unused harmony reexport * */
|
|
9074
|
+
|
|
9075
|
+
|
|
9076
|
+
/***/ }),
|
|
9077
|
+
|
|
9078
|
+
/***/ "a9ee":
|
|
9079
|
+
/***/ (function(module, exports) {
|
|
9080
|
+
|
|
9081
|
+
module.exports = require("core-js/modules/es.json.stringify.js");
|
|
9082
|
+
|
|
9083
|
+
/***/ }),
|
|
9084
|
+
|
|
9015
9085
|
/***/ "aaa5":
|
|
9016
9086
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9017
9087
|
|
|
@@ -9031,17 +9101,6 @@ var isDefined = exports.isDefined = function isDefined(val) {
|
|
|
9031
9101
|
|
|
9032
9102
|
module.exports = require("css-element-queries/src/ResizeSensor");
|
|
9033
9103
|
|
|
9034
|
-
/***/ }),
|
|
9035
|
-
|
|
9036
|
-
/***/ "b191":
|
|
9037
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9038
|
-
|
|
9039
|
-
"use strict";
|
|
9040
|
-
/* 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");
|
|
9041
|
-
/* 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__);
|
|
9042
|
-
/* unused harmony reexport * */
|
|
9043
|
-
|
|
9044
|
-
|
|
9045
9104
|
/***/ }),
|
|
9046
9105
|
|
|
9047
9106
|
/***/ "b2d6":
|
|
@@ -9168,6 +9227,9 @@ exports.default = {
|
|
|
9168
9227
|
popconfirm: {
|
|
9169
9228
|
confirmButtonText: 'Yes',
|
|
9170
9229
|
cancelButtonText: 'No'
|
|
9230
|
+
},
|
|
9231
|
+
empty: {
|
|
9232
|
+
description: 'No Data'
|
|
9171
9233
|
}
|
|
9172
9234
|
}
|
|
9173
9235
|
};
|
|
@@ -9181,10 +9243,14 @@ exports.default = {
|
|
|
9181
9243
|
|
|
9182
9244
|
/***/ }),
|
|
9183
9245
|
|
|
9184
|
-
/***/ "
|
|
9185
|
-
/***/ (function(module,
|
|
9246
|
+
/***/ "b64b":
|
|
9247
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9248
|
+
|
|
9249
|
+
"use strict";
|
|
9250
|
+
/* 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");
|
|
9251
|
+
/* 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__);
|
|
9252
|
+
/* unused harmony reexport * */
|
|
9186
9253
|
|
|
9187
|
-
module.exports = require("core-js/modules/web.url.js");
|
|
9188
9254
|
|
|
9189
9255
|
/***/ }),
|
|
9190
9256
|
|
|
@@ -9193,17 +9259,6 @@ module.exports = require("core-js/modules/web.url.js");
|
|
|
9193
9259
|
|
|
9194
9260
|
// extracted by mini-css-extract-plugin
|
|
9195
9261
|
|
|
9196
|
-
/***/ }),
|
|
9197
|
-
|
|
9198
|
-
/***/ "c033":
|
|
9199
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9200
|
-
|
|
9201
|
-
"use strict";
|
|
9202
|
-
/* 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");
|
|
9203
|
-
/* 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__);
|
|
9204
|
-
/* unused harmony reexport * */
|
|
9205
|
-
|
|
9206
|
-
|
|
9207
9262
|
/***/ }),
|
|
9208
9263
|
|
|
9209
9264
|
/***/ "c2cc":
|
|
@@ -9293,12 +9348,12 @@ module.exports =
|
|
|
9293
9348
|
/******/
|
|
9294
9349
|
/******/
|
|
9295
9350
|
/******/ // Load entry module and return exports
|
|
9296
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
9351
|
+
/******/ return __webpack_require__(__webpack_require__.s = 140);
|
|
9297
9352
|
/******/ })
|
|
9298
9353
|
/************************************************************************/
|
|
9299
9354
|
/******/ ({
|
|
9300
9355
|
|
|
9301
|
-
/***/
|
|
9356
|
+
/***/ 140:
|
|
9302
9357
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9303
9358
|
|
|
9304
9359
|
"use strict";
|
|
@@ -9388,13 +9443,6 @@ col.install = function (Vue) {
|
|
|
9388
9443
|
|
|
9389
9444
|
/***/ }),
|
|
9390
9445
|
|
|
9391
|
-
/***/ "c4c7":
|
|
9392
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
9393
|
-
|
|
9394
|
-
// extracted by mini-css-extract-plugin
|
|
9395
|
-
|
|
9396
|
-
/***/ }),
|
|
9397
|
-
|
|
9398
9446
|
/***/ "c56a":
|
|
9399
9447
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9400
9448
|
|
|
@@ -9524,7 +9572,7 @@ module.exports =
|
|
|
9524
9572
|
/******/
|
|
9525
9573
|
/******/
|
|
9526
9574
|
/******/ // Load entry module and return exports
|
|
9527
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
9575
|
+
/******/ return __webpack_require__(__webpack_require__.s = 119);
|
|
9528
9576
|
/******/ })
|
|
9529
9577
|
/************************************************************************/
|
|
9530
9578
|
/******/ ({
|
|
@@ -9631,7 +9679,7 @@ function normalizeComponent (
|
|
|
9631
9679
|
|
|
9632
9680
|
/***/ }),
|
|
9633
9681
|
|
|
9634
|
-
/***/
|
|
9682
|
+
/***/ 119:
|
|
9635
9683
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9636
9684
|
|
|
9637
9685
|
"use strict";
|
|
@@ -9810,6 +9858,13 @@ module.exports = require("core-js/modules/es.function.name.js");
|
|
|
9810
9858
|
|
|
9811
9859
|
/***/ }),
|
|
9812
9860
|
|
|
9861
|
+
/***/ "dc50":
|
|
9862
|
+
/***/ (function(module, exports) {
|
|
9863
|
+
|
|
9864
|
+
module.exports = require("core-js/modules/es.error.cause.js");
|
|
9865
|
+
|
|
9866
|
+
/***/ }),
|
|
9867
|
+
|
|
9813
9868
|
/***/ "dcdc":
|
|
9814
9869
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9815
9870
|
|
|
@@ -9897,7 +9952,7 @@ module.exports =
|
|
|
9897
9952
|
/******/
|
|
9898
9953
|
/******/
|
|
9899
9954
|
/******/ // Load entry module and return exports
|
|
9900
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
9955
|
+
/******/ return __webpack_require__(__webpack_require__.s = 91);
|
|
9901
9956
|
/******/ })
|
|
9902
9957
|
/************************************************************************/
|
|
9903
9958
|
/******/ ({
|
|
@@ -10011,7 +10066,7 @@ module.exports = __webpack_require__("d010");
|
|
|
10011
10066
|
|
|
10012
10067
|
/***/ }),
|
|
10013
10068
|
|
|
10014
|
-
/***/
|
|
10069
|
+
/***/ 91:
|
|
10015
10070
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
10016
10071
|
|
|
10017
10072
|
"use strict";
|
|
@@ -10582,7 +10637,7 @@ module.exports =
|
|
|
10582
10637
|
/******/
|
|
10583
10638
|
/******/
|
|
10584
10639
|
/******/ // Load entry module and return exports
|
|
10585
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
10640
|
+
/******/ return __webpack_require__(__webpack_require__.s = 54);
|
|
10586
10641
|
/******/ })
|
|
10587
10642
|
/************************************************************************/
|
|
10588
10643
|
/******/ ({
|
|
@@ -10696,7 +10751,7 @@ module.exports = __webpack_require__("8122");
|
|
|
10696
10751
|
|
|
10697
10752
|
/***/ }),
|
|
10698
10753
|
|
|
10699
|
-
/***/
|
|
10754
|
+
/***/ 34:
|
|
10700
10755
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
10701
10756
|
|
|
10702
10757
|
"use strict";
|
|
@@ -10954,12 +11009,12 @@ module.exports = __webpack_require__("d010");
|
|
|
10954
11009
|
|
|
10955
11010
|
/***/ }),
|
|
10956
11011
|
|
|
10957
|
-
/***/
|
|
11012
|
+
/***/ 54:
|
|
10958
11013
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
10959
11014
|
|
|
10960
11015
|
"use strict";
|
|
10961
11016
|
__webpack_require__.r(__webpack_exports__);
|
|
10962
|
-
/* harmony import */ var _select_src_option__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
11017
|
+
/* harmony import */ var _select_src_option__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(34);
|
|
10963
11018
|
|
|
10964
11019
|
|
|
10965
11020
|
/* istanbul ignore next */
|
|
@@ -10973,6 +11028,17 @@ _select_src_option__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"].install = fun
|
|
|
10973
11028
|
|
|
10974
11029
|
/******/ });
|
|
10975
11030
|
|
|
11031
|
+
/***/ }),
|
|
11032
|
+
|
|
11033
|
+
/***/ "e8bf":
|
|
11034
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
11035
|
+
|
|
11036
|
+
"use strict";
|
|
11037
|
+
/* 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");
|
|
11038
|
+
/* 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__);
|
|
11039
|
+
/* unused harmony reexport * */
|
|
11040
|
+
|
|
11041
|
+
|
|
10976
11042
|
/***/ }),
|
|
10977
11043
|
|
|
10978
11044
|
/***/ "e974":
|
|
@@ -11196,6 +11262,17 @@ module.exports = require("core-js/modules/es.array.slice.js");
|
|
|
11196
11262
|
|
|
11197
11263
|
module.exports = require("core-js/modules/es.object.keys.js");
|
|
11198
11264
|
|
|
11265
|
+
/***/ }),
|
|
11266
|
+
|
|
11267
|
+
/***/ "ec09":
|
|
11268
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
11269
|
+
|
|
11270
|
+
"use strict";
|
|
11271
|
+
/* 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");
|
|
11272
|
+
/* 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__);
|
|
11273
|
+
/* unused harmony reexport * */
|
|
11274
|
+
|
|
11275
|
+
|
|
11199
11276
|
/***/ }),
|
|
11200
11277
|
|
|
11201
11278
|
/***/ "ec71":
|
|
@@ -11292,7 +11369,7 @@ module.exports =
|
|
|
11292
11369
|
/******/
|
|
11293
11370
|
/******/
|
|
11294
11371
|
/******/ // Load entry module and return exports
|
|
11295
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
11372
|
+
/******/ return __webpack_require__(__webpack_require__.s = 96);
|
|
11296
11373
|
/******/ })
|
|
11297
11374
|
/************************************************************************/
|
|
11298
11375
|
/******/ ({
|
|
@@ -11399,7 +11476,7 @@ function normalizeComponent (
|
|
|
11399
11476
|
|
|
11400
11477
|
/***/ }),
|
|
11401
11478
|
|
|
11402
|
-
/***/
|
|
11479
|
+
/***/ 96:
|
|
11403
11480
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
11404
11481
|
|
|
11405
11482
|
"use strict";
|
|
@@ -11513,7 +11590,7 @@ render._withStripped = true
|
|
|
11513
11590
|
return this.size || this._elFormItemSize || (this.$ELEMENT || {}).size;
|
|
11514
11591
|
},
|
|
11515
11592
|
buttonDisabled: function buttonDisabled() {
|
|
11516
|
-
return this.disabled
|
|
11593
|
+
return this.$options.propsData.hasOwnProperty('disabled') ? this.disabled : (this.elForm || {}).disabled;
|
|
11517
11594
|
}
|
|
11518
11595
|
},
|
|
11519
11596
|
|
|
@@ -11691,6 +11768,9 @@ exports.default = {
|
|
|
11691
11768
|
popconfirm: {
|
|
11692
11769
|
confirmButtonText: '确定',
|
|
11693
11770
|
cancelButtonText: '取消'
|
|
11771
|
+
},
|
|
11772
|
+
empty: {
|
|
11773
|
+
description: '暂无数据'
|
|
11694
11774
|
}
|
|
11695
11775
|
}
|
|
11696
11776
|
};
|
|
@@ -11784,7 +11864,7 @@ module.exports =
|
|
|
11784
11864
|
/******/
|
|
11785
11865
|
/******/
|
|
11786
11866
|
/******/ // Load entry module and return exports
|
|
11787
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
11867
|
+
/******/ return __webpack_require__(__webpack_require__.s = 75);
|
|
11788
11868
|
/******/ })
|
|
11789
11869
|
/************************************************************************/
|
|
11790
11870
|
/******/ ({
|
|
@@ -11912,7 +11992,7 @@ module.exports = __webpack_require__("d010");
|
|
|
11912
11992
|
|
|
11913
11993
|
/***/ }),
|
|
11914
11994
|
|
|
11915
|
-
/***/
|
|
11995
|
+
/***/ 75:
|
|
11916
11996
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
11917
11997
|
|
|
11918
11998
|
"use strict";
|
|
@@ -12554,15 +12634,18 @@ var shared_ = __webpack_require__(21);
|
|
|
12554
12634
|
this.focused = true;
|
|
12555
12635
|
this.$emit('focus', event);
|
|
12556
12636
|
},
|
|
12557
|
-
handleCompositionStart: function handleCompositionStart() {
|
|
12637
|
+
handleCompositionStart: function handleCompositionStart(event) {
|
|
12638
|
+
this.$emit('compositionstart', event);
|
|
12558
12639
|
this.isComposing = true;
|
|
12559
12640
|
},
|
|
12560
12641
|
handleCompositionUpdate: function handleCompositionUpdate(event) {
|
|
12642
|
+
this.$emit('compositionupdate', event);
|
|
12561
12643
|
var text = event.target.value;
|
|
12562
12644
|
var lastCharacter = text[text.length - 1] || '';
|
|
12563
12645
|
this.isComposing = !Object(shared_["isKorean"])(lastCharacter);
|
|
12564
12646
|
},
|
|
12565
12647
|
handleCompositionEnd: function handleCompositionEnd(event) {
|
|
12648
|
+
this.$emit('compositionend', event);
|
|
12566
12649
|
if (this.isComposing) {
|
|
12567
12650
|
this.isComposing = false;
|
|
12568
12651
|
this.handleInput(event);
|
|
@@ -12784,7 +12867,7 @@ module.exports =
|
|
|
12784
12867
|
/******/
|
|
12785
12868
|
/******/
|
|
12786
12869
|
/******/ // Load entry module and return exports
|
|
12787
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
12870
|
+
/******/ return __webpack_require__(__webpack_require__.s = 88);
|
|
12788
12871
|
/******/ })
|
|
12789
12872
|
/************************************************************************/
|
|
12790
12873
|
/******/ ({
|
|
@@ -12891,7 +12974,14 @@ function normalizeComponent (
|
|
|
12891
12974
|
|
|
12892
12975
|
/***/ }),
|
|
12893
12976
|
|
|
12894
|
-
/***/
|
|
12977
|
+
/***/ 4:
|
|
12978
|
+
/***/ (function(module, exports) {
|
|
12979
|
+
|
|
12980
|
+
module.exports = __webpack_require__("d010");
|
|
12981
|
+
|
|
12982
|
+
/***/ }),
|
|
12983
|
+
|
|
12984
|
+
/***/ 88:
|
|
12895
12985
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
12896
12986
|
|
|
12897
12987
|
"use strict";
|
|
@@ -12961,7 +13051,8 @@ var render = function() {
|
|
|
12961
13051
|
"aria-hidden": "true",
|
|
12962
13052
|
name: _vm.name,
|
|
12963
13053
|
disabled: _vm.isDisabled,
|
|
12964
|
-
tabindex: "-1"
|
|
13054
|
+
tabindex: "-1",
|
|
13055
|
+
autocomplete: "off"
|
|
12965
13056
|
},
|
|
12966
13057
|
domProps: {
|
|
12967
13058
|
value: _vm.label,
|
|
@@ -13058,6 +13149,7 @@ var emitter_default = /*#__PURE__*/__webpack_require__.n(emitter_);
|
|
|
13058
13149
|
//
|
|
13059
13150
|
//
|
|
13060
13151
|
//
|
|
13152
|
+
//
|
|
13061
13153
|
|
|
13062
13154
|
|
|
13063
13155
|
|
|
@@ -13184,13 +13276,6 @@ src_radio.install = function (Vue) {
|
|
|
13184
13276
|
|
|
13185
13277
|
/* harmony default export */ var packages_radio = __webpack_exports__["default"] = (src_radio);
|
|
13186
13278
|
|
|
13187
|
-
/***/ }),
|
|
13188
|
-
|
|
13189
|
-
/***/ 4:
|
|
13190
|
-
/***/ (function(module, exports) {
|
|
13191
|
-
|
|
13192
|
-
module.exports = __webpack_require__("d010");
|
|
13193
|
-
|
|
13194
13279
|
/***/ })
|
|
13195
13280
|
|
|
13196
13281
|
/******/ });
|
|
@@ -13204,6 +13289,13 @@ module.exports = __webpack_require__("d010");
|
|
|
13204
13289
|
|
|
13205
13290
|
/***/ }),
|
|
13206
13291
|
|
|
13292
|
+
/***/ "f765":
|
|
13293
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
13294
|
+
|
|
13295
|
+
// extracted by mini-css-extract-plugin
|
|
13296
|
+
|
|
13297
|
+
/***/ }),
|
|
13298
|
+
|
|
13207
13299
|
/***/ "f989":
|
|
13208
13300
|
/***/ (function(module, exports) {
|
|
13209
13301
|
|
|
@@ -13246,16 +13338,495 @@ if (typeof window !== 'undefined') {
|
|
|
13246
13338
|
// Indicate to webpack that this file can be concatenated
|
|
13247
13339
|
/* harmony default export */ var setPublicPath = (null);
|
|
13248
13340
|
|
|
13249
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13250
|
-
var render = function () {
|
|
13251
|
-
var
|
|
13252
|
-
|
|
13253
|
-
|
|
13254
|
-
|
|
13255
|
-
|
|
13256
|
-
|
|
13257
|
-
|
|
13258
|
-
|
|
13341
|
+
// 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&
|
|
13342
|
+
var render = function render() {
|
|
13343
|
+
var _vm = this,
|
|
13344
|
+
_c = _vm._self._c;
|
|
13345
|
+
return _c('div', {
|
|
13346
|
+
directives: [{
|
|
13347
|
+
name: "loading",
|
|
13348
|
+
rawName: "v-loading",
|
|
13349
|
+
value: _vm.loading,
|
|
13350
|
+
expression: "loading"
|
|
13351
|
+
}],
|
|
13352
|
+
ref: "flatmapContainer",
|
|
13353
|
+
staticClass: "flatmap-container",
|
|
13354
|
+
attrs: {
|
|
13355
|
+
"element-loading-text": "Loading...",
|
|
13356
|
+
"element-loading-spinner": "el-icon-loading",
|
|
13357
|
+
"element-loading-background": "rgba(0, 0, 0, 0.3)"
|
|
13358
|
+
}
|
|
13359
|
+
}, [_c('map-svg-sprite-color'), _c('div', {
|
|
13360
|
+
staticStyle: {
|
|
13361
|
+
"height": "100%",
|
|
13362
|
+
"width": "100%",
|
|
13363
|
+
"position": "relative",
|
|
13364
|
+
"overflow-y": "none"
|
|
13365
|
+
}
|
|
13366
|
+
}, [_c('div', {
|
|
13367
|
+
ref: "display",
|
|
13368
|
+
staticStyle: {
|
|
13369
|
+
"height": "100%",
|
|
13370
|
+
"width": "100%"
|
|
13371
|
+
}
|
|
13372
|
+
}), _c('div', {
|
|
13373
|
+
staticClass: "beta-popovers"
|
|
13374
|
+
}, [_c('div', [_c('el-popover', {
|
|
13375
|
+
ref: "warningPopover",
|
|
13376
|
+
attrs: {
|
|
13377
|
+
"content": _vm.isLegacy ? 'This is a legacy map, you may view the latest map instead.' : _vm.warningMessage,
|
|
13378
|
+
"placement": "right",
|
|
13379
|
+
"appendToBody": false,
|
|
13380
|
+
"trigger": "manual",
|
|
13381
|
+
"popper-class": "warning-popper flatmap-popper right-popper"
|
|
13382
|
+
},
|
|
13383
|
+
model: {
|
|
13384
|
+
value: _vm.hoverVisibilities[6].value,
|
|
13385
|
+
callback: function callback($$v) {
|
|
13386
|
+
_vm.$set(_vm.hoverVisibilities[6], "value", $$v);
|
|
13387
|
+
},
|
|
13388
|
+
expression: "hoverVisibilities[6].value"
|
|
13389
|
+
}
|
|
13390
|
+
}), _vm.displayWarning && _vm.warningMessage ? _c('i', {
|
|
13391
|
+
directives: [{
|
|
13392
|
+
name: "popover",
|
|
13393
|
+
rawName: "v-popover:warningPopover",
|
|
13394
|
+
arg: "warningPopover"
|
|
13395
|
+
}],
|
|
13396
|
+
staticClass: "el-icon-warning warning-icon",
|
|
13397
|
+
on: {
|
|
13398
|
+
"mouseover": function mouseover($event) {
|
|
13399
|
+
return _vm.showToolitip(6);
|
|
13400
|
+
},
|
|
13401
|
+
"mouseout": function mouseout($event) {
|
|
13402
|
+
return _vm.hideToolitip(6);
|
|
13403
|
+
}
|
|
13404
|
+
}
|
|
13405
|
+
}, [_vm.isLegacy ? [_c('span', {
|
|
13406
|
+
staticClass: "warning-text"
|
|
13407
|
+
}, [_vm._v("Legacy Map")]), _c('div', {
|
|
13408
|
+
staticClass: "latest-map-text",
|
|
13409
|
+
on: {
|
|
13410
|
+
"click": _vm.viewLatestMap
|
|
13411
|
+
}
|
|
13412
|
+
}, [_vm._v("Click here for the latest map")])] : [_c('span', {
|
|
13413
|
+
staticClass: "warning-text"
|
|
13414
|
+
}, [_vm._v("Beta")])]], 2) : _vm._e()], 1), _vm.displayLatestChanges ? _c('el-popover', {
|
|
13415
|
+
ref: "latestChangesPopover",
|
|
13416
|
+
attrs: {
|
|
13417
|
+
"content": _vm.latestChangesMessage,
|
|
13418
|
+
"placement": "right",
|
|
13419
|
+
"appendToBody": false,
|
|
13420
|
+
"trigger": "manual",
|
|
13421
|
+
"popper-class": "warning-popper flatmap-popper right-popper"
|
|
13422
|
+
},
|
|
13423
|
+
model: {
|
|
13424
|
+
value: _vm.hoverVisibilities[7].value,
|
|
13425
|
+
callback: function callback($$v) {
|
|
13426
|
+
_vm.$set(_vm.hoverVisibilities[7], "value", $$v);
|
|
13427
|
+
},
|
|
13428
|
+
expression: "hoverVisibilities[7].value"
|
|
13429
|
+
}
|
|
13430
|
+
}) : _vm._e(), _vm.displayLatestChanges && _vm.latestChangesMessage ? _c('i', {
|
|
13431
|
+
directives: [{
|
|
13432
|
+
name: "popover",
|
|
13433
|
+
rawName: "v-popover:latestChangesPopover",
|
|
13434
|
+
arg: "latestChangesPopover"
|
|
13435
|
+
}],
|
|
13436
|
+
staticClass: "el-icon-warning latest-changesicon",
|
|
13437
|
+
on: {
|
|
13438
|
+
"mouseover": function mouseover($event) {
|
|
13439
|
+
return _vm.showToolitip(7);
|
|
13440
|
+
},
|
|
13441
|
+
"mouseout": function mouseout($event) {
|
|
13442
|
+
return _vm.hideToolitip(7);
|
|
13443
|
+
}
|
|
13444
|
+
}
|
|
13445
|
+
}, [_c('span', {
|
|
13446
|
+
staticClass: "warning-text"
|
|
13447
|
+
}, [_vm._v("What's new?")])]) : _vm._e()], 1), _c('i', {
|
|
13448
|
+
directives: [{
|
|
13449
|
+
name: "show",
|
|
13450
|
+
rawName: "v-show",
|
|
13451
|
+
value: _vm.minimapResizeShow,
|
|
13452
|
+
expression: "minimapResizeShow"
|
|
13453
|
+
}],
|
|
13454
|
+
ref: "minimapResize",
|
|
13455
|
+
staticClass: "el-icon-arrow-down minimap-resize",
|
|
13456
|
+
class: {
|
|
13457
|
+
enlarge: _vm.minimapSmall,
|
|
13458
|
+
shrink: !_vm.minimapSmall
|
|
13459
|
+
},
|
|
13460
|
+
on: {
|
|
13461
|
+
"click": _vm.closeMinimap
|
|
13462
|
+
}
|
|
13463
|
+
}), _c('div', {
|
|
13464
|
+
staticClass: "bottom-right-control"
|
|
13465
|
+
}, [_c('el-popover', {
|
|
13466
|
+
attrs: {
|
|
13467
|
+
"content": "Zoom in",
|
|
13468
|
+
"placement": "left",
|
|
13469
|
+
"appendToBody": false,
|
|
13470
|
+
"trigger": "manual",
|
|
13471
|
+
"popper-class": "flatmap-popper left-popper"
|
|
13472
|
+
},
|
|
13473
|
+
model: {
|
|
13474
|
+
value: _vm.hoverVisibilities[0].value,
|
|
13475
|
+
callback: function callback($$v) {
|
|
13476
|
+
_vm.$set(_vm.hoverVisibilities[0], "value", $$v);
|
|
13477
|
+
},
|
|
13478
|
+
expression: "hoverVisibilities[0].value"
|
|
13479
|
+
}
|
|
13480
|
+
}, [_c('map-svg-icon', {
|
|
13481
|
+
staticClass: "icon-button zoomIn",
|
|
13482
|
+
attrs: {
|
|
13483
|
+
"slot": "reference",
|
|
13484
|
+
"icon": "zoomIn"
|
|
13485
|
+
},
|
|
13486
|
+
nativeOn: {
|
|
13487
|
+
"click": function click($event) {
|
|
13488
|
+
return _vm.zoomIn();
|
|
13489
|
+
},
|
|
13490
|
+
"mouseover": function mouseover($event) {
|
|
13491
|
+
return _vm.showToolitip(0);
|
|
13492
|
+
},
|
|
13493
|
+
"mouseout": function mouseout($event) {
|
|
13494
|
+
return _vm.hideToolitip(0);
|
|
13495
|
+
}
|
|
13496
|
+
},
|
|
13497
|
+
slot: "reference"
|
|
13498
|
+
})], 1), _c('el-popover', {
|
|
13499
|
+
attrs: {
|
|
13500
|
+
"content": "Zoom out",
|
|
13501
|
+
"placement": "top-end",
|
|
13502
|
+
"appendToBody": false,
|
|
13503
|
+
"trigger": "manual",
|
|
13504
|
+
"popper-class": "flatmap-popper popper-zoomout"
|
|
13505
|
+
},
|
|
13506
|
+
model: {
|
|
13507
|
+
value: _vm.hoverVisibilities[1].value,
|
|
13508
|
+
callback: function callback($$v) {
|
|
13509
|
+
_vm.$set(_vm.hoverVisibilities[1], "value", $$v);
|
|
13510
|
+
},
|
|
13511
|
+
expression: "hoverVisibilities[1].value"
|
|
13512
|
+
}
|
|
13513
|
+
}, [_c('map-svg-icon', {
|
|
13514
|
+
staticClass: "icon-button zoomOut",
|
|
13515
|
+
attrs: {
|
|
13516
|
+
"slot": "reference",
|
|
13517
|
+
"icon": "zoomOut"
|
|
13518
|
+
},
|
|
13519
|
+
nativeOn: {
|
|
13520
|
+
"click": function click($event) {
|
|
13521
|
+
return _vm.zoomOut();
|
|
13522
|
+
},
|
|
13523
|
+
"mouseover": function mouseover($event) {
|
|
13524
|
+
return _vm.showToolitip(1);
|
|
13525
|
+
},
|
|
13526
|
+
"mouseout": function mouseout($event) {
|
|
13527
|
+
return _vm.hideToolitip(1);
|
|
13528
|
+
}
|
|
13529
|
+
},
|
|
13530
|
+
slot: "reference"
|
|
13531
|
+
})], 1), _c('el-popover', {
|
|
13532
|
+
attrs: {
|
|
13533
|
+
"content": "Reset",
|
|
13534
|
+
"placement": "top",
|
|
13535
|
+
"appendToBody": false,
|
|
13536
|
+
"trigger": "manual",
|
|
13537
|
+
"popper-class": "flatmap-popper"
|
|
13538
|
+
},
|
|
13539
|
+
model: {
|
|
13540
|
+
value: _vm.hoverVisibilities[2].value,
|
|
13541
|
+
callback: function callback($$v) {
|
|
13542
|
+
_vm.$set(_vm.hoverVisibilities[2], "value", $$v);
|
|
13543
|
+
},
|
|
13544
|
+
expression: "hoverVisibilities[2].value"
|
|
13545
|
+
}
|
|
13546
|
+
}, [_c('div', [_vm._v(" Fit to "), _c('br'), _vm._v(" window ")]), _c('map-svg-icon', {
|
|
13547
|
+
staticClass: "icon-button fitWindow",
|
|
13548
|
+
attrs: {
|
|
13549
|
+
"slot": "reference",
|
|
13550
|
+
"icon": "fitWindow"
|
|
13551
|
+
},
|
|
13552
|
+
nativeOn: {
|
|
13553
|
+
"click": function click($event) {
|
|
13554
|
+
return _vm.resetView();
|
|
13555
|
+
},
|
|
13556
|
+
"mouseover": function mouseover($event) {
|
|
13557
|
+
return _vm.showToolitip(2);
|
|
13558
|
+
},
|
|
13559
|
+
"mouseout": function mouseout($event) {
|
|
13560
|
+
return _vm.hideToolitip(2);
|
|
13561
|
+
}
|
|
13562
|
+
},
|
|
13563
|
+
slot: "reference"
|
|
13564
|
+
})], 1)], 1), _c('el-popover', {
|
|
13565
|
+
ref: "checkBoxPopover",
|
|
13566
|
+
attrs: {
|
|
13567
|
+
"content": "Change pathway visibility",
|
|
13568
|
+
"placement": "right",
|
|
13569
|
+
"appendToBody": false,
|
|
13570
|
+
"trigger": "manual",
|
|
13571
|
+
"popper-class": "flatmap-popper right-popper"
|
|
13572
|
+
},
|
|
13573
|
+
model: {
|
|
13574
|
+
value: _vm.hoverVisibilities[4].value,
|
|
13575
|
+
callback: function callback($$v) {
|
|
13576
|
+
_vm.$set(_vm.hoverVisibilities[4], "value", $$v);
|
|
13577
|
+
},
|
|
13578
|
+
expression: "hoverVisibilities[4].value"
|
|
13579
|
+
}
|
|
13580
|
+
}), _c('div', {
|
|
13581
|
+
staticClass: "pathway-location",
|
|
13582
|
+
class: {
|
|
13583
|
+
open: _vm.drawerOpen,
|
|
13584
|
+
close: !_vm.drawerOpen
|
|
13585
|
+
}
|
|
13586
|
+
}, [_vm.pathControls ? _c('div', {
|
|
13587
|
+
directives: [{
|
|
13588
|
+
name: "popover",
|
|
13589
|
+
rawName: "v-popover:checkBoxPopover",
|
|
13590
|
+
arg: "checkBoxPopover"
|
|
13591
|
+
}],
|
|
13592
|
+
staticClass: "pathway-container",
|
|
13593
|
+
style: {
|
|
13594
|
+
'max-height': _vm.pathwaysMaxHeight + 'px'
|
|
13595
|
+
}
|
|
13596
|
+
}, [!_vm.isFC ? _c('svg-legends', {
|
|
13597
|
+
staticClass: "svg-legends-container"
|
|
13598
|
+
}) : _vm._e(), _c('el-popover', {
|
|
13599
|
+
ref: "markerPopover",
|
|
13600
|
+
attrs: {
|
|
13601
|
+
"content": "Find these markers for data",
|
|
13602
|
+
"placement": "right",
|
|
13603
|
+
"appendToBody": false,
|
|
13604
|
+
"trigger": "manual",
|
|
13605
|
+
"popper-class": "flatmap-popper popper-bump-right right-popper"
|
|
13606
|
+
},
|
|
13607
|
+
model: {
|
|
13608
|
+
value: _vm.hoverVisibilities[5].value,
|
|
13609
|
+
callback: function callback($$v) {
|
|
13610
|
+
_vm.$set(_vm.hoverVisibilities[5], "value", $$v);
|
|
13611
|
+
},
|
|
13612
|
+
expression: "hoverVisibilities[5].value"
|
|
13613
|
+
}
|
|
13614
|
+
}), _c('div', {
|
|
13615
|
+
directives: [{
|
|
13616
|
+
name: "show",
|
|
13617
|
+
rawName: "v-show",
|
|
13618
|
+
value: _vm.hoverVisibilities[5].value,
|
|
13619
|
+
expression: "hoverVisibilities[5].value"
|
|
13620
|
+
}, {
|
|
13621
|
+
name: "popover",
|
|
13622
|
+
rawName: "v-popover:markerPopover",
|
|
13623
|
+
arg: "markerPopover"
|
|
13624
|
+
}],
|
|
13625
|
+
staticClass: "flatmap-marker-help",
|
|
13626
|
+
domProps: {
|
|
13627
|
+
"innerHTML": _vm._s(_vm.flatmapMarker)
|
|
13628
|
+
}
|
|
13629
|
+
}), _vm.isFC && _vm.systems && _vm.systems.length > 0 ? _c('dynamic-legends', {
|
|
13630
|
+
key: "systemslegends",
|
|
13631
|
+
attrs: {
|
|
13632
|
+
"title": "Systems",
|
|
13633
|
+
"identifierKey": "name",
|
|
13634
|
+
"lists": _vm.systems
|
|
13635
|
+
}
|
|
13636
|
+
}) : _vm._e(), !_vm.isFC && _vm.centreLines && _vm.centreLines.length > 0 ? _c('selections-group', {
|
|
13637
|
+
key: "centrelinesSelection",
|
|
13638
|
+
ref: "centrelinesSelection",
|
|
13639
|
+
attrs: {
|
|
13640
|
+
"title": "Centrelines",
|
|
13641
|
+
"labelKey": "label",
|
|
13642
|
+
"identifierKey": "key",
|
|
13643
|
+
"selections": _vm.centreLines
|
|
13644
|
+
},
|
|
13645
|
+
on: {
|
|
13646
|
+
"changed": _vm.centreLinesSelected
|
|
13647
|
+
}
|
|
13648
|
+
}) : _vm._e(), _vm.isFC && _vm.sckanDisplay && _vm.sckanDisplay.length > 0 ? _c('selections-group', {
|
|
13649
|
+
key: "skcanSelection",
|
|
13650
|
+
ref: "skcanSelection",
|
|
13651
|
+
attrs: {
|
|
13652
|
+
"title": "SCKAN",
|
|
13653
|
+
"labelKey": "label",
|
|
13654
|
+
"identifierKey": "key",
|
|
13655
|
+
"selections": _vm.sckanDisplay
|
|
13656
|
+
},
|
|
13657
|
+
on: {
|
|
13658
|
+
"changed": _vm.sckanSelected,
|
|
13659
|
+
"checkAll": _vm.checkAllSCKAN
|
|
13660
|
+
}
|
|
13661
|
+
}) : _vm._e(), _vm.layers && _vm.layers.length > 0 ? _c('selections-group', {
|
|
13662
|
+
key: "layersSelection",
|
|
13663
|
+
ref: "layersSelection",
|
|
13664
|
+
attrs: {
|
|
13665
|
+
"title": "Layers",
|
|
13666
|
+
"labelKey": "description",
|
|
13667
|
+
"identifierKey": "id",
|
|
13668
|
+
"selections": _vm.layers
|
|
13669
|
+
},
|
|
13670
|
+
on: {
|
|
13671
|
+
"changed": _vm.layersSelected,
|
|
13672
|
+
"checkAll": _vm.checkAllLayers
|
|
13673
|
+
}
|
|
13674
|
+
}) : _vm._e(), _vm.pathways && _vm.pathways.length > 0 ? _c('selections-group', {
|
|
13675
|
+
key: "pathwaysSelection",
|
|
13676
|
+
ref: "pathwaysSelection",
|
|
13677
|
+
attrs: {
|
|
13678
|
+
"title": "Pathways",
|
|
13679
|
+
"labelKey": "label",
|
|
13680
|
+
"identifierKey": "type",
|
|
13681
|
+
"selections": _vm.pathways
|
|
13682
|
+
},
|
|
13683
|
+
on: {
|
|
13684
|
+
"changed": _vm.pathwaysSelected,
|
|
13685
|
+
"checkAll": _vm.checkAllPathways
|
|
13686
|
+
}
|
|
13687
|
+
}) : _vm._e()], 1) : _vm._e(), _c('div', {
|
|
13688
|
+
staticClass: "drawer-button",
|
|
13689
|
+
class: {
|
|
13690
|
+
open: _vm.drawerOpen,
|
|
13691
|
+
close: !_vm.drawerOpen
|
|
13692
|
+
},
|
|
13693
|
+
on: {
|
|
13694
|
+
"click": _vm.toggleDrawer
|
|
13695
|
+
}
|
|
13696
|
+
}, [_c('i', {
|
|
13697
|
+
staticClass: "el-icon-arrow-left"
|
|
13698
|
+
})])]), _c('el-popover', {
|
|
13699
|
+
ref: "backgroundPopover",
|
|
13700
|
+
attrs: {
|
|
13701
|
+
"placement": "top-start",
|
|
13702
|
+
"width": "175",
|
|
13703
|
+
"appendToBody": false,
|
|
13704
|
+
"trigger": "click",
|
|
13705
|
+
"popper-class": "background-popper"
|
|
13706
|
+
}
|
|
13707
|
+
}, [_c('el-row', {
|
|
13708
|
+
staticClass: "backgroundText"
|
|
13709
|
+
}, [_vm._v("Organs display")]), _c('el-row', {
|
|
13710
|
+
staticClass: "backgroundControl"
|
|
13711
|
+
}, [_c('el-radio-group', {
|
|
13712
|
+
staticClass: "flatmap-radio",
|
|
13713
|
+
on: {
|
|
13714
|
+
"change": _vm.setColour
|
|
13715
|
+
},
|
|
13716
|
+
model: {
|
|
13717
|
+
value: _vm.colourRadio,
|
|
13718
|
+
callback: function callback($$v) {
|
|
13719
|
+
_vm.colourRadio = $$v;
|
|
13720
|
+
},
|
|
13721
|
+
expression: "colourRadio"
|
|
13722
|
+
}
|
|
13723
|
+
}, [_c('el-radio', {
|
|
13724
|
+
attrs: {
|
|
13725
|
+
"label": true
|
|
13726
|
+
}
|
|
13727
|
+
}, [_vm._v("Colour")]), _c('el-radio', {
|
|
13728
|
+
attrs: {
|
|
13729
|
+
"label": false
|
|
13730
|
+
}
|
|
13731
|
+
}, [_vm._v("Greyscale")])], 1)], 1), _c('el-row', {
|
|
13732
|
+
staticClass: "backgroundSpacer"
|
|
13733
|
+
}), _c('el-row', {
|
|
13734
|
+
staticClass: "backgroundText"
|
|
13735
|
+
}, [_vm._v("Outlines display")]), _c('el-row', {
|
|
13736
|
+
staticClass: "backgroundControl"
|
|
13737
|
+
}, [_c('el-radio-group', {
|
|
13738
|
+
staticClass: "flatmap-radio",
|
|
13739
|
+
on: {
|
|
13740
|
+
"change": _vm.setOutlines
|
|
13741
|
+
},
|
|
13742
|
+
model: {
|
|
13743
|
+
value: _vm.outlinesRadio,
|
|
13744
|
+
callback: function callback($$v) {
|
|
13745
|
+
_vm.outlinesRadio = $$v;
|
|
13746
|
+
},
|
|
13747
|
+
expression: "outlinesRadio"
|
|
13748
|
+
}
|
|
13749
|
+
}, [_c('el-radio', {
|
|
13750
|
+
attrs: {
|
|
13751
|
+
"label": true
|
|
13752
|
+
}
|
|
13753
|
+
}, [_vm._v("Show")]), _c('el-radio', {
|
|
13754
|
+
attrs: {
|
|
13755
|
+
"label": false
|
|
13756
|
+
}
|
|
13757
|
+
}, [_vm._v("Hide")])], 1)], 1), _c('el-row', {
|
|
13758
|
+
staticClass: "backgroundSpacer"
|
|
13759
|
+
}), _c('el-row', {
|
|
13760
|
+
staticClass: "backgroundText"
|
|
13761
|
+
}, [_vm._v("Change background")]), _c('el-row', {
|
|
13762
|
+
staticClass: "backgroundControl"
|
|
13763
|
+
}, _vm._l(_vm.availableBackground, function (item) {
|
|
13764
|
+
return _c('div', {
|
|
13765
|
+
key: item,
|
|
13766
|
+
class: ['backgroundChoice', item, item == _vm.currentBackground ? 'active' : ''],
|
|
13767
|
+
on: {
|
|
13768
|
+
"click": function click($event) {
|
|
13769
|
+
return _vm.backgroundChangeCallback(item);
|
|
13770
|
+
}
|
|
13771
|
+
}
|
|
13772
|
+
});
|
|
13773
|
+
}), 0)], 1), _c('el-popover', {
|
|
13774
|
+
attrs: {
|
|
13775
|
+
"content": "Change settings",
|
|
13776
|
+
"placement": "right",
|
|
13777
|
+
"appendToBody": false,
|
|
13778
|
+
"trigger": "manual",
|
|
13779
|
+
"popper-class": "flatmap-popper right-popper"
|
|
13780
|
+
},
|
|
13781
|
+
model: {
|
|
13782
|
+
value: _vm.hoverVisibilities[3].value,
|
|
13783
|
+
callback: function callback($$v) {
|
|
13784
|
+
_vm.$set(_vm.hoverVisibilities[3], "value", $$v);
|
|
13785
|
+
},
|
|
13786
|
+
expression: "hoverVisibilities[3].value"
|
|
13787
|
+
}
|
|
13788
|
+
}, [_c('map-svg-icon', {
|
|
13789
|
+
directives: [{
|
|
13790
|
+
name: "popover",
|
|
13791
|
+
rawName: "v-popover:backgroundPopover",
|
|
13792
|
+
arg: "backgroundPopover"
|
|
13793
|
+
}],
|
|
13794
|
+
staticClass: "icon-button background-colour",
|
|
13795
|
+
class: {
|
|
13796
|
+
open: _vm.drawerOpen,
|
|
13797
|
+
close: !_vm.drawerOpen
|
|
13798
|
+
},
|
|
13799
|
+
attrs: {
|
|
13800
|
+
"slot": "reference",
|
|
13801
|
+
"icon": "changeBckgd"
|
|
13802
|
+
},
|
|
13803
|
+
nativeOn: {
|
|
13804
|
+
"mouseover": function mouseover($event) {
|
|
13805
|
+
return _vm.showToolitip(3);
|
|
13806
|
+
},
|
|
13807
|
+
"mouseout": function mouseout($event) {
|
|
13808
|
+
return _vm.hideToolitip(3);
|
|
13809
|
+
}
|
|
13810
|
+
},
|
|
13811
|
+
slot: "reference"
|
|
13812
|
+
})], 1), _c('Tooltip', {
|
|
13813
|
+
ref: "tooltip",
|
|
13814
|
+
staticClass: "tooltip",
|
|
13815
|
+
attrs: {
|
|
13816
|
+
"content": _vm.tooltipContent
|
|
13817
|
+
},
|
|
13818
|
+
on: {
|
|
13819
|
+
"resource-selected": _vm.resourceSelected
|
|
13820
|
+
}
|
|
13821
|
+
})], 1)], 1);
|
|
13822
|
+
};
|
|
13823
|
+
var staticRenderFns = [];
|
|
13824
|
+
|
|
13825
|
+
// CONCATENATED MODULE: ./src/components/FlatmapVuer.vue?vue&type=template&id=66e8be2a&scoped=true&
|
|
13826
|
+
|
|
13827
|
+
// EXTERNAL MODULE: external "core-js/modules/es.symbol.js"
|
|
13828
|
+
var es_symbol_js_ = __webpack_require__("9b22");
|
|
13829
|
+
|
|
13259
13830
|
// EXTERNAL MODULE: external "core-js/modules/es.symbol.description.js"
|
|
13260
13831
|
var es_symbol_description_js_ = __webpack_require__("4933");
|
|
13261
13832
|
|
|
@@ -13274,6 +13845,9 @@ var es_string_iterator_js_ = __webpack_require__("9bb5");
|
|
|
13274
13845
|
// EXTERNAL MODULE: external "core-js/modules/web.dom-collections.iterator.js"
|
|
13275
13846
|
var web_dom_collections_iterator_js_ = __webpack_require__("1a25");
|
|
13276
13847
|
|
|
13848
|
+
// EXTERNAL MODULE: external "core-js/modules/es.error.cause.js"
|
|
13849
|
+
var es_error_cause_js_ = __webpack_require__("dc50");
|
|
13850
|
+
|
|
13277
13851
|
// EXTERNAL MODULE: external "core-js/modules/es.array.slice.js"
|
|
13278
13852
|
var es_array_slice_js_ = __webpack_require__("ea12");
|
|
13279
13853
|
|
|
@@ -13283,14 +13857,18 @@ var es_function_name_js_ = __webpack_require__("db0a");
|
|
|
13283
13857
|
// EXTERNAL MODULE: external "core-js/modules/es.array.from.js"
|
|
13284
13858
|
var es_array_from_js_ = __webpack_require__("4362");
|
|
13285
13859
|
|
|
13860
|
+
// EXTERNAL MODULE: external "core-js/modules/es.regexp.exec.js"
|
|
13861
|
+
var es_regexp_exec_js_ = __webpack_require__("c8a6");
|
|
13862
|
+
|
|
13863
|
+
// EXTERNAL MODULE: external "core-js/modules/es.regexp.test.js"
|
|
13864
|
+
var es_regexp_test_js_ = __webpack_require__("5a3b");
|
|
13865
|
+
|
|
13286
13866
|
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
|
|
13287
13867
|
function _arrayLikeToArray(arr, len) {
|
|
13288
13868
|
if (len == null || len > arr.length) len = arr.length;
|
|
13289
|
-
|
|
13290
13869
|
for (var i = 0, arr2 = new Array(len); i < len; i++) {
|
|
13291
13870
|
arr2[i] = arr[i];
|
|
13292
13871
|
}
|
|
13293
|
-
|
|
13294
13872
|
return arr2;
|
|
13295
13873
|
}
|
|
13296
13874
|
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js
|
|
@@ -13300,6 +13878,8 @@ function _arrayLikeToArray(arr, len) {
|
|
|
13300
13878
|
|
|
13301
13879
|
|
|
13302
13880
|
|
|
13881
|
+
|
|
13882
|
+
|
|
13303
13883
|
function _unsupportedIterableToArray(o, minLen) {
|
|
13304
13884
|
if (!o) return;
|
|
13305
13885
|
if (typeof o === "string") return _arrayLikeToArray(o, minLen);
|
|
@@ -13317,16 +13897,14 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
|
13317
13897
|
|
|
13318
13898
|
|
|
13319
13899
|
|
|
13900
|
+
|
|
13320
13901
|
function _createForOfIteratorHelper(o, allowArrayLike) {
|
|
13321
13902
|
var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
|
|
13322
|
-
|
|
13323
13903
|
if (!it) {
|
|
13324
13904
|
if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
|
|
13325
13905
|
if (it) o = it;
|
|
13326
13906
|
var i = 0;
|
|
13327
|
-
|
|
13328
13907
|
var F = function F() {};
|
|
13329
|
-
|
|
13330
13908
|
return {
|
|
13331
13909
|
s: F,
|
|
13332
13910
|
n: function n() {
|
|
@@ -13344,13 +13922,11 @@ function _createForOfIteratorHelper(o, allowArrayLike) {
|
|
|
13344
13922
|
f: F
|
|
13345
13923
|
};
|
|
13346
13924
|
}
|
|
13347
|
-
|
|
13348
13925
|
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
13349
13926
|
}
|
|
13350
|
-
|
|
13351
13927
|
var normalCompletion = true,
|
|
13352
|
-
|
|
13353
|
-
|
|
13928
|
+
didErr = false,
|
|
13929
|
+
err;
|
|
13354
13930
|
return {
|
|
13355
13931
|
s: function s() {
|
|
13356
13932
|
it = it.call(o);
|
|
@@ -13411,22 +13987,8 @@ var col = __webpack_require__("f4f9");
|
|
|
13411
13987
|
var lib_col = __webpack_require__("c2cc");
|
|
13412
13988
|
var lib_col_default = /*#__PURE__*/__webpack_require__.n(lib_col);
|
|
13413
13989
|
|
|
13414
|
-
// EXTERNAL MODULE:
|
|
13415
|
-
var
|
|
13416
|
-
|
|
13417
|
-
// EXTERNAL MODULE: ./node_modules/element-ui/lib/checkbox-group.js
|
|
13418
|
-
var lib_checkbox_group = __webpack_require__("7fc1");
|
|
13419
|
-
var lib_checkbox_group_default = /*#__PURE__*/__webpack_require__.n(lib_checkbox_group);
|
|
13420
|
-
|
|
13421
|
-
// EXTERNAL MODULE: ./node_modules/element-ui/lib/theme-chalk/checkbox.css
|
|
13422
|
-
var theme_chalk_checkbox = __webpack_require__("560b");
|
|
13423
|
-
|
|
13424
|
-
// EXTERNAL MODULE: ./node_modules/element-ui/lib/checkbox.js
|
|
13425
|
-
var lib_checkbox = __webpack_require__("dcdc");
|
|
13426
|
-
var lib_checkbox_default = /*#__PURE__*/__webpack_require__.n(lib_checkbox);
|
|
13427
|
-
|
|
13428
|
-
// EXTERNAL MODULE: external "core-js/modules/es.array.map.js"
|
|
13429
|
-
var es_array_map_js_ = __webpack_require__("4391");
|
|
13990
|
+
// EXTERNAL MODULE: external "core-js/modules/web.dom-collections.for-each.js"
|
|
13991
|
+
var web_dom_collections_for_each_js_ = __webpack_require__("13e3");
|
|
13430
13992
|
|
|
13431
13993
|
// EXTERNAL MODULE: external "core-js/modules/es.array.includes.js"
|
|
13432
13994
|
var es_array_includes_js_ = __webpack_require__("85f7");
|
|
@@ -13434,14 +13996,8 @@ var es_array_includes_js_ = __webpack_require__("85f7");
|
|
|
13434
13996
|
// EXTERNAL MODULE: external "core-js/modules/es.string.includes.js"
|
|
13435
13997
|
var es_string_includes_js_ = __webpack_require__("fd22");
|
|
13436
13998
|
|
|
13437
|
-
// EXTERNAL MODULE: external "core-js/modules/es.
|
|
13438
|
-
var
|
|
13439
|
-
|
|
13440
|
-
// EXTERNAL MODULE: external "core-js/modules/es.string.split.js"
|
|
13441
|
-
var es_string_split_js_ = __webpack_require__("0cda");
|
|
13442
|
-
|
|
13443
|
-
// EXTERNAL MODULE: external "core-js/modules/web.dom-collections.for-each.js"
|
|
13444
|
-
var web_dom_collections_for_each_js_ = __webpack_require__("13e3");
|
|
13999
|
+
// EXTERNAL MODULE: external "core-js/modules/es.array.push.js"
|
|
14000
|
+
var es_array_push_js_ = __webpack_require__("2439");
|
|
13445
14001
|
|
|
13446
14002
|
// EXTERNAL MODULE: external "core-js/modules/es.set.js"
|
|
13447
14003
|
var es_set_js_ = __webpack_require__("8535");
|
|
@@ -13456,10 +14012,156 @@ var es_number_constructor_js_ = __webpack_require__("f989");
|
|
|
13456
14012
|
var external_vue_ = __webpack_require__("8bbf");
|
|
13457
14013
|
var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
|
|
13458
14014
|
|
|
13459
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13460
|
-
var Tooltipvue_type_template_id_6d6dee76_scoped_true_render = function () {
|
|
13461
|
-
var
|
|
13462
|
-
|
|
14015
|
+
// 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&
|
|
14016
|
+
var Tooltipvue_type_template_id_6d6dee76_scoped_true_render = function render() {
|
|
14017
|
+
var _vm = this,
|
|
14018
|
+
_c = _vm._self._c;
|
|
14019
|
+
return _c('div', {
|
|
14020
|
+
staticClass: "tooltip-container"
|
|
14021
|
+
}, [_vm.content ? _c('el-main', {
|
|
14022
|
+
directives: [{
|
|
14023
|
+
name: "loading",
|
|
14024
|
+
rawName: "v-loading",
|
|
14025
|
+
value: _vm.loading,
|
|
14026
|
+
expression: "loading"
|
|
14027
|
+
}],
|
|
14028
|
+
staticClass: "main"
|
|
14029
|
+
}, [_vm.content.title ? _c('div', {
|
|
14030
|
+
staticClass: "block"
|
|
14031
|
+
}, [_c('span', {
|
|
14032
|
+
staticClass: "title"
|
|
14033
|
+
}, [_vm._v(_vm._s(_vm.capitalise(_vm.content.title)))])]) : _c('div', {
|
|
14034
|
+
staticClass: "block"
|
|
14035
|
+
}, [_c('span', {
|
|
14036
|
+
staticClass: "title"
|
|
14037
|
+
}, [_vm._v(_vm._s(_vm.content.featureId))])]), _c('div', {
|
|
14038
|
+
staticClass: "content-container scrollbar"
|
|
14039
|
+
}, [_vm._v(" " + _vm._s(_vm.content.paths) + " "), this.origins ? _c('div', {
|
|
14040
|
+
staticClass: "block"
|
|
14041
|
+
}, [_c('div', [_c('span', {
|
|
14042
|
+
staticClass: "attribute-title"
|
|
14043
|
+
}, [_vm._v("Origin")]), _c('el-popover', {
|
|
14044
|
+
attrs: {
|
|
14045
|
+
"width": "250",
|
|
14046
|
+
"trigger": "hover",
|
|
14047
|
+
"append-to-body": false,
|
|
14048
|
+
"popper-class": "popover-origin-help"
|
|
14049
|
+
}
|
|
14050
|
+
}, [_c('i', {
|
|
14051
|
+
staticClass: "el-icon-warning-outline info",
|
|
14052
|
+
attrs: {
|
|
14053
|
+
"slot": "reference"
|
|
14054
|
+
},
|
|
14055
|
+
slot: "reference"
|
|
14056
|
+
}), _c('span', {
|
|
14057
|
+
staticStyle: {
|
|
14058
|
+
"word-break": "keep-all"
|
|
14059
|
+
}
|
|
14060
|
+
}, [_c('i', [_vm._v("Origin")]), _vm._v(" " + _vm._s(_vm.originDescription) + " ")])])], 1), _vm._l(_vm.origins, function (origin, i) {
|
|
14061
|
+
return _c('div', {
|
|
14062
|
+
key: origin,
|
|
14063
|
+
staticClass: "attribute-content"
|
|
14064
|
+
}, [_vm._v(" " + _vm._s(_vm.capitalise(origin)) + " "), i != _vm.origins.length - 1 ? _c('div', {
|
|
14065
|
+
staticClass: "seperator"
|
|
14066
|
+
}) : _vm._e()]);
|
|
14067
|
+
}), _c('el-button', {
|
|
14068
|
+
directives: [{
|
|
14069
|
+
name: "show",
|
|
14070
|
+
rawName: "v-show",
|
|
14071
|
+
value: _vm.originsWithDatasets.length > 0,
|
|
14072
|
+
expression: "originsWithDatasets.length > 0"
|
|
14073
|
+
}],
|
|
14074
|
+
staticClass: "button",
|
|
14075
|
+
on: {
|
|
14076
|
+
"click": _vm.openDendrites
|
|
14077
|
+
}
|
|
14078
|
+
}, [_vm._v(" Explore origin data ")])], 2) : _vm._e(), this.components ? _c('div', {
|
|
14079
|
+
staticClass: "block"
|
|
14080
|
+
}, [_c('div', {
|
|
14081
|
+
staticClass: "attribute-title"
|
|
14082
|
+
}, [_vm._v("Components")]), _vm._l(_vm.components, function (component, i) {
|
|
14083
|
+
return _c('div', {
|
|
14084
|
+
key: component,
|
|
14085
|
+
staticClass: "attribute-content"
|
|
14086
|
+
}, [_vm._v(" " + _vm._s(_vm.capitalise(component)) + " "), i != _vm.components.length - 1 ? _c('div', {
|
|
14087
|
+
staticClass: "seperator"
|
|
14088
|
+
}) : _vm._e()]);
|
|
14089
|
+
})], 2) : _vm._e(), this.destinations ? _c('div', {
|
|
14090
|
+
staticClass: "block"
|
|
14091
|
+
}, [_c('div', [_c('span', {
|
|
14092
|
+
staticClass: "attribute-title"
|
|
14093
|
+
}, [_vm._v("Destination")]), _c('el-popover', {
|
|
14094
|
+
attrs: {
|
|
14095
|
+
"width": "250",
|
|
14096
|
+
"trigger": "hover",
|
|
14097
|
+
"append-to-body": false,
|
|
14098
|
+
"popper-class": "popover-origin-help"
|
|
14099
|
+
}
|
|
14100
|
+
}, [_c('i', {
|
|
14101
|
+
staticClass: "el-icon-warning-outline info",
|
|
14102
|
+
attrs: {
|
|
14103
|
+
"slot": "reference"
|
|
14104
|
+
},
|
|
14105
|
+
slot: "reference"
|
|
14106
|
+
}), _c('span', {
|
|
14107
|
+
staticStyle: {
|
|
14108
|
+
"word-break": "keep-all"
|
|
14109
|
+
}
|
|
14110
|
+
}, [_c('i', [_vm._v("Destination")]), _vm._v(" is where the axons terminate ")])])], 1), _vm._l(_vm.destinations, function (destination, i) {
|
|
14111
|
+
return _c('div', {
|
|
14112
|
+
key: destination,
|
|
14113
|
+
staticClass: "attribute-content"
|
|
14114
|
+
}, [_vm._v(" " + _vm._s(_vm.capitalise(destination)) + " "), i != _vm.destinations.length - 1 ? _c('div', {
|
|
14115
|
+
staticClass: "seperator"
|
|
14116
|
+
}) : _vm._e()]);
|
|
14117
|
+
}), _c('el-button', {
|
|
14118
|
+
directives: [{
|
|
14119
|
+
name: "show",
|
|
14120
|
+
rawName: "v-show",
|
|
14121
|
+
value: _vm.destinationsWithDatasets.length > 0,
|
|
14122
|
+
expression: "destinationsWithDatasets.length > 0"
|
|
14123
|
+
}],
|
|
14124
|
+
staticClass: "button",
|
|
14125
|
+
on: {
|
|
14126
|
+
"click": _vm.openAxons
|
|
14127
|
+
}
|
|
14128
|
+
}, [_vm._v(" Explore destination data ")])], 2) : _vm._e(), _c('el-button', {
|
|
14129
|
+
directives: [{
|
|
14130
|
+
name: "show",
|
|
14131
|
+
rawName: "v-show",
|
|
14132
|
+
value: _vm.components.length > 0,
|
|
14133
|
+
expression: "components.length > 0"
|
|
14134
|
+
}],
|
|
14135
|
+
staticClass: "button",
|
|
14136
|
+
on: {
|
|
14137
|
+
"click": _vm.openAll
|
|
14138
|
+
}
|
|
14139
|
+
}, [_vm._v(" Search for data on components ")]), _vm.content.featureIds ? _c('pubmed-viewer', {
|
|
14140
|
+
directives: [{
|
|
14141
|
+
name: "show",
|
|
14142
|
+
rawName: "v-show",
|
|
14143
|
+
value: false,
|
|
14144
|
+
expression: "false"
|
|
14145
|
+
}],
|
|
14146
|
+
attrs: {
|
|
14147
|
+
"entry": _vm.content
|
|
14148
|
+
},
|
|
14149
|
+
on: {
|
|
14150
|
+
"pubmedSearchUrl": _vm.pubmedSearchUrlUpdate
|
|
14151
|
+
}
|
|
14152
|
+
}) : _vm._e(), _vm.pubmedSearchUrl != '' ? _c('el-button', {
|
|
14153
|
+
staticClass: "button",
|
|
14154
|
+
attrs: {
|
|
14155
|
+
"icon": "el-icon-notebook-2"
|
|
14156
|
+
},
|
|
14157
|
+
on: {
|
|
14158
|
+
"click": function click($event) {
|
|
14159
|
+
return _vm.openUrl(_vm.pubmedSearchUrl);
|
|
14160
|
+
}
|
|
14161
|
+
}
|
|
14162
|
+
}, [_vm._v(" Open publications in pubmed ")]) : _vm._e()], 1)]) : _vm._e()], 1);
|
|
14163
|
+
};
|
|
14164
|
+
var Tooltipvue_type_template_id_6d6dee76_scoped_true_staticRenderFns = [];
|
|
13463
14165
|
|
|
13464
14166
|
// CONCATENATED MODULE: ./src/components/Tooltip.vue?vue&type=template&id=6d6dee76&scoped=true&
|
|
13465
14167
|
|
|
@@ -13481,6 +14183,7 @@ function _iterableToArray(iter) {
|
|
|
13481
14183
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
13482
14184
|
}
|
|
13483
14185
|
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js
|
|
14186
|
+
|
|
13484
14187
|
function _nonIterableSpread() {
|
|
13485
14188
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
13486
14189
|
}
|
|
@@ -13530,9 +14233,18 @@ var lib_button_default = /*#__PURE__*/__webpack_require__.n(lib_button);
|
|
|
13530
14233
|
// EXTERNAL MODULE: external "core-js/modules/es.string.replace.js"
|
|
13531
14234
|
var es_string_replace_js_ = __webpack_require__("6378");
|
|
13532
14235
|
|
|
14236
|
+
// EXTERNAL MODULE: external "core-js/modules/es.json.stringify.js"
|
|
14237
|
+
var es_json_stringify_js_ = __webpack_require__("a9ee");
|
|
14238
|
+
|
|
14239
|
+
// EXTERNAL MODULE: external "core-js/modules/es.array.map.js"
|
|
14240
|
+
var es_array_map_js_ = __webpack_require__("4391");
|
|
14241
|
+
|
|
13533
14242
|
// EXTERNAL MODULE: external "core-js/modules/es.array.flat.js"
|
|
13534
14243
|
var es_array_flat_js_ = __webpack_require__("da6e");
|
|
13535
14244
|
|
|
14245
|
+
// EXTERNAL MODULE: external "core-js/modules/es.array.unscopables.flat.js"
|
|
14246
|
+
var es_array_unscopables_flat_js_ = __webpack_require__("722b");
|
|
14247
|
+
|
|
13536
14248
|
// EXTERNAL MODULE: external "core-js/modules/es.promise.js"
|
|
13537
14249
|
var es_promise_js_ = __webpack_require__("ec71");
|
|
13538
14250
|
|
|
@@ -13550,20 +14262,25 @@ var en_default = /*#__PURE__*/__webpack_require__.n(en);
|
|
|
13550
14262
|
var locale = __webpack_require__("4897");
|
|
13551
14263
|
var locale_default = /*#__PURE__*/__webpack_require__.n(locale);
|
|
13552
14264
|
|
|
13553
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13554
|
-
var PubmedViewervue_type_template_id_58832c92_scoped_true_render = function () {
|
|
13555
|
-
var
|
|
13556
|
-
|
|
14265
|
+
// 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&
|
|
14266
|
+
var PubmedViewervue_type_template_id_58832c92_scoped_true_render = function render() {
|
|
14267
|
+
var _vm = this,
|
|
14268
|
+
_c = _vm._self._c;
|
|
14269
|
+
return _c('div', {
|
|
14270
|
+
staticClass: "pubmed-container"
|
|
14271
|
+
});
|
|
14272
|
+
};
|
|
14273
|
+
var PubmedViewervue_type_template_id_58832c92_scoped_true_staticRenderFns = [];
|
|
13557
14274
|
|
|
13558
14275
|
// CONCATENATED MODULE: ./src/components/PubmedViewer.vue?vue&type=template&id=58832c92&scoped=true&
|
|
13559
14276
|
|
|
13560
|
-
// EXTERNAL MODULE: external "core-js/modules/web.url.js"
|
|
13561
|
-
var
|
|
14277
|
+
// EXTERNAL MODULE: external "core-js/modules/web.url-search-params.js"
|
|
14278
|
+
var web_url_search_params_js_ = __webpack_require__("712c");
|
|
13562
14279
|
|
|
13563
14280
|
// EXTERNAL MODULE: external "core-js/modules/es.regexp.to-string.js"
|
|
13564
14281
|
var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
13565
14282
|
|
|
13566
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--
|
|
14283
|
+
// 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&
|
|
13567
14284
|
|
|
13568
14285
|
|
|
13569
14286
|
|
|
@@ -13574,16 +14291,8 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13574
14291
|
|
|
13575
14292
|
|
|
13576
14293
|
|
|
13577
|
-
|
|
13578
|
-
//
|
|
13579
|
-
//
|
|
13580
|
-
//
|
|
13581
|
-
//
|
|
13582
|
-
//
|
|
13583
|
-
//
|
|
13584
|
-
//
|
|
13585
|
-
|
|
13586
14294
|
/* eslint-disable no-alert, no-console */
|
|
14295
|
+
|
|
13587
14296
|
/* harmony default export */ var PubmedViewervue_type_script_lang_js_ = ({
|
|
13588
14297
|
name: "Tooltip",
|
|
13589
14298
|
props: {
|
|
@@ -13615,7 +14324,6 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13615
14324
|
},
|
|
13616
14325
|
buildPubmedSqlStatement: function buildPubmedSqlStatement(keastIds) {
|
|
13617
14326
|
var sql = 'select distinct publication from publications where entity in (';
|
|
13618
|
-
|
|
13619
14327
|
if (keastIds.length === 1) {
|
|
13620
14328
|
sql += "'".concat(keastIds[0], "')");
|
|
13621
14329
|
} else if (keastIds.length > 1) {
|
|
@@ -13623,7 +14331,6 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13623
14331
|
sql += "'".concat(keastIds[i], "'").concat(i >= keastIds.length - 1 ? ')' : ',', " ");
|
|
13624
14332
|
}
|
|
13625
14333
|
}
|
|
13626
|
-
|
|
13627
14334
|
return sql;
|
|
13628
14335
|
},
|
|
13629
14336
|
buildPubmedSqlStatementForModels: function buildPubmedSqlStatementForModels(model) {
|
|
@@ -13647,12 +14354,11 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13647
14354
|
},
|
|
13648
14355
|
pubmedQueryOnIds: function pubmedQueryOnIds(keastIds) {
|
|
13649
14356
|
var _this = this;
|
|
13650
|
-
|
|
13651
14357
|
if (!keastIds || keastIds.length === 0) return;
|
|
13652
14358
|
var sql = this.buildPubmedSqlStatement(keastIds);
|
|
13653
14359
|
this.flatmapQuery(sql).then(function (data) {
|
|
13654
|
-
_this.responseData = data;
|
|
13655
|
-
|
|
14360
|
+
_this.responseData = data;
|
|
14361
|
+
// Create pubmed url on paths if we have them
|
|
13656
14362
|
if (data.values.length > 0) {
|
|
13657
14363
|
_this.$emit('pubmedSearchUrl', _this.pubmedSearchUrl(data.values.map(function (id) {
|
|
13658
14364
|
return _this.stripPMIDPrefix(id[0]);
|
|
@@ -13665,7 +14371,6 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13665
14371
|
},
|
|
13666
14372
|
pubmedQueryOnModels: function pubmedQueryOnModels(source) {
|
|
13667
14373
|
var _this2 = this;
|
|
13668
|
-
|
|
13669
14374
|
this.flatmapQuery(this.buildPubmedSqlStatementForModels(source)).then(function (data) {
|
|
13670
14375
|
if (Array.isArray(data.values) && data.values.length > 0) {
|
|
13671
14376
|
_this2.$emit('pubmedSearchUrl', _this2.pubmedSearchUrl(data.values.map(function (id) {
|
|
@@ -13673,10 +14378,10 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13673
14378
|
})));
|
|
13674
14379
|
} else {
|
|
13675
14380
|
_this2.$emit('pubmedSearchUrl', ''); // Clears the pubmed search button
|
|
13676
|
-
|
|
13677
14381
|
}
|
|
13678
14382
|
});
|
|
13679
14383
|
},
|
|
14384
|
+
|
|
13680
14385
|
pubmedSearchUrl: function pubmedSearchUrl(ids) {
|
|
13681
14386
|
var url = 'https://pubmed.ncbi.nlm.nih.gov/?';
|
|
13682
14387
|
var params = new URLSearchParams();
|
|
@@ -13687,8 +14392,8 @@ var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
|
13687
14392
|
});
|
|
13688
14393
|
// CONCATENATED MODULE: ./src/components/PubmedViewer.vue?vue&type=script&lang=js&
|
|
13689
14394
|
/* harmony default export */ var components_PubmedViewervue_type_script_lang_js_ = (PubmedViewervue_type_script_lang_js_);
|
|
13690
|
-
// EXTERNAL MODULE: ./src/components/PubmedViewer.vue?vue&type=style&index=0&id=58832c92&scoped=true&lang=scss&
|
|
13691
|
-
var
|
|
14395
|
+
// EXTERNAL MODULE: ./src/components/PubmedViewer.vue?vue&type=style&index=0&id=58832c92&prod&scoped=true&lang=scss&
|
|
14396
|
+
var PubmedViewervue_type_style_index_0_id_58832c92_prod_scoped_true_lang_scss_ = __webpack_require__("233b");
|
|
13692
14397
|
|
|
13693
14398
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
13694
14399
|
/* globals __VUE_SSR_CONTEXT__ */
|
|
@@ -13697,20 +14402,19 @@ var PubmedViewervue_type_style_index_0_id_58832c92_scoped_true_lang_scss_ = __we
|
|
|
13697
14402
|
// This module is a runtime utility for cleaner component module output and will
|
|
13698
14403
|
// be included in the final webpack user bundle.
|
|
13699
14404
|
|
|
13700
|
-
function normalizeComponent
|
|
14405
|
+
function normalizeComponent(
|
|
13701
14406
|
scriptExports,
|
|
13702
14407
|
render,
|
|
13703
14408
|
staticRenderFns,
|
|
13704
14409
|
functionalTemplate,
|
|
13705
14410
|
injectStyles,
|
|
13706
14411
|
scopeId,
|
|
13707
|
-
moduleIdentifier
|
|
14412
|
+
moduleIdentifier /* server only */,
|
|
13708
14413
|
shadowMode /* vue-cli only */
|
|
13709
14414
|
) {
|
|
13710
14415
|
// Vue.extend constructor export interop
|
|
13711
|
-
var options =
|
|
13712
|
-
? scriptExports.options
|
|
13713
|
-
: scriptExports
|
|
14416
|
+
var options =
|
|
14417
|
+
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
13714
14418
|
|
|
13715
14419
|
// render functions
|
|
13716
14420
|
if (render) {
|
|
@@ -13730,7 +14434,8 @@ function normalizeComponent (
|
|
|
13730
14434
|
}
|
|
13731
14435
|
|
|
13732
14436
|
var hook
|
|
13733
|
-
if (moduleIdentifier) {
|
|
14437
|
+
if (moduleIdentifier) {
|
|
14438
|
+
// server build
|
|
13734
14439
|
hook = function (context) {
|
|
13735
14440
|
// 2.3 injection
|
|
13736
14441
|
context =
|
|
@@ -13756,11 +14461,11 @@ function normalizeComponent (
|
|
|
13756
14461
|
} else if (injectStyles) {
|
|
13757
14462
|
hook = shadowMode
|
|
13758
14463
|
? function () {
|
|
13759
|
-
|
|
13760
|
-
|
|
13761
|
-
|
|
13762
|
-
|
|
13763
|
-
|
|
14464
|
+
injectStyles.call(
|
|
14465
|
+
this,
|
|
14466
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
14467
|
+
)
|
|
14468
|
+
}
|
|
13764
14469
|
: injectStyles
|
|
13765
14470
|
}
|
|
13766
14471
|
|
|
@@ -13771,16 +14476,14 @@ function normalizeComponent (
|
|
|
13771
14476
|
options._injectStyles = hook
|
|
13772
14477
|
// register for functional component in vue file
|
|
13773
14478
|
var originalRender = options.render
|
|
13774
|
-
options.render = function renderWithStyleInjection
|
|
14479
|
+
options.render = function renderWithStyleInjection(h, context) {
|
|
13775
14480
|
hook.call(context)
|
|
13776
14481
|
return originalRender(h, context)
|
|
13777
14482
|
}
|
|
13778
14483
|
} else {
|
|
13779
14484
|
// inject component registration as beforeCreate hook
|
|
13780
14485
|
var existing = options.beforeCreate
|
|
13781
|
-
options.beforeCreate = existing
|
|
13782
|
-
? [].concat(existing, hook)
|
|
13783
|
-
: [hook]
|
|
14486
|
+
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
13784
14487
|
}
|
|
13785
14488
|
}
|
|
13786
14489
|
|
|
@@ -13815,7 +14518,9 @@ var component = normalizeComponent(
|
|
|
13815
14518
|
|
|
13816
14519
|
var EventBus = new external_vue_default.a();
|
|
13817
14520
|
/* harmony default export */ var components_EventBus = (EventBus);
|
|
13818
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--
|
|
14521
|
+
// 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&
|
|
14522
|
+
|
|
14523
|
+
|
|
13819
14524
|
|
|
13820
14525
|
|
|
13821
14526
|
|
|
@@ -13849,86 +14554,6 @@ var EventBus = new external_vue_default.a();
|
|
|
13849
14554
|
|
|
13850
14555
|
|
|
13851
14556
|
|
|
13852
|
-
//
|
|
13853
|
-
//
|
|
13854
|
-
//
|
|
13855
|
-
//
|
|
13856
|
-
//
|
|
13857
|
-
//
|
|
13858
|
-
//
|
|
13859
|
-
//
|
|
13860
|
-
//
|
|
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
14557
|
|
|
13933
14558
|
/* eslint-disable no-alert, no-console */
|
|
13934
14559
|
|
|
@@ -13939,9 +14564,9 @@ external_vue_default.a.use(lib_button_default.a);
|
|
|
13939
14564
|
external_vue_default.a.use(lib_container_default.a);
|
|
13940
14565
|
external_vue_default.a.use(lib_header_default.a);
|
|
13941
14566
|
external_vue_default.a.use(lib_icon_default.a);
|
|
13942
|
-
external_vue_default.a.use(lib_main_default.a);
|
|
13943
|
-
|
|
14567
|
+
external_vue_default.a.use(lib_main_default.a);
|
|
13944
14568
|
|
|
14569
|
+
// pubmedviewer is currently not in use, but still under review so not ready to delete yet
|
|
13945
14570
|
|
|
13946
14571
|
|
|
13947
14572
|
var _titleCase = function titleCase(str) {
|
|
@@ -13949,14 +14574,13 @@ var _titleCase = function titleCase(str) {
|
|
|
13949
14574
|
return t.charAt(0).toUpperCase() + t.substr(1).toLowerCase();
|
|
13950
14575
|
});
|
|
13951
14576
|
};
|
|
13952
|
-
|
|
13953
14577
|
var inArray = function inArray(ar1, ar2) {
|
|
13954
14578
|
var as1 = JSON.stringify(ar1);
|
|
13955
14579
|
var as2 = JSON.stringify(ar2);
|
|
13956
14580
|
return as1.indexOf(as2) !== -1;
|
|
13957
|
-
};
|
|
13958
|
-
|
|
14581
|
+
};
|
|
13959
14582
|
|
|
14583
|
+
// remove duplicates by stringifying the objects
|
|
13960
14584
|
var Tooltipvue_type_script_lang_js_removeDuplicates = function removeDuplicates(arrayOfAnything) {
|
|
13961
14585
|
return _toConsumableArray(new Set(arrayOfAnything.map(function (e) {
|
|
13962
14586
|
return JSON.stringify(e);
|
|
@@ -13964,12 +14588,10 @@ var Tooltipvue_type_script_lang_js_removeDuplicates = function removeDuplicates(
|
|
|
13964
14588
|
return JSON.parse(e);
|
|
13965
14589
|
});
|
|
13966
14590
|
};
|
|
13967
|
-
|
|
13968
14591
|
var _capitalise = function capitalise(str) {
|
|
13969
14592
|
if (str) return str.charAt(0).toUpperCase() + str.slice(1);
|
|
13970
14593
|
return "";
|
|
13971
14594
|
};
|
|
13972
|
-
|
|
13973
14595
|
/* harmony default export */ var Tooltipvue_type_script_lang_js_ = ({
|
|
13974
14596
|
components: {
|
|
13975
14597
|
PubmedViewer: PubmedViewer
|
|
@@ -14070,10 +14692,7 @@ var _capitalise = function capitalise(str) {
|
|
|
14070
14692
|
},
|
|
14071
14693
|
findAllIdsFromConnectivity: function findAllIdsFromConnectivity(connectivity) {
|
|
14072
14694
|
var dnodes = connectivity.connectivity.flat(); // get nodes from edgelist
|
|
14073
|
-
|
|
14074
14695
|
var nodes = _toConsumableArray(new Set(dnodes)); // remove duplicates
|
|
14075
|
-
|
|
14076
|
-
|
|
14077
14696
|
var found = [];
|
|
14078
14697
|
nodes.forEach(function (n) {
|
|
14079
14698
|
if (Array.isArray(n)) {
|
|
@@ -14086,10 +14705,7 @@ var _capitalise = function capitalise(str) {
|
|
|
14086
14705
|
},
|
|
14087
14706
|
flattenConntectivity: function flattenConntectivity(connectivity) {
|
|
14088
14707
|
var dnodes = connectivity.flat(); // get nodes from edgelist
|
|
14089
|
-
|
|
14090
14708
|
var nodes = _toConsumableArray(new Set(dnodes)); // remove duplicates
|
|
14091
|
-
|
|
14092
|
-
|
|
14093
14709
|
var found = [];
|
|
14094
14710
|
nodes.forEach(function (n) {
|
|
14095
14711
|
if (Array.isArray(n)) {
|
|
@@ -14102,21 +14718,18 @@ var _capitalise = function capitalise(str) {
|
|
|
14102
14718
|
},
|
|
14103
14719
|
findComponents: function findComponents(connectivity) {
|
|
14104
14720
|
var dnodes = connectivity.connectivity.flat(); // get nodes from edgelist
|
|
14105
|
-
|
|
14106
14721
|
var nodes = Tooltipvue_type_script_lang_js_removeDuplicates(dnodes);
|
|
14107
14722
|
var found = [];
|
|
14108
14723
|
var terminal = false;
|
|
14109
14724
|
nodes.forEach(function (node) {
|
|
14110
|
-
terminal = false;
|
|
14111
|
-
|
|
14725
|
+
terminal = false;
|
|
14726
|
+
// Check if the node is an destination or origin (note that they are labelled dendrite and axon as opposed to origin and destination)
|
|
14112
14727
|
if (inArray(connectivity.axons, node)) {
|
|
14113
14728
|
terminal = true;
|
|
14114
14729
|
}
|
|
14115
|
-
|
|
14116
14730
|
if (inArray(connectivity.dendrites, node)) {
|
|
14117
14731
|
terminal = true;
|
|
14118
14732
|
}
|
|
14119
|
-
|
|
14120
14733
|
if (!terminal) {
|
|
14121
14734
|
found.push(node);
|
|
14122
14735
|
}
|
|
@@ -14125,7 +14738,6 @@ var _capitalise = function capitalise(str) {
|
|
|
14125
14738
|
},
|
|
14126
14739
|
getOrganCuries: function getOrganCuries() {
|
|
14127
14740
|
var _this = this;
|
|
14128
|
-
|
|
14129
14741
|
fetch("".concat(this.sparcAPI, "get-organ-curies/")).then(function (response) {
|
|
14130
14742
|
return response.json();
|
|
14131
14743
|
}).then(function (data) {
|
|
@@ -14134,7 +14746,6 @@ var _capitalise = function capitalise(str) {
|
|
|
14134
14746
|
},
|
|
14135
14747
|
buildConnectivitySqlStatement: function buildConnectivitySqlStatement(keastIds) {
|
|
14136
14748
|
var sql = 'select knowledge from knowledge where entity in (';
|
|
14137
|
-
|
|
14138
14749
|
if (keastIds.length === 1) {
|
|
14139
14750
|
sql += "'".concat(keastIds[0], "')");
|
|
14140
14751
|
} else if (keastIds.length > 1) {
|
|
@@ -14142,12 +14753,10 @@ var _capitalise = function capitalise(str) {
|
|
|
14142
14753
|
sql += "'".concat(keastIds[i], "'").concat(i >= keastIds.length - 1 ? ')' : ',', " ");
|
|
14143
14754
|
}
|
|
14144
14755
|
}
|
|
14145
|
-
|
|
14146
14756
|
return sql;
|
|
14147
14757
|
},
|
|
14148
14758
|
buildLabelSqlStatement: function buildLabelSqlStatement(uberons) {
|
|
14149
14759
|
var sql = 'select entity, label from labels where entity in (';
|
|
14150
|
-
|
|
14151
14760
|
if (uberons.length === 1) {
|
|
14152
14761
|
sql += "'".concat(uberons[0], "')");
|
|
14153
14762
|
} else if (uberons.length > 1) {
|
|
@@ -14155,12 +14764,10 @@ var _capitalise = function capitalise(str) {
|
|
|
14155
14764
|
sql += "'".concat(uberons[i], "'").concat(i >= uberons.length - 1 ? ')' : ',', " ");
|
|
14156
14765
|
}
|
|
14157
14766
|
}
|
|
14158
|
-
|
|
14159
14767
|
return sql;
|
|
14160
14768
|
},
|
|
14161
14769
|
createLabelLookup: function createLabelLookup(uberons) {
|
|
14162
14770
|
var _this2 = this;
|
|
14163
|
-
|
|
14164
14771
|
return new Promise(function (resolve) {
|
|
14165
14772
|
var uberonMap = {};
|
|
14166
14773
|
var data = {
|
|
@@ -14177,24 +14784,20 @@ var _capitalise = function capitalise(str) {
|
|
|
14177
14784
|
}).then(function (payload) {
|
|
14178
14785
|
var entity = payload.keys.indexOf("entity");
|
|
14179
14786
|
var label = payload.keys.indexOf("label");
|
|
14180
|
-
|
|
14181
14787
|
if (entity > -1 && label > -1) {
|
|
14182
14788
|
payload.values.forEach(function (pair) {
|
|
14183
14789
|
uberonMap[pair[entity]] = pair[label];
|
|
14184
14790
|
});
|
|
14185
14791
|
}
|
|
14186
|
-
|
|
14187
14792
|
resolve(uberonMap);
|
|
14188
14793
|
});
|
|
14189
14794
|
});
|
|
14190
14795
|
},
|
|
14191
14796
|
createComponentsLabelList: function createComponentsLabelList(components, lookUp) {
|
|
14192
14797
|
var _this3 = this;
|
|
14193
|
-
|
|
14194
14798
|
var labelList = [];
|
|
14195
14799
|
components.forEach(function (n) {
|
|
14196
14800
|
labelList.push(_this3.createLabelFromNeuralNode(n[0]), lookUp);
|
|
14197
|
-
|
|
14198
14801
|
if (n.length === 2) {
|
|
14199
14802
|
labelList.push(_this3.createLabelFromNeuralNode(n[1]), lookUp);
|
|
14200
14803
|
}
|
|
@@ -14203,7 +14806,6 @@ var _capitalise = function capitalise(str) {
|
|
|
14203
14806
|
},
|
|
14204
14807
|
createLabelFromNeuralNode: function createLabelFromNeuralNode(node, lookUp) {
|
|
14205
14808
|
var label = lookUp[node[0]];
|
|
14206
|
-
|
|
14207
14809
|
if (node.length === 2 && node[1].length > 0) {
|
|
14208
14810
|
node[1].forEach(function (n) {
|
|
14209
14811
|
if (lookUp[n] == undefined) {
|
|
@@ -14213,20 +14815,21 @@ var _capitalise = function capitalise(str) {
|
|
|
14213
14815
|
}
|
|
14214
14816
|
});
|
|
14215
14817
|
}
|
|
14216
|
-
|
|
14217
14818
|
return label;
|
|
14218
14819
|
},
|
|
14219
14820
|
processConnectivity: function processConnectivity(connectivity) {
|
|
14220
14821
|
var _this4 = this;
|
|
14221
|
-
|
|
14222
14822
|
// Filter the origin and destinations from components
|
|
14223
|
-
var components = this.findComponents(connectivity);
|
|
14823
|
+
var components = this.findComponents(connectivity);
|
|
14224
14824
|
|
|
14825
|
+
// Remove duplicates
|
|
14225
14826
|
var axons = Tooltipvue_type_script_lang_js_removeDuplicates(connectivity.axons);
|
|
14226
|
-
var dendrites = Tooltipvue_type_script_lang_js_removeDuplicates(connectivity.dendrites);
|
|
14827
|
+
var dendrites = Tooltipvue_type_script_lang_js_removeDuplicates(connectivity.dendrites);
|
|
14227
14828
|
|
|
14228
|
-
|
|
14829
|
+
// Create list of ids to get labels for
|
|
14830
|
+
var conIds = this.findAllIdsFromConnectivity(connectivity);
|
|
14229
14831
|
|
|
14832
|
+
// Create readable labels from the nodes. Setting this to 'this.origins' updates the display
|
|
14230
14833
|
this.createLabelLookup(conIds).then(function (lookUp) {
|
|
14231
14834
|
_this4.destinations = axons.map(function (a) {
|
|
14232
14835
|
return _this4.createLabelFromNeuralNode(a, lookUp);
|
|
@@ -14244,8 +14847,9 @@ var _capitalise = function capitalise(str) {
|
|
|
14244
14847
|
// process the nodes for finding datasets (Note this is not critical to the tooltip, only for the 'search on components' button)
|
|
14245
14848
|
var componentsFlat = this.flattenConntectivity(components);
|
|
14246
14849
|
var axonsFlat = this.flattenConntectivity(axons);
|
|
14247
|
-
var dendritesFlat = this.flattenConntectivity(dendrites);
|
|
14850
|
+
var dendritesFlat = this.flattenConntectivity(dendrites);
|
|
14248
14851
|
|
|
14852
|
+
// Filter for the anatomy which is annotated on datasets
|
|
14249
14853
|
this.destinationsWithDatasets = this.uberons.filter(function (ub) {
|
|
14250
14854
|
return axonsFlat.indexOf(ub.id) !== -1;
|
|
14251
14855
|
});
|
|
@@ -14258,7 +14862,6 @@ var _capitalise = function capitalise(str) {
|
|
|
14258
14862
|
},
|
|
14259
14863
|
pathwayQuery: function pathwayQuery(keastIds) {
|
|
14260
14864
|
var _this5 = this;
|
|
14261
|
-
|
|
14262
14865
|
this.destinations = [];
|
|
14263
14866
|
this.origins = [];
|
|
14264
14867
|
this.components = [];
|
|
@@ -14277,9 +14880,7 @@ var _capitalise = function capitalise(str) {
|
|
|
14277
14880
|
return response.json();
|
|
14278
14881
|
}).then(function (data) {
|
|
14279
14882
|
var connectivity = JSON.parse(data.values[0][0]);
|
|
14280
|
-
|
|
14281
14883
|
_this5.processConnectivity(connectivity);
|
|
14282
|
-
|
|
14283
14884
|
_this5.loading = false;
|
|
14284
14885
|
}).catch(function (error) {
|
|
14285
14886
|
console.error('Error:', error);
|
|
@@ -14289,8 +14890,8 @@ var _capitalise = function capitalise(str) {
|
|
|
14289
14890
|
});
|
|
14290
14891
|
// CONCATENATED MODULE: ./src/components/Tooltip.vue?vue&type=script&lang=js&
|
|
14291
14892
|
/* harmony default export */ var components_Tooltipvue_type_script_lang_js_ = (Tooltipvue_type_script_lang_js_);
|
|
14292
|
-
// EXTERNAL MODULE: ./src/components/Tooltip.vue?vue&type=style&index=0&id=6d6dee76&scoped=true&lang=scss&
|
|
14293
|
-
var
|
|
14893
|
+
// EXTERNAL MODULE: ./src/components/Tooltip.vue?vue&type=style&index=0&id=6d6dee76&prod&scoped=true&lang=scss&
|
|
14894
|
+
var Tooltipvue_type_style_index_0_id_6d6dee76_prod_scoped_true_lang_scss_ = __webpack_require__("b64b");
|
|
14294
14895
|
|
|
14295
14896
|
// CONCATENATED MODULE: ./src/components/Tooltip.vue
|
|
14296
14897
|
|
|
@@ -14313,48 +14914,227 @@ var Tooltip_component = normalizeComponent(
|
|
|
14313
14914
|
)
|
|
14314
14915
|
|
|
14315
14916
|
/* harmony default export */ var Tooltip = (Tooltip_component.exports);
|
|
14316
|
-
//
|
|
14317
|
-
var
|
|
14917
|
+
// 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&
|
|
14918
|
+
var SelectionsGroupvue_type_template_id_f6ac6e34_scoped_true_render = function render() {
|
|
14919
|
+
var _vm = this,
|
|
14920
|
+
_c = _vm._self._c;
|
|
14921
|
+
return _c('div', {
|
|
14922
|
+
staticClass: "selections-container"
|
|
14923
|
+
}, [_c('el-row', [_c('el-col', {
|
|
14924
|
+
attrs: {
|
|
14925
|
+
"span": 12
|
|
14926
|
+
}
|
|
14927
|
+
}, [_c('div', {
|
|
14928
|
+
staticClass: "checkall-display-text"
|
|
14929
|
+
}, [_vm._v(_vm._s(_vm.title))])]), _c('el-col', {
|
|
14930
|
+
attrs: {
|
|
14931
|
+
"span": 12
|
|
14932
|
+
}
|
|
14933
|
+
}, [_vm.selections && _vm.selections.length > 1 ? _c('el-checkbox', {
|
|
14934
|
+
staticClass: "all-checkbox",
|
|
14935
|
+
attrs: {
|
|
14936
|
+
"indeterminate": _vm.isIndeterminate
|
|
14937
|
+
},
|
|
14938
|
+
on: {
|
|
14939
|
+
"change": _vm.handleCheckAllChange
|
|
14940
|
+
},
|
|
14941
|
+
model: {
|
|
14942
|
+
value: _vm.checkAll,
|
|
14943
|
+
callback: function callback($$v) {
|
|
14944
|
+
_vm.checkAll = $$v;
|
|
14945
|
+
},
|
|
14946
|
+
expression: "checkAll"
|
|
14947
|
+
}
|
|
14948
|
+
}, [_vm._v("Display all")]) : _vm._e()], 1)], 1), _c('el-checkbox-group', {
|
|
14949
|
+
staticClass: "checkbox-group",
|
|
14950
|
+
attrs: {
|
|
14951
|
+
"size": "small"
|
|
14952
|
+
},
|
|
14953
|
+
on: {
|
|
14954
|
+
"change": _vm.handleCheckedItemsChange
|
|
14955
|
+
},
|
|
14956
|
+
model: {
|
|
14957
|
+
value: _vm.checkedItems,
|
|
14958
|
+
callback: function callback($$v) {
|
|
14959
|
+
_vm.checkedItems = $$v;
|
|
14960
|
+
},
|
|
14961
|
+
expression: "checkedItems"
|
|
14962
|
+
}
|
|
14963
|
+
}, [_c('div', {
|
|
14964
|
+
staticClass: "checkbox-group-inner"
|
|
14965
|
+
}, _vm._l(_vm.selections, function (item) {
|
|
14966
|
+
return _c('el-row', {
|
|
14967
|
+
key: item[_vm.identifierKey],
|
|
14968
|
+
attrs: {
|
|
14969
|
+
"label": item[_vm.identifierKey]
|
|
14970
|
+
}
|
|
14971
|
+
}, [_c('div', {
|
|
14972
|
+
staticClass: "checkbox-container"
|
|
14973
|
+
}, [_c('el-checkbox', {
|
|
14974
|
+
staticClass: "my-checkbox",
|
|
14975
|
+
attrs: {
|
|
14976
|
+
"label": item[_vm.identifierKey],
|
|
14977
|
+
"checked": !('enable' in item && item.enable === false)
|
|
14978
|
+
},
|
|
14979
|
+
on: {
|
|
14980
|
+
"change": function change($event) {
|
|
14981
|
+
return _vm.visibilityToggle(item[_vm.identifierKey], $event);
|
|
14982
|
+
}
|
|
14983
|
+
}
|
|
14984
|
+
}, [_c('div', {
|
|
14985
|
+
staticClass: "path-visual",
|
|
14986
|
+
style: _vm.getVisualStyles(item)
|
|
14987
|
+
}), _vm._v(" " + _vm._s(item[_vm.labelKey]) + " ")])], 1)]);
|
|
14988
|
+
}), 1)])], 1);
|
|
14989
|
+
};
|
|
14990
|
+
var SelectionsGroupvue_type_template_id_f6ac6e34_scoped_true_staticRenderFns = [];
|
|
14991
|
+
|
|
14992
|
+
// CONCATENATED MODULE: ./src/components/SelectionsGroup.vue?vue&type=template&id=f6ac6e34&scoped=true&
|
|
14993
|
+
|
|
14994
|
+
// EXTERNAL MODULE: ./node_modules/element-ui/lib/theme-chalk/checkbox-group.css
|
|
14995
|
+
var checkbox_group = __webpack_require__("d4df");
|
|
14318
14996
|
|
|
14319
|
-
//
|
|
14320
|
-
var
|
|
14321
|
-
var
|
|
14997
|
+
// EXTERNAL MODULE: ./node_modules/element-ui/lib/checkbox-group.js
|
|
14998
|
+
var lib_checkbox_group = __webpack_require__("7fc1");
|
|
14999
|
+
var lib_checkbox_group_default = /*#__PURE__*/__webpack_require__.n(lib_checkbox_group);
|
|
14322
15000
|
|
|
15001
|
+
// EXTERNAL MODULE: ./node_modules/element-ui/lib/theme-chalk/checkbox.css
|
|
15002
|
+
var theme_chalk_checkbox = __webpack_require__("560b");
|
|
14323
15003
|
|
|
14324
|
-
//
|
|
15004
|
+
// EXTERNAL MODULE: ./node_modules/element-ui/lib/checkbox.js
|
|
15005
|
+
var lib_checkbox = __webpack_require__("dcdc");
|
|
15006
|
+
var lib_checkbox_default = /*#__PURE__*/__webpack_require__.n(lib_checkbox);
|
|
14325
15007
|
|
|
14326
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--
|
|
14327
|
-
|
|
14328
|
-
|
|
14329
|
-
|
|
14330
|
-
|
|
14331
|
-
|
|
14332
|
-
|
|
14333
|
-
|
|
14334
|
-
|
|
14335
|
-
|
|
14336
|
-
|
|
14337
|
-
|
|
14338
|
-
|
|
14339
|
-
|
|
14340
|
-
|
|
14341
|
-
|
|
14342
|
-
|
|
14343
|
-
|
|
14344
|
-
|
|
14345
|
-
|
|
14346
|
-
|
|
14347
|
-
|
|
14348
|
-
|
|
14349
|
-
|
|
14350
|
-
|
|
15008
|
+
// 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&
|
|
15009
|
+
|
|
15010
|
+
|
|
15011
|
+
|
|
15012
|
+
|
|
15013
|
+
|
|
15014
|
+
|
|
15015
|
+
|
|
15016
|
+
|
|
15017
|
+
|
|
15018
|
+
|
|
15019
|
+
|
|
15020
|
+
|
|
15021
|
+
|
|
15022
|
+
|
|
15023
|
+
|
|
15024
|
+
|
|
15025
|
+
|
|
15026
|
+
/* eslint-disable no-alert, no-console */
|
|
15027
|
+
|
|
15028
|
+
|
|
15029
|
+
|
|
15030
|
+
locale_default.a.use(en_default.a);
|
|
15031
|
+
external_vue_default.a.use(lib_checkbox_default.a);
|
|
15032
|
+
external_vue_default.a.use(lib_checkbox_group_default.a);
|
|
15033
|
+
external_vue_default.a.use(lib_col_default.a);
|
|
15034
|
+
external_vue_default.a.use(lib_row_default.a);
|
|
15035
|
+
/* harmony default export */ var SelectionsGroupvue_type_script_lang_js_ = ({
|
|
15036
|
+
name: "SelectionsGroup",
|
|
15037
|
+
methods: {
|
|
15038
|
+
/**
|
|
15039
|
+
* Function to toggle paths to default.
|
|
15040
|
+
* Also called when the associated button is pressed.
|
|
15041
|
+
*/
|
|
15042
|
+
reset: function reset() {
|
|
15043
|
+
var _this = this;
|
|
15044
|
+
this.checkAll = true;
|
|
15045
|
+
this.checkedItems = [];
|
|
15046
|
+
this.selections.forEach(function (item) {
|
|
15047
|
+
if (!('enable' in item && item.enable === false)) {
|
|
15048
|
+
_this.checkedItems.push(item[_this.identifierKey]);
|
|
15049
|
+
} else {
|
|
15050
|
+
_this.checkAll = false;
|
|
15051
|
+
}
|
|
15052
|
+
});
|
|
15053
|
+
},
|
|
15054
|
+
visibilityToggle: function visibilityToggle(key, value) {
|
|
15055
|
+
this.$emit("changed", {
|
|
15056
|
+
key: key,
|
|
15057
|
+
value: value
|
|
15058
|
+
});
|
|
15059
|
+
},
|
|
15060
|
+
handleCheckedItemsChange: function handleCheckedItemsChange(value) {
|
|
15061
|
+
var checkedCount = value.length;
|
|
15062
|
+
this.checkAll = checkedCount === this.selections.length;
|
|
15063
|
+
},
|
|
15064
|
+
handleCheckAllChange: function handleCheckAllChange(val) {
|
|
15065
|
+
var _this2 = this;
|
|
15066
|
+
this.checkedItems = val ? this.selections.map(function (a) {
|
|
15067
|
+
return a[_this2.identifierKey];
|
|
15068
|
+
}) : [];
|
|
15069
|
+
this.$emit("checkAll", {
|
|
15070
|
+
keys: this.selections.map(function (a) {
|
|
15071
|
+
return a[_this2.identifierKey];
|
|
15072
|
+
}),
|
|
15073
|
+
value: val
|
|
15074
|
+
});
|
|
15075
|
+
},
|
|
15076
|
+
getVisualStyles: function getVisualStyles(item) {
|
|
15077
|
+
if ('colour' in item) {
|
|
15078
|
+
if ('dashed' in item && item.dashed === true) {
|
|
15079
|
+
var background = "repeating-linear-gradient(90deg,".concat(item.colour, ",").concat(item.colour, " 6px,transparent 0,transparent 9px)");
|
|
15080
|
+
return {
|
|
15081
|
+
'background': background
|
|
15082
|
+
};
|
|
15083
|
+
} else {
|
|
15084
|
+
var _background = item.colour;
|
|
15085
|
+
return {
|
|
15086
|
+
background: _background
|
|
15087
|
+
};
|
|
15088
|
+
}
|
|
15089
|
+
}
|
|
15090
|
+
return {};
|
|
15091
|
+
}
|
|
15092
|
+
},
|
|
15093
|
+
props: {
|
|
15094
|
+
identifierKey: {
|
|
15095
|
+
type: String,
|
|
15096
|
+
default: "id"
|
|
15097
|
+
},
|
|
15098
|
+
labelKey: {
|
|
15099
|
+
type: String,
|
|
15100
|
+
default: "label"
|
|
15101
|
+
},
|
|
15102
|
+
title: {
|
|
15103
|
+
type: String,
|
|
15104
|
+
default: ""
|
|
15105
|
+
},
|
|
15106
|
+
selections: {
|
|
15107
|
+
type: Array,
|
|
15108
|
+
default: function _default() {
|
|
15109
|
+
return [];
|
|
15110
|
+
}
|
|
15111
|
+
}
|
|
15112
|
+
},
|
|
15113
|
+
computed: {
|
|
15114
|
+
isIndeterminate: function isIndeterminate() {
|
|
15115
|
+
var count = this.checkedItems.length;
|
|
15116
|
+
if (count === 0 || this.checkAll) {
|
|
15117
|
+
return false;
|
|
15118
|
+
}
|
|
15119
|
+
return true;
|
|
15120
|
+
}
|
|
15121
|
+
},
|
|
15122
|
+
data: function data() {
|
|
15123
|
+
return {
|
|
15124
|
+
checkedItems: [],
|
|
15125
|
+
checkAll: true
|
|
15126
|
+
};
|
|
15127
|
+
},
|
|
15128
|
+
mounted: function mounted() {
|
|
15129
|
+
this.reset();
|
|
15130
|
+
}
|
|
14351
15131
|
});
|
|
14352
|
-
// CONCATENATED MODULE: ./src/components/
|
|
14353
|
-
/* harmony default export */ var
|
|
14354
|
-
// EXTERNAL MODULE: ./src/components/
|
|
14355
|
-
var
|
|
15132
|
+
// CONCATENATED MODULE: ./src/components/SelectionsGroup.vue?vue&type=script&lang=js&
|
|
15133
|
+
/* harmony default export */ var components_SelectionsGroupvue_type_script_lang_js_ = (SelectionsGroupvue_type_script_lang_js_);
|
|
15134
|
+
// EXTERNAL MODULE: ./src/components/SelectionsGroup.vue?vue&type=style&index=0&id=f6ac6e34&prod&scoped=true&lang=scss&
|
|
15135
|
+
var SelectionsGroupvue_type_style_index_0_id_f6ac6e34_prod_scoped_true_lang_scss_ = __webpack_require__("a79a");
|
|
14356
15136
|
|
|
14357
|
-
// CONCATENATED MODULE: ./src/components/
|
|
15137
|
+
// CONCATENATED MODULE: ./src/components/SelectionsGroup.vue
|
|
14358
15138
|
|
|
14359
15139
|
|
|
14360
15140
|
|
|
@@ -14363,24 +15143,56 @@ var Legendsvue_type_style_index_0_id_514dd6be_scoped_true_lang_scss_ = __webpack
|
|
|
14363
15143
|
|
|
14364
15144
|
/* normalize component */
|
|
14365
15145
|
|
|
14366
|
-
var
|
|
14367
|
-
|
|
14368
|
-
|
|
14369
|
-
|
|
15146
|
+
var SelectionsGroup_component = normalizeComponent(
|
|
15147
|
+
components_SelectionsGroupvue_type_script_lang_js_,
|
|
15148
|
+
SelectionsGroupvue_type_template_id_f6ac6e34_scoped_true_render,
|
|
15149
|
+
SelectionsGroupvue_type_template_id_f6ac6e34_scoped_true_staticRenderFns,
|
|
14370
15150
|
false,
|
|
14371
15151
|
null,
|
|
14372
|
-
"
|
|
15152
|
+
"f6ac6e34",
|
|
14373
15153
|
null
|
|
14374
15154
|
|
|
14375
15155
|
)
|
|
14376
15156
|
|
|
14377
|
-
/* harmony default export */ var
|
|
14378
|
-
//
|
|
14379
|
-
|
|
14380
|
-
// 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&
|
|
15157
|
+
/* harmony default export */ var SelectionsGroup = (SelectionsGroup_component.exports);
|
|
15158
|
+
// EXTERNAL MODULE: external "@abi-software/svg-sprite"
|
|
15159
|
+
var svg_sprite_ = __webpack_require__("429c");
|
|
14381
15160
|
|
|
15161
|
+
// 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&
|
|
15162
|
+
var DynamicLegendsvue_type_template_id_7ea6eb51_scoped_true_render = function render() {
|
|
15163
|
+
var _vm = this,
|
|
15164
|
+
_c = _vm._self._c;
|
|
15165
|
+
return _c('div', [_c('el-row', [_c('el-col', {
|
|
15166
|
+
attrs: {
|
|
15167
|
+
"span": 12
|
|
15168
|
+
}
|
|
15169
|
+
}, [_c('div', {
|
|
15170
|
+
staticClass: "title-display-text"
|
|
15171
|
+
}, [_vm._v(_vm._s(_vm.title))])])], 1), _c('div', {
|
|
15172
|
+
staticClass: "legends-group"
|
|
15173
|
+
}, _vm._l(_vm.lists, function (item) {
|
|
15174
|
+
return _c('el-row', {
|
|
15175
|
+
key: item[_vm.identifierKey],
|
|
15176
|
+
attrs: {
|
|
15177
|
+
"label": item[_vm.identifierKey]
|
|
15178
|
+
}
|
|
15179
|
+
}, [_c('div', {
|
|
15180
|
+
staticClass: "legends-container"
|
|
15181
|
+
}, [_c('div', {
|
|
15182
|
+
staticClass: "legends-visual",
|
|
15183
|
+
style: {
|
|
15184
|
+
background: item[_vm.colourKey]
|
|
15185
|
+
}
|
|
15186
|
+
}), _c('div', {
|
|
15187
|
+
staticClass: "label"
|
|
15188
|
+
}, [_vm._v(" " + _vm._s(_vm.capitalise(item[_vm.identifierKey])) + " ")])])]);
|
|
15189
|
+
}), 1)], 1);
|
|
15190
|
+
};
|
|
15191
|
+
var DynamicLegendsvue_type_template_id_7ea6eb51_scoped_true_staticRenderFns = [];
|
|
14382
15192
|
|
|
15193
|
+
// CONCATENATED MODULE: ./src/components/legends/DynamicLegends.vue?vue&type=template&id=7ea6eb51&scoped=true&
|
|
14383
15194
|
|
|
15195
|
+
// 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&
|
|
14384
15196
|
|
|
14385
15197
|
|
|
14386
15198
|
|
|
@@ -14388,6 +15200,186 @@ var Legends_component = normalizeComponent(
|
|
|
14388
15200
|
|
|
14389
15201
|
|
|
14390
15202
|
|
|
15203
|
+
/* eslint-disable no-alert, no-console */
|
|
15204
|
+
|
|
15205
|
+
|
|
15206
|
+
|
|
15207
|
+
locale_default.a.use(en_default.a);
|
|
15208
|
+
external_vue_default.a.use(lib_col_default.a);
|
|
15209
|
+
external_vue_default.a.use(lib_row_default.a);
|
|
15210
|
+
/* harmony default export */ var DynamicLegendsvue_type_script_lang_js_ = ({
|
|
15211
|
+
name: "DynamicLegends",
|
|
15212
|
+
props: {
|
|
15213
|
+
identifierKey: {
|
|
15214
|
+
type: String,
|
|
15215
|
+
default: "id"
|
|
15216
|
+
},
|
|
15217
|
+
colourKey: {
|
|
15218
|
+
type: String,
|
|
15219
|
+
default: "colour"
|
|
15220
|
+
},
|
|
15221
|
+
title: {
|
|
15222
|
+
type: String,
|
|
15223
|
+
default: ""
|
|
15224
|
+
},
|
|
15225
|
+
lists: {
|
|
15226
|
+
type: Array,
|
|
15227
|
+
default: function _default() {
|
|
15228
|
+
return [];
|
|
15229
|
+
}
|
|
15230
|
+
}
|
|
15231
|
+
},
|
|
15232
|
+
methods: {
|
|
15233
|
+
capitalise: function capitalise(label) {
|
|
15234
|
+
return label.charAt(0).toUpperCase() + label.slice(1).toLowerCase();
|
|
15235
|
+
}
|
|
15236
|
+
}
|
|
15237
|
+
});
|
|
15238
|
+
// CONCATENATED MODULE: ./src/components/legends/DynamicLegends.vue?vue&type=script&lang=js&
|
|
15239
|
+
/* harmony default export */ var legends_DynamicLegendsvue_type_script_lang_js_ = (DynamicLegendsvue_type_script_lang_js_);
|
|
15240
|
+
// EXTERNAL MODULE: ./src/components/legends/DynamicLegends.vue?vue&type=style&index=0&id=7ea6eb51&prod&scoped=true&lang=scss&
|
|
15241
|
+
var DynamicLegendsvue_type_style_index_0_id_7ea6eb51_prod_scoped_true_lang_scss_ = __webpack_require__("e8bf");
|
|
15242
|
+
|
|
15243
|
+
// CONCATENATED MODULE: ./src/components/legends/DynamicLegends.vue
|
|
15244
|
+
|
|
15245
|
+
|
|
15246
|
+
|
|
15247
|
+
|
|
15248
|
+
|
|
15249
|
+
|
|
15250
|
+
/* normalize component */
|
|
15251
|
+
|
|
15252
|
+
var DynamicLegends_component = normalizeComponent(
|
|
15253
|
+
legends_DynamicLegendsvue_type_script_lang_js_,
|
|
15254
|
+
DynamicLegendsvue_type_template_id_7ea6eb51_scoped_true_render,
|
|
15255
|
+
DynamicLegendsvue_type_template_id_7ea6eb51_scoped_true_staticRenderFns,
|
|
15256
|
+
false,
|
|
15257
|
+
null,
|
|
15258
|
+
"7ea6eb51",
|
|
15259
|
+
null
|
|
15260
|
+
|
|
15261
|
+
)
|
|
15262
|
+
|
|
15263
|
+
/* harmony default export */ var DynamicLegends = (DynamicLegends_component.exports);
|
|
15264
|
+
// 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&
|
|
15265
|
+
var SvgLegendsvue_type_template_id_3d3218c8_scoped_true_render = function render() {
|
|
15266
|
+
var _vm = this,
|
|
15267
|
+
_c = _vm._self._c;
|
|
15268
|
+
return _c('div', {
|
|
15269
|
+
staticClass: "legends-container"
|
|
15270
|
+
}, [_c('svg', {
|
|
15271
|
+
staticStyle: {
|
|
15272
|
+
"enable-background": "new 0 0 500 500"
|
|
15273
|
+
},
|
|
15274
|
+
attrs: {
|
|
15275
|
+
"version": "1.1",
|
|
15276
|
+
"id": "Layer_1",
|
|
15277
|
+
"x": "0px",
|
|
15278
|
+
"y": "0px",
|
|
15279
|
+
"viewBox": "0 0 500 500",
|
|
15280
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
15281
|
+
"xmlns:bx": "https://boxy-svg.com"
|
|
15282
|
+
}
|
|
15283
|
+
}, [_c('defs', [_c('bx:grid', {
|
|
15284
|
+
attrs: {
|
|
15285
|
+
"height": "30.447",
|
|
15286
|
+
"width": "32.516",
|
|
15287
|
+
"x": "0",
|
|
15288
|
+
"y": "0"
|
|
15289
|
+
}
|
|
15290
|
+
})], 1), _c('path', {
|
|
15291
|
+
staticClass: "st0 st0-translate",
|
|
15292
|
+
attrs: {
|
|
15293
|
+
"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"
|
|
15294
|
+
}
|
|
15295
|
+
}), _c('path', {
|
|
15296
|
+
staticClass: "st1",
|
|
15297
|
+
attrs: {
|
|
15298
|
+
"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"
|
|
15299
|
+
}
|
|
15300
|
+
}), _c('path', {
|
|
15301
|
+
staticClass: "st2",
|
|
15302
|
+
attrs: {
|
|
15303
|
+
"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"
|
|
15304
|
+
}
|
|
15305
|
+
}), _c('text', {
|
|
15306
|
+
staticClass: "st3 st4 st5",
|
|
15307
|
+
staticStyle: {
|
|
15308
|
+
"white-space": "pre"
|
|
15309
|
+
},
|
|
15310
|
+
attrs: {
|
|
15311
|
+
"transform": "matrix(0.9908 0 0 1 118.0161 171.7975)"
|
|
15312
|
+
}
|
|
15313
|
+
}, [_vm._v("Tissue region")]), _c('path', {
|
|
15314
|
+
staticClass: "st6",
|
|
15315
|
+
attrs: {
|
|
15316
|
+
"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"
|
|
15317
|
+
}
|
|
15318
|
+
}), _c('text', {
|
|
15319
|
+
staticClass: "st3 st4 st5",
|
|
15320
|
+
staticStyle: {
|
|
15321
|
+
"white-space": "pre"
|
|
15322
|
+
},
|
|
15323
|
+
attrs: {
|
|
15324
|
+
"transform": "matrix(0.9908 0 0 1 118.0161 257.675)"
|
|
15325
|
+
}
|
|
15326
|
+
}, [_vm._v("Brain nuclei")]), _c('text', {
|
|
15327
|
+
staticClass: "st3 st4 st5",
|
|
15328
|
+
staticStyle: {
|
|
15329
|
+
"white-space": "pre"
|
|
15330
|
+
},
|
|
15331
|
+
attrs: {
|
|
15332
|
+
"transform": "matrix(0.9908 0 0 1 118.0903 345.5266)"
|
|
15333
|
+
}
|
|
15334
|
+
}, [_vm._v("Ganglia")]), _c('text', {
|
|
15335
|
+
staticClass: "st3 st4 st5",
|
|
15336
|
+
staticStyle: {
|
|
15337
|
+
"white-space": "pre"
|
|
15338
|
+
},
|
|
15339
|
+
attrs: {
|
|
15340
|
+
"transform": "matrix(0.9908 0 0 1 118.0903 433.1613)"
|
|
15341
|
+
}
|
|
15342
|
+
}, [_vm._v("Nerve plexus")])])]);
|
|
15343
|
+
};
|
|
15344
|
+
var SvgLegendsvue_type_template_id_3d3218c8_scoped_true_staticRenderFns = [];
|
|
15345
|
+
|
|
15346
|
+
// CONCATENATED MODULE: ./src/components/legends/SvgLegends.vue?vue&type=template&id=3d3218c8&scoped=true&
|
|
15347
|
+
|
|
15348
|
+
// 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&
|
|
15349
|
+
/* harmony default export */ var SvgLegendsvue_type_script_lang_js_ = ({
|
|
15350
|
+
name: 'SvgLegends'
|
|
15351
|
+
});
|
|
15352
|
+
// CONCATENATED MODULE: ./src/components/legends/SvgLegends.vue?vue&type=script&lang=js&
|
|
15353
|
+
/* harmony default export */ var legends_SvgLegendsvue_type_script_lang_js_ = (SvgLegendsvue_type_script_lang_js_);
|
|
15354
|
+
// EXTERNAL MODULE: ./src/components/legends/SvgLegends.vue?vue&type=style&index=0&id=3d3218c8&prod&scoped=true&lang=scss&
|
|
15355
|
+
var SvgLegendsvue_type_style_index_0_id_3d3218c8_prod_scoped_true_lang_scss_ = __webpack_require__("83af");
|
|
15356
|
+
|
|
15357
|
+
// CONCATENATED MODULE: ./src/components/legends/SvgLegends.vue
|
|
15358
|
+
|
|
15359
|
+
|
|
15360
|
+
|
|
15361
|
+
|
|
15362
|
+
|
|
15363
|
+
|
|
15364
|
+
/* normalize component */
|
|
15365
|
+
|
|
15366
|
+
var SvgLegends_component = normalizeComponent(
|
|
15367
|
+
legends_SvgLegendsvue_type_script_lang_js_,
|
|
15368
|
+
SvgLegendsvue_type_template_id_3d3218c8_scoped_true_render,
|
|
15369
|
+
SvgLegendsvue_type_template_id_3d3218c8_scoped_true_staticRenderFns,
|
|
15370
|
+
false,
|
|
15371
|
+
null,
|
|
15372
|
+
"3d3218c8",
|
|
15373
|
+
null
|
|
15374
|
+
|
|
15375
|
+
)
|
|
15376
|
+
|
|
15377
|
+
/* harmony default export */ var SvgLegends = (SvgLegends_component.exports);
|
|
15378
|
+
// CONCATENATED MODULE: ./src/icons/flatmap-marker.js
|
|
15379
|
+
/* 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>');
|
|
15380
|
+
// 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&
|
|
15381
|
+
|
|
15382
|
+
|
|
14391
15383
|
|
|
14392
15384
|
|
|
14393
15385
|
|
|
@@ -14414,264 +15406,6 @@ var Legends_component = normalizeComponent(
|
|
|
14414
15406
|
|
|
14415
15407
|
|
|
14416
15408
|
|
|
14417
|
-
//
|
|
14418
|
-
//
|
|
14419
|
-
//
|
|
14420
|
-
//
|
|
14421
|
-
//
|
|
14422
|
-
//
|
|
14423
|
-
//
|
|
14424
|
-
//
|
|
14425
|
-
//
|
|
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
15409
|
|
|
14676
15410
|
/* eslint-disable no-alert, no-console */
|
|
14677
15411
|
|
|
@@ -14681,30 +15415,24 @@ var Legends_component = normalizeComponent(
|
|
|
14681
15415
|
|
|
14682
15416
|
|
|
14683
15417
|
|
|
15418
|
+
|
|
15419
|
+
|
|
14684
15420
|
locale_default.a.use(en_default.a);
|
|
14685
|
-
external_vue_default.a.use(lib_checkbox_default.a);
|
|
14686
|
-
external_vue_default.a.use(lib_checkbox_group_default.a);
|
|
14687
15421
|
external_vue_default.a.use(lib_col_default.a);
|
|
14688
15422
|
external_vue_default.a.use(lib_loading_default.a.directive);
|
|
14689
15423
|
external_vue_default.a.use(lib_radio_default.a);
|
|
14690
15424
|
external_vue_default.a.use(lib_radio_group_default.a);
|
|
14691
15425
|
external_vue_default.a.use(lib_row_default.a);
|
|
14692
|
-
|
|
14693
15426
|
var ResizeSensor = __webpack_require__("ae66");
|
|
14694
|
-
|
|
14695
|
-
var mapResize = function mapResize(map) {
|
|
14696
|
-
return function () {
|
|
14697
|
-
if (map) map.resize();
|
|
14698
|
-
};
|
|
14699
|
-
};
|
|
14700
|
-
|
|
14701
15427
|
/* harmony default export */ var FlatmapVuervue_type_script_lang_js_ = ({
|
|
14702
15428
|
name: "FlatmapVuer",
|
|
14703
15429
|
components: {
|
|
15430
|
+
DynamicLegends: DynamicLegends,
|
|
14704
15431
|
MapSvgIcon: svg_sprite_["MapSvgIcon"],
|
|
14705
15432
|
MapSvgSpriteColor: svg_sprite_["MapSvgSpriteColor"],
|
|
14706
15433
|
Tooltip: Tooltip,
|
|
14707
|
-
|
|
15434
|
+
SelectionsGroup: SelectionsGroup,
|
|
15435
|
+
SvgLegends: SvgLegends
|
|
14708
15436
|
},
|
|
14709
15437
|
beforeCreate: function beforeCreate() {
|
|
14710
15438
|
this.mapManager = undefined;
|
|
@@ -14712,12 +15440,11 @@ var mapResize = function mapResize(map) {
|
|
|
14712
15440
|
},
|
|
14713
15441
|
methods: {
|
|
14714
15442
|
viewLatestMap: function viewLatestMap() {
|
|
14715
|
-
var biologicalSex = this.biologicalSex ? this.biologicalSex : undefined;
|
|
14716
|
-
|
|
15443
|
+
var biologicalSex = this.biologicalSex ? this.biologicalSex : undefined;
|
|
15444
|
+
//Human requires special handling
|
|
14717
15445
|
if (this.entry === "NCBITaxon:9606") {
|
|
14718
15446
|
biologicalSex = "PATO:0000384";
|
|
14719
15447
|
}
|
|
14720
|
-
|
|
14721
15448
|
var state = {
|
|
14722
15449
|
entry: this.entry,
|
|
14723
15450
|
biologicalSex: biologicalSex,
|
|
@@ -14727,7 +15454,6 @@ var mapResize = function mapResize(map) {
|
|
|
14727
15454
|
},
|
|
14728
15455
|
backgroundChangeCallback: function backgroundChangeCallback(colour) {
|
|
14729
15456
|
this.currentBackground = colour;
|
|
14730
|
-
|
|
14731
15457
|
if (this.mapImp) {
|
|
14732
15458
|
this.mapImp.setBackgroundColour(this.currentBackground, 1);
|
|
14733
15459
|
}
|
|
@@ -14735,13 +15461,11 @@ var mapResize = function mapResize(map) {
|
|
|
14735
15461
|
toggleDrawer: function toggleDrawer() {
|
|
14736
15462
|
this.drawerOpen = !this.drawerOpen;
|
|
14737
15463
|
},
|
|
14738
|
-
|
|
14739
|
-
|
|
14740
|
-
* Function to toggle colour/greyscale of organs.
|
|
15464
|
+
/**
|
|
15465
|
+
* Function to toggle colour/greyscale of organs.
|
|
14741
15466
|
*/
|
|
14742
15467
|
setColour: function setColour(flag) {
|
|
14743
15468
|
this.colourRadio = flag;
|
|
14744
|
-
|
|
14745
15469
|
if (this.mapImp) {
|
|
14746
15470
|
this.mapImp.setColour({
|
|
14747
15471
|
colour: flag,
|
|
@@ -14749,13 +15473,11 @@ var mapResize = function mapResize(map) {
|
|
|
14749
15473
|
});
|
|
14750
15474
|
}
|
|
14751
15475
|
},
|
|
14752
|
-
|
|
14753
|
-
|
|
14754
|
-
* Function to toggle outlines f organs.
|
|
15476
|
+
/**
|
|
15477
|
+
* Function to toggle outlines f organs.
|
|
14755
15478
|
*/
|
|
14756
15479
|
setOutlines: function setOutlines(flag) {
|
|
14757
15480
|
this.outlineRadio = flag;
|
|
14758
|
-
|
|
14759
15481
|
if (this.mapImp) {
|
|
14760
15482
|
this.mapImp.setColour({
|
|
14761
15483
|
colour: this.colourRadio,
|
|
@@ -14763,78 +15485,103 @@ var mapResize = function mapResize(map) {
|
|
|
14763
15485
|
});
|
|
14764
15486
|
}
|
|
14765
15487
|
},
|
|
14766
|
-
|
|
14767
|
-
|
|
14768
|
-
*
|
|
14769
|
-
* Also called when the associated button is pressed.
|
|
15488
|
+
/**
|
|
15489
|
+
* Function to toggle paths to default.
|
|
15490
|
+
* Also called when the associated button is pressed.
|
|
14770
15491
|
*/
|
|
14771
15492
|
resetView: function resetView() {
|
|
14772
15493
|
if (this.mapImp) {
|
|
14773
15494
|
this.mapImp.resetMap();
|
|
14774
|
-
|
|
14775
|
-
|
|
14776
|
-
}
|
|
14777
|
-
this.
|
|
14778
|
-
|
|
15495
|
+
if (this.$refs.centrelinesSelection) {
|
|
15496
|
+
this.$refs.centrelinesSelection.reset();
|
|
15497
|
+
}
|
|
15498
|
+
if (this.$refs.skcanSelection) {
|
|
15499
|
+
this.$refs.skcanSelection.reset();
|
|
15500
|
+
}
|
|
15501
|
+
if (this.$refs.layersSelection) {
|
|
15502
|
+
this.$refs.layersSelection.reset();
|
|
15503
|
+
}
|
|
15504
|
+
if (this.$refs.pathwaysSelection) {
|
|
15505
|
+
this.$refs.pathwaysSelection.reset();
|
|
15506
|
+
}
|
|
14779
15507
|
}
|
|
14780
15508
|
},
|
|
14781
|
-
|
|
14782
|
-
|
|
14783
|
-
*
|
|
14784
|
-
* Also called when the associated button is pressed.
|
|
15509
|
+
/**
|
|
15510
|
+
* Function to zoom in.
|
|
15511
|
+
* Also called when the associated button is pressed.
|
|
14785
15512
|
*/
|
|
14786
15513
|
zoomIn: function zoomIn() {
|
|
14787
15514
|
if (this.mapImp) {
|
|
14788
15515
|
this.mapImp.zoomIn();
|
|
14789
15516
|
}
|
|
14790
15517
|
},
|
|
14791
|
-
|
|
14792
|
-
|
|
14793
|
-
*
|
|
14794
|
-
* Also called when the associated button is pressed.
|
|
15518
|
+
/**
|
|
15519
|
+
* Function to zoom out.
|
|
15520
|
+
* Also called when the associated button is pressed.
|
|
14795
15521
|
*/
|
|
14796
15522
|
zoomOut: function zoomOut() {
|
|
14797
15523
|
if (this.mapImp) {
|
|
14798
15524
|
this.mapImp.zoomOut();
|
|
14799
15525
|
}
|
|
14800
15526
|
},
|
|
14801
|
-
|
|
15527
|
+
centreLinesSelected: function centreLinesSelected(payload) {
|
|
14802
15528
|
if (this.mapImp) {
|
|
14803
|
-
this.mapImp.
|
|
15529
|
+
this.mapImp.enableCentrelines(payload.value);
|
|
14804
15530
|
}
|
|
14805
15531
|
},
|
|
14806
|
-
|
|
14807
|
-
|
|
14808
|
-
|
|
14809
|
-
|
|
15532
|
+
sckanSelected: function sckanSelected(payload) {
|
|
15533
|
+
if (this.mapImp) {
|
|
15534
|
+
this.mapImp.enableSckanPath(payload.key, payload.value);
|
|
15535
|
+
}
|
|
14810
15536
|
},
|
|
14811
|
-
|
|
14812
|
-
|
|
14813
|
-
|
|
14814
|
-
|
|
14815
|
-
|
|
14816
|
-
|
|
15537
|
+
checkAllSCKAN: function checkAllSCKAN(payload) {
|
|
15538
|
+
var _this = this;
|
|
15539
|
+
if (this.mapImp) {
|
|
15540
|
+
payload.keys.forEach(function (key) {
|
|
15541
|
+
return _this.mapImp.enableSckanPath(key, payload.value);
|
|
15542
|
+
});
|
|
15543
|
+
}
|
|
15544
|
+
},
|
|
15545
|
+
layersSelected: function layersSelected(payload) {
|
|
15546
|
+
if (this.mapImp) {
|
|
15547
|
+
this.mapImp.enableLayer(payload.key, payload.value);
|
|
15548
|
+
}
|
|
15549
|
+
},
|
|
15550
|
+
checkAllLayers: function checkAllLayers(payload) {
|
|
15551
|
+
var _this2 = this;
|
|
15552
|
+
if (this.mapImp) {
|
|
15553
|
+
payload.keys.forEach(function (key) {
|
|
15554
|
+
return _this2.mapImp.enableLayer(key, payload.value);
|
|
15555
|
+
});
|
|
15556
|
+
}
|
|
15557
|
+
},
|
|
15558
|
+
pathwaysSelected: function pathwaysSelected(payload) {
|
|
15559
|
+
if (this.mapImp) {
|
|
15560
|
+
this.mapImp.enablePath(payload.key, payload.value);
|
|
15561
|
+
}
|
|
15562
|
+
},
|
|
15563
|
+
checkAllPathways: function checkAllPathways(payload) {
|
|
15564
|
+
var _this3 = this;
|
|
14817
15565
|
if (this.mapImp) {
|
|
14818
|
-
|
|
15566
|
+
payload.keys.forEach(function (key) {
|
|
15567
|
+
return _this3.mapImp.enablePath(key, payload.value);
|
|
15568
|
+
});
|
|
14819
15569
|
}
|
|
14820
15570
|
},
|
|
14821
15571
|
enablePanZoomEvents: function enablePanZoomEvents(flag) {
|
|
14822
15572
|
this.mapImp.enablePanZoomEvents(flag);
|
|
14823
15573
|
},
|
|
14824
15574
|
eventCallback: function eventCallback() {
|
|
14825
|
-
var
|
|
14826
|
-
|
|
15575
|
+
var _this4 = this;
|
|
14827
15576
|
return function (eventType, data) {
|
|
14828
15577
|
if (eventType !== "pan-zoom") {
|
|
14829
15578
|
var label = data.label;
|
|
14830
15579
|
var resource = [data.models];
|
|
14831
|
-
var taxonomy =
|
|
14832
|
-
var biologicalSex =
|
|
14833
|
-
|
|
15580
|
+
var taxonomy = _this4.entry;
|
|
15581
|
+
var biologicalSex = _this4.biologicalSex;
|
|
14834
15582
|
for (var _len = arguments.length, args = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
|
14835
15583
|
args[_key - 2] = arguments[_key];
|
|
14836
15584
|
}
|
|
14837
|
-
|
|
14838
15585
|
var payload = {
|
|
14839
15586
|
dataset: data.dataset,
|
|
14840
15587
|
biologicalSex: biologicalSex,
|
|
@@ -14844,13 +15591,12 @@ var mapResize = function mapResize(map) {
|
|
|
14844
15591
|
feature: data,
|
|
14845
15592
|
userData: args,
|
|
14846
15593
|
eventType: eventType
|
|
14847
|
-
};
|
|
14848
|
-
|
|
14849
|
-
if (data && data.type !== "marker")
|
|
14850
|
-
|
|
14851
|
-
_this.$emit("resource-selected", payload);
|
|
15594
|
+
};
|
|
15595
|
+
// Disable the nueron pop up for now.
|
|
15596
|
+
if (data && data.type !== "marker") _this4.checkAndCreatePopups(payload);
|
|
15597
|
+
_this4.$emit("resource-selected", payload);
|
|
14852
15598
|
} else {
|
|
14853
|
-
|
|
15599
|
+
_this4.$emit("pan-zoom-callback", data);
|
|
14854
15600
|
}
|
|
14855
15601
|
};
|
|
14856
15602
|
},
|
|
@@ -14871,7 +15617,6 @@ var mapResize = function mapResize(map) {
|
|
|
14871
15617
|
if (ftooltip) ftooltip.style.display = "none";
|
|
14872
15618
|
document.querySelector(".mapboxgl-popup-close-button").style.display = "block";
|
|
14873
15619
|
this.$refs.tooltip.$el.style.display = "flex";
|
|
14874
|
-
|
|
14875
15620
|
document.querySelector(".mapboxgl-popup-close-button").onclick = function () {
|
|
14876
15621
|
document.querySelector(".flatmap-tooltip-popup").style.display = "block";
|
|
14877
15622
|
};
|
|
@@ -14885,14 +15630,13 @@ var mapResize = function mapResize(map) {
|
|
|
14885
15630
|
if (data.resource[0].includes('ilxtr:neuron')) {
|
|
14886
15631
|
return true;
|
|
14887
15632
|
}
|
|
14888
|
-
}
|
|
14889
|
-
|
|
14890
|
-
|
|
15633
|
+
}
|
|
15634
|
+
// annotated with datset check
|
|
14891
15635
|
if (data.dataset) {
|
|
14892
15636
|
return true;
|
|
14893
|
-
}
|
|
14894
|
-
|
|
15637
|
+
}
|
|
14895
15638
|
|
|
15639
|
+
// if there is no cuff, neural data, or dataset we do not display neuron tooltip
|
|
14896
15640
|
return false;
|
|
14897
15641
|
},
|
|
14898
15642
|
createTooltipFromNeuronCuration: function createTooltipFromNeuronCuration(data) {
|
|
@@ -14904,8 +15648,9 @@ var mapResize = function mapResize(map) {
|
|
|
14904
15648
|
distribution: undefined,
|
|
14905
15649
|
actions: []
|
|
14906
15650
|
};
|
|
14907
|
-
this.tooltipVisible = false;
|
|
15651
|
+
this.tooltipVisible = false;
|
|
14908
15652
|
|
|
15653
|
+
// neural data check
|
|
14909
15654
|
if (feature) {
|
|
14910
15655
|
if (feature.includes('ilxtr:neuron')) {
|
|
14911
15656
|
this.tooltipVisible = true;
|
|
@@ -14923,9 +15668,8 @@ var mapResize = function mapResize(map) {
|
|
|
14923
15668
|
nervePath: true
|
|
14924
15669
|
});
|
|
14925
15670
|
}
|
|
14926
|
-
}
|
|
14927
|
-
|
|
14928
|
-
|
|
15671
|
+
}
|
|
15672
|
+
// annotated with datset check
|
|
14929
15673
|
if (data.dataset) {
|
|
14930
15674
|
this.tooltipVisible = true;
|
|
14931
15675
|
this.tooltipContent = content;
|
|
@@ -14944,7 +15688,6 @@ var mapResize = function mapResize(map) {
|
|
|
14944
15688
|
// Keeping this as an API
|
|
14945
15689
|
showPopup: function showPopup(featureId, node, options) {
|
|
14946
15690
|
var myOptions = options;
|
|
14947
|
-
|
|
14948
15691
|
if (this.mapImp) {
|
|
14949
15692
|
if (myOptions) {
|
|
14950
15693
|
if (!myOptions.className) myOptions.className = "custom-popup";
|
|
@@ -14954,7 +15697,6 @@ var mapResize = function mapResize(map) {
|
|
|
14954
15697
|
positionAtLastClick: true
|
|
14955
15698
|
};
|
|
14956
15699
|
}
|
|
14957
|
-
|
|
14958
15700
|
this.mapImp.showPopup(featureId, node, myOptions);
|
|
14959
15701
|
}
|
|
14960
15702
|
},
|
|
@@ -14965,7 +15707,6 @@ var mapResize = function mapResize(map) {
|
|
|
14965
15707
|
},
|
|
14966
15708
|
closeMinimap: function closeMinimap() {
|
|
14967
15709
|
var minimapEl = this.$refs.flatmapContainer.querySelector('.maplibregl-ctrl-minimap'); // find minimap
|
|
14968
|
-
|
|
14969
15710
|
if (this.minimapSmall) {
|
|
14970
15711
|
//switch the classes on the minimap
|
|
14971
15712
|
minimapEl.classList.add('enlarge');
|
|
@@ -14974,7 +15715,6 @@ var mapResize = function mapResize(map) {
|
|
|
14974
15715
|
minimapEl.classList.add('shrink');
|
|
14975
15716
|
minimapEl.classList.remove('enlarge');
|
|
14976
15717
|
}
|
|
14977
|
-
|
|
14978
15718
|
this.minimapSmall = !this.minimapSmall;
|
|
14979
15719
|
},
|
|
14980
15720
|
addResizeButtonToMinimap: function addResizeButtonToMinimap() {
|
|
@@ -14999,11 +15739,10 @@ var mapResize = function mapResize(map) {
|
|
|
14999
15739
|
}
|
|
15000
15740
|
},
|
|
15001
15741
|
showToolitip: function showToolitip(tooltipNumber) {
|
|
15002
|
-
var
|
|
15003
|
-
|
|
15742
|
+
var _this5 = this;
|
|
15004
15743
|
if (!this.inHelp) {
|
|
15005
15744
|
this.tooltipWait = setTimeout(function () {
|
|
15006
|
-
|
|
15745
|
+
_this5.hoverVisibilities[tooltipNumber].value = true;
|
|
15007
15746
|
}, 500);
|
|
15008
15747
|
}
|
|
15009
15748
|
},
|
|
@@ -15030,13 +15769,10 @@ var mapResize = function mapResize(map) {
|
|
|
15030
15769
|
},
|
|
15031
15770
|
getLabels: function getLabels() {
|
|
15032
15771
|
var labels = [];
|
|
15033
|
-
|
|
15034
15772
|
if (this.mapImp) {
|
|
15035
15773
|
var annotations = this.mapImp.annotations;
|
|
15036
|
-
|
|
15037
15774
|
var _iterator = _createForOfIteratorHelper(annotations.values()),
|
|
15038
|
-
|
|
15039
|
-
|
|
15775
|
+
_step;
|
|
15040
15776
|
try {
|
|
15041
15777
|
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
15042
15778
|
var value = _step.value;
|
|
@@ -15047,7 +15783,6 @@ var mapResize = function mapResize(map) {
|
|
|
15047
15783
|
} finally {
|
|
15048
15784
|
_iterator.f();
|
|
15049
15785
|
}
|
|
15050
|
-
|
|
15051
15786
|
return Array.from(new Set(labels));
|
|
15052
15787
|
}
|
|
15053
15788
|
},
|
|
@@ -15062,7 +15797,6 @@ var mapResize = function mapResize(map) {
|
|
|
15062
15797
|
if (identifier && identifier.uuid) state['uuid'] = identifier.uuid;
|
|
15063
15798
|
return state;
|
|
15064
15799
|
}
|
|
15065
|
-
|
|
15066
15800
|
return undefined;
|
|
15067
15801
|
},
|
|
15068
15802
|
setState: function setState(state) {
|
|
@@ -15083,18 +15817,19 @@ var mapResize = function mapResize(map) {
|
|
|
15083
15817
|
}
|
|
15084
15818
|
},
|
|
15085
15819
|
createFlatmap: function createFlatmap(state) {
|
|
15086
|
-
var
|
|
15087
|
-
|
|
15820
|
+
var _this6 = this;
|
|
15088
15821
|
if (!this.mapImp && !this.loading) {
|
|
15089
15822
|
this.loading = true;
|
|
15090
15823
|
var minimap = false;
|
|
15091
|
-
|
|
15092
15824
|
if (this.displayMinimap) {
|
|
15093
15825
|
minimap = {
|
|
15094
15826
|
position: "top-right"
|
|
15095
15827
|
};
|
|
15096
|
-
}
|
|
15828
|
+
}
|
|
15829
|
+
|
|
15830
|
+
//As for flatmap-viewer@2.2.7, see below for the documentation
|
|
15097
15831
|
//for the identifier:
|
|
15832
|
+
|
|
15098
15833
|
//@arg identifier {string|Object}
|
|
15099
15834
|
// A string or object identifying the map to load. If a string its
|
|
15100
15835
|
// value can be either the map's ``uuid``, assigned at generation time,
|
|
@@ -15108,11 +15843,10 @@ var mapResize = function mapResize(map) {
|
|
|
15108
15843
|
// @arg identifier.uuid {string} The unique uuid the flatmap. If given then this exact map will
|
|
15109
15844
|
// be loaded, overriding ``taxon`` and ``biologicalSex``.
|
|
15110
15845
|
|
|
15111
|
-
|
|
15112
15846
|
var identifier = {
|
|
15113
15847
|
taxon: this.entry
|
|
15114
|
-
};
|
|
15115
|
-
|
|
15848
|
+
};
|
|
15849
|
+
//This now handle the uses of uuid when resuming states
|
|
15116
15850
|
if (state) {
|
|
15117
15851
|
if (state.uuid) {
|
|
15118
15852
|
identifier = {
|
|
@@ -15120,7 +15854,6 @@ var mapResize = function mapResize(map) {
|
|
|
15120
15854
|
};
|
|
15121
15855
|
} else if (state.entry) {
|
|
15122
15856
|
identifier.taxon = state.entry;
|
|
15123
|
-
|
|
15124
15857
|
if (state.biologicalSex) {
|
|
15125
15858
|
identifier["biologicalSex"] = state.biologicalSex;
|
|
15126
15859
|
} else if (identifier.taxon === "NCBITaxon:9606") {
|
|
@@ -15135,25 +15868,23 @@ var mapResize = function mapResize(map) {
|
|
|
15135
15868
|
identifier["biologicalSex"] = this.biologicalSex;
|
|
15136
15869
|
}
|
|
15137
15870
|
}
|
|
15138
|
-
|
|
15139
15871
|
var promise1 = this.mapManager.loadMap(identifier, this.$refs.display, this.eventCallback(), {
|
|
15140
15872
|
//fullscreenControl: false,
|
|
15141
15873
|
//annotatable: false,
|
|
15142
15874
|
//debug: true,
|
|
15143
15875
|
featureInfo: this.featureInfo,
|
|
15144
15876
|
"min-zoom": this.minZoom,
|
|
15145
|
-
|
|
15877
|
+
layerControl: true,
|
|
15878
|
+
pathControls: true,
|
|
15146
15879
|
searchable: this.searchable,
|
|
15147
15880
|
tooltips: this.tooltips,
|
|
15148
15881
|
minimap: minimap
|
|
15149
15882
|
});
|
|
15150
15883
|
promise1.then(function (returnedObject) {
|
|
15151
|
-
|
|
15152
|
-
|
|
15153
|
-
|
|
15154
|
-
|
|
15155
|
-
if (_this3._stateToBeSet) _this3.restoreMapState(_this3._stateToBeSet);else {
|
|
15156
|
-
_this3.restoreMapState(state);
|
|
15884
|
+
_this6.mapImp = returnedObject;
|
|
15885
|
+
_this6.onFlatmapReady();
|
|
15886
|
+
if (_this6._stateToBeSet) _this6.restoreMapState(_this6._stateToBeSet);else {
|
|
15887
|
+
_this6.restoreMapState(state);
|
|
15157
15888
|
}
|
|
15158
15889
|
});
|
|
15159
15890
|
} else if (state) {
|
|
@@ -15164,15 +15895,37 @@ var mapResize = function mapResize(map) {
|
|
|
15164
15895
|
if (this.mapImp && !this.loading) this.restoreMapState(this._stateToBeSet);
|
|
15165
15896
|
}
|
|
15166
15897
|
},
|
|
15898
|
+
computePathControlsMaximumHeight: function computePathControlsMaximumHeight() {
|
|
15899
|
+
var elem = this.$refs.display;
|
|
15900
|
+
if (elem) {
|
|
15901
|
+
var computed = getComputedStyle(elem);
|
|
15902
|
+
var padding = parseInt(computed.paddingTop) + parseInt(computed.paddingBottom);
|
|
15903
|
+
var height = elem.clientHeight - padding;
|
|
15904
|
+
this.pathwaysMaxHeight = height - 150;
|
|
15905
|
+
}
|
|
15906
|
+
},
|
|
15907
|
+
mapResize: function mapResize() {
|
|
15908
|
+
if (this.mapImp) {
|
|
15909
|
+
this.mapImp.resize();
|
|
15910
|
+
}
|
|
15911
|
+
this.computePathControlsMaximumHeight();
|
|
15912
|
+
},
|
|
15167
15913
|
onFlatmapReady: function onFlatmapReady() {
|
|
15168
15914
|
// onFlatmapReady is used for functions that need to run immediately after the flatmap is loaded
|
|
15169
|
-
this.sensor = new ResizeSensor(this.$refs.display,
|
|
15915
|
+
this.sensor = new ResizeSensor(this.$refs.display, this.mapResize);
|
|
15916
|
+
if (this.mapImp.options && this.mapImp.options.style === "functional") {
|
|
15917
|
+
this.isFC = true;
|
|
15918
|
+
}
|
|
15170
15919
|
this.mapImp.setBackgroundOpacity(1);
|
|
15171
15920
|
this.backgroundChangeCallback(this.currentBackground);
|
|
15172
15921
|
this.pathways = this.mapImp.pathTypes();
|
|
15173
|
-
this
|
|
15922
|
+
this.layers = this.mapImp.getLayers();
|
|
15923
|
+
this.systems = this.mapImp.getSystems();
|
|
15174
15924
|
this.addResizeButtonToMinimap();
|
|
15175
15925
|
this.loading = false;
|
|
15926
|
+
this.computePathControlsMaximumHeight();
|
|
15927
|
+
this.drawerOpen = true;
|
|
15928
|
+
this.$emit("ready", this);
|
|
15176
15929
|
},
|
|
15177
15930
|
showMinimap: function showMinimap(flag) {
|
|
15178
15931
|
if (this.mapImp) this.mapImp.showMinimap(flag);
|
|
@@ -15180,10 +15933,9 @@ var mapResize = function mapResize(map) {
|
|
|
15180
15933
|
showPathwaysDrawer: function showPathwaysDrawer(flag) {
|
|
15181
15934
|
this.drawerOpen = flag;
|
|
15182
15935
|
},
|
|
15183
|
-
|
|
15184
|
-
|
|
15185
|
-
*
|
|
15186
|
-
* with the option to display the label using displayLabel flag.
|
|
15936
|
+
/**
|
|
15937
|
+
* Function to display features with annotation matching the provided term,
|
|
15938
|
+
* with the option to display the label using displayLabel flag.
|
|
15187
15939
|
*/
|
|
15188
15940
|
searchAndShowResult: function searchAndShowResult(term, displayLabel) {
|
|
15189
15941
|
if (this.mapImp) {
|
|
@@ -15192,27 +15944,22 @@ var mapResize = function mapResize(map) {
|
|
|
15192
15944
|
return true;
|
|
15193
15945
|
} else {
|
|
15194
15946
|
var searchResults = this.mapImp.search(term);
|
|
15195
|
-
|
|
15196
15947
|
if (searchResults && searchResults.results && searchResults.results.length > 0) {
|
|
15197
15948
|
this.mapImp.showSearchResults(searchResults);
|
|
15198
|
-
|
|
15199
15949
|
if (displayLabel && searchResults.results[0].featureId && searchResults.results[0].text) {
|
|
15200
15950
|
this.mapImp.showPopup(searchResults.results[0].featureId, searchResults.results[0].text, {
|
|
15201
15951
|
className: "custom-popup",
|
|
15202
15952
|
positionAtLastClick: false
|
|
15203
15953
|
});
|
|
15204
15954
|
}
|
|
15205
|
-
|
|
15206
15955
|
return true;
|
|
15207
15956
|
} else this.mapImp.clearSearchResults();
|
|
15208
15957
|
}
|
|
15209
15958
|
}
|
|
15210
|
-
|
|
15211
15959
|
return false;
|
|
15212
15960
|
},
|
|
15213
|
-
|
|
15214
|
-
|
|
15215
|
-
* Get the list of suggested terms
|
|
15961
|
+
/**
|
|
15962
|
+
* Get the list of suggested terms
|
|
15216
15963
|
*/
|
|
15217
15964
|
searchSuggestions: function searchSuggestions(term) {
|
|
15218
15965
|
if (this.mapImp) return this.mapImp.search(term);
|
|
@@ -15277,17 +16024,15 @@ var mapResize = function mapResize(map) {
|
|
|
15277
16024
|
type: String,
|
|
15278
16025
|
default: "Search now provide suggested terms. Add new legends. New tilesets. New female map. Improve upstream downstream information"
|
|
15279
16026
|
},
|
|
15280
|
-
|
|
15281
|
-
|
|
15282
|
-
* State containing state of the flatmap.
|
|
16027
|
+
/**
|
|
16028
|
+
* State containing state of the flatmap.
|
|
15283
16029
|
*/
|
|
15284
16030
|
state: {
|
|
15285
16031
|
type: Object,
|
|
15286
16032
|
default: undefined
|
|
15287
16033
|
},
|
|
15288
|
-
|
|
15289
|
-
|
|
15290
|
-
* Specify the endpoint of the flatmap server.
|
|
16034
|
+
/**
|
|
16035
|
+
* Specify the endpoint of the flatmap server.
|
|
15291
16036
|
*/
|
|
15292
16037
|
flatmapAPI: {
|
|
15293
16038
|
type: String,
|
|
@@ -15306,10 +16051,21 @@ var mapResize = function mapResize(map) {
|
|
|
15306
16051
|
},
|
|
15307
16052
|
data: function data() {
|
|
15308
16053
|
return {
|
|
15309
|
-
|
|
16054
|
+
layers: [],
|
|
15310
16055
|
pathways: [],
|
|
15311
|
-
|
|
15312
|
-
|
|
16056
|
+
sckanDisplay: [{
|
|
16057
|
+
label: "Path consistent with SCKAN",
|
|
16058
|
+
key: "VALID"
|
|
16059
|
+
}, {
|
|
16060
|
+
label: "Path inconsistent with SCKAN",
|
|
16061
|
+
key: "INVALID",
|
|
16062
|
+
enable: false
|
|
16063
|
+
}],
|
|
16064
|
+
centreLines: [{
|
|
16065
|
+
label: "Centrelines",
|
|
16066
|
+
key: "centrelines"
|
|
16067
|
+
}],
|
|
16068
|
+
pathwaysMaxHeight: 1000,
|
|
15313
16069
|
hoverVisibilities: [{
|
|
15314
16070
|
value: false
|
|
15315
16071
|
}, {
|
|
@@ -15327,12 +16083,13 @@ var mapResize = function mapResize(map) {
|
|
|
15327
16083
|
}, {
|
|
15328
16084
|
value: false
|
|
15329
16085
|
}],
|
|
16086
|
+
isFC: false,
|
|
15330
16087
|
inHelp: false,
|
|
15331
16088
|
currentBackground: "white",
|
|
15332
16089
|
availableBackground: ["white", "lightskyblue", "black"],
|
|
15333
16090
|
loading: false,
|
|
15334
16091
|
flatmapMarker: flatmap_marker,
|
|
15335
|
-
drawerOpen:
|
|
16092
|
+
drawerOpen: false,
|
|
15336
16093
|
tooltipContent: {
|
|
15337
16094
|
featureIds: []
|
|
15338
16095
|
},
|
|
@@ -15359,15 +16116,14 @@ var mapResize = function mapResize(map) {
|
|
|
15359
16116
|
},
|
|
15360
16117
|
mounted: function mounted() {
|
|
15361
16118
|
var flatmap = __webpack_require__("4979");
|
|
15362
|
-
|
|
15363
16119
|
this.mapManager = new flatmap.MapManager(this.flatmapAPI);
|
|
15364
16120
|
if (this.renderAtMounted) this.createFlatmap();
|
|
15365
16121
|
}
|
|
15366
16122
|
});
|
|
15367
16123
|
// CONCATENATED MODULE: ./src/components/FlatmapVuer.vue?vue&type=script&lang=js&
|
|
15368
16124
|
/* harmony default export */ var components_FlatmapVuervue_type_script_lang_js_ = (FlatmapVuervue_type_script_lang_js_);
|
|
15369
|
-
// EXTERNAL MODULE: ./src/components/FlatmapVuer.vue?vue&type=style&index=0&id=
|
|
15370
|
-
var
|
|
16125
|
+
// EXTERNAL MODULE: ./src/components/FlatmapVuer.vue?vue&type=style&index=0&id=66e8be2a&prod&scoped=true&lang=scss&
|
|
16126
|
+
var FlatmapVuervue_type_style_index_0_id_66e8be2a_prod_scoped_true_lang_scss_ = __webpack_require__("3c15");
|
|
15371
16127
|
|
|
15372
16128
|
// CONCATENATED MODULE: ./src/components/FlatmapVuer.vue
|
|
15373
16129
|
|
|
@@ -15384,18 +16140,128 @@ var FlatmapVuer_component = normalizeComponent(
|
|
|
15384
16140
|
staticRenderFns,
|
|
15385
16141
|
false,
|
|
15386
16142
|
null,
|
|
15387
|
-
"
|
|
16143
|
+
"66e8be2a",
|
|
15388
16144
|
null
|
|
15389
16145
|
|
|
15390
16146
|
)
|
|
15391
16147
|
|
|
15392
16148
|
/* harmony default export */ var FlatmapVuer = (FlatmapVuer_component.exports);
|
|
15393
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15394
|
-
var
|
|
15395
|
-
var
|
|
15396
|
-
|
|
16149
|
+
// 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&
|
|
16150
|
+
var MultiFlatmapVuervue_type_template_id_0d8bc999_scoped_true_render = function render() {
|
|
16151
|
+
var _vm = this,
|
|
16152
|
+
_c = _vm._self._c;
|
|
16153
|
+
return _c('div', {
|
|
16154
|
+
ref: "multiContainer",
|
|
16155
|
+
staticClass: "multi-container"
|
|
16156
|
+
}, [_c('div', {
|
|
16157
|
+
staticStyle: {
|
|
16158
|
+
"position": "absolute",
|
|
16159
|
+
"z-index": "10"
|
|
16160
|
+
}
|
|
16161
|
+
}, [_c('div', {
|
|
16162
|
+
staticClass: "species-display-text"
|
|
16163
|
+
}, [_vm._v(" Species ")]), _c('el-popover', {
|
|
16164
|
+
ref: "selectPopover",
|
|
16165
|
+
attrs: {
|
|
16166
|
+
"content": "Select a species",
|
|
16167
|
+
"placement": "right",
|
|
16168
|
+
"appendToBody": false,
|
|
16169
|
+
"trigger": "manual",
|
|
16170
|
+
"popper-class": "flatmap-popper right-popper"
|
|
16171
|
+
},
|
|
16172
|
+
model: {
|
|
16173
|
+
value: _vm.helpMode,
|
|
16174
|
+
callback: function callback($$v) {
|
|
16175
|
+
_vm.helpMode = $$v;
|
|
16176
|
+
},
|
|
16177
|
+
expression: "helpMode"
|
|
16178
|
+
}
|
|
16179
|
+
}), _c('el-select', {
|
|
16180
|
+
directives: [{
|
|
16181
|
+
name: "popover",
|
|
16182
|
+
rawName: "v-popover:selectPopover",
|
|
16183
|
+
arg: "selectPopover"
|
|
16184
|
+
}],
|
|
16185
|
+
staticClass: "select-box",
|
|
16186
|
+
attrs: {
|
|
16187
|
+
"id": "flatmap-select",
|
|
16188
|
+
"popper-append-to-body": _vm.appendToBody,
|
|
16189
|
+
"placeholder": "Select",
|
|
16190
|
+
"popper-class": "flatmap_dropdown"
|
|
16191
|
+
},
|
|
16192
|
+
on: {
|
|
16193
|
+
"change": _vm.setSpecies
|
|
16194
|
+
},
|
|
16195
|
+
model: {
|
|
16196
|
+
value: _vm.activeSpecies,
|
|
16197
|
+
callback: function callback($$v) {
|
|
16198
|
+
_vm.activeSpecies = $$v;
|
|
16199
|
+
},
|
|
16200
|
+
expression: "activeSpecies"
|
|
16201
|
+
}
|
|
16202
|
+
}, _vm._l(_vm.speciesList, function (item, key) {
|
|
16203
|
+
return _c('el-option', {
|
|
16204
|
+
key: key,
|
|
16205
|
+
attrs: {
|
|
16206
|
+
"label": key,
|
|
16207
|
+
"value": key
|
|
16208
|
+
}
|
|
16209
|
+
}, [_c('el-row', [_c('el-col', {
|
|
16210
|
+
attrs: {
|
|
16211
|
+
"span": 8
|
|
16212
|
+
}
|
|
16213
|
+
}, [_c('i', {
|
|
16214
|
+
class: item.iconClass
|
|
16215
|
+
})]), _c('el-col', {
|
|
16216
|
+
attrs: {
|
|
16217
|
+
"span": 12
|
|
16218
|
+
}
|
|
16219
|
+
}, [_vm._v(_vm._s(key))])], 1)], 1);
|
|
16220
|
+
}), 1)], 1), _vm._l(_vm.speciesList, function (item, key) {
|
|
16221
|
+
return _c('FlatmapVuer', {
|
|
16222
|
+
directives: [{
|
|
16223
|
+
name: "show",
|
|
16224
|
+
rawName: "v-show",
|
|
16225
|
+
value: _vm.activeSpecies == key,
|
|
16226
|
+
expression: "activeSpecies==key"
|
|
16227
|
+
}],
|
|
16228
|
+
key: key,
|
|
16229
|
+
ref: key,
|
|
16230
|
+
refInFor: true,
|
|
16231
|
+
staticStyle: {
|
|
16232
|
+
"height": "100%"
|
|
16233
|
+
},
|
|
16234
|
+
attrs: {
|
|
16235
|
+
"showLayer": _vm.showLayer,
|
|
16236
|
+
"entry": item.taxo,
|
|
16237
|
+
"biologicalSex": item.biologicalSex,
|
|
16238
|
+
"displayWarning": item.displayWarning,
|
|
16239
|
+
"warningMessage": _vm.warningMessage,
|
|
16240
|
+
"displayLatestChanges": item.displayLatestChanges,
|
|
16241
|
+
"latestChangesMessage": item.latestChangesMessage,
|
|
16242
|
+
"isLegacy": item.isLegacy,
|
|
16243
|
+
"featureInfo": _vm.featureInfo,
|
|
16244
|
+
"minZoom": _vm.minZoom,
|
|
16245
|
+
"pathControls": _vm.pathControls,
|
|
16246
|
+
"searchable": _vm.searchable,
|
|
16247
|
+
"helpMode": _vm.helpMode,
|
|
16248
|
+
"renderAtMounted": _vm.renderAtMounted,
|
|
16249
|
+
"displayMinimap": _vm.displayMinimap,
|
|
16250
|
+
"flatmapAPI": _vm.flatmapAPI,
|
|
16251
|
+
"sparcAPI": _vm.sparcAPI
|
|
16252
|
+
},
|
|
16253
|
+
on: {
|
|
16254
|
+
"view-latest-map": _vm.viewLatestMap,
|
|
16255
|
+
"resource-selected": _vm.FlatmapSelected,
|
|
16256
|
+
"ready": _vm.FlatmapReady,
|
|
16257
|
+
"pan-zoom-callback": _vm.panZoomCallback
|
|
16258
|
+
}
|
|
16259
|
+
});
|
|
16260
|
+
})], 2);
|
|
16261
|
+
};
|
|
16262
|
+
var MultiFlatmapVuervue_type_template_id_0d8bc999_scoped_true_staticRenderFns = [];
|
|
15397
16263
|
|
|
15398
|
-
// CONCATENATED MODULE: ./src/components/MultiFlatmapVuer.vue?vue&type=template&id=
|
|
16264
|
+
// CONCATENATED MODULE: ./src/components/MultiFlatmapVuer.vue?vue&type=template&id=0d8bc999&scoped=true&
|
|
15399
16265
|
|
|
15400
16266
|
// EXTERNAL MODULE: ./node_modules/element-ui/lib/theme-chalk/popover.css
|
|
15401
16267
|
var popover = __webpack_require__("06f1");
|
|
@@ -15421,7 +16287,7 @@ var lib_option_default = /*#__PURE__*/__webpack_require__.n(lib_option);
|
|
|
15421
16287
|
// EXTERNAL MODULE: external "core-js/modules/es.object.keys.js"
|
|
15422
16288
|
var es_object_keys_js_ = __webpack_require__("ea64");
|
|
15423
16289
|
|
|
15424
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--
|
|
16290
|
+
// 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&
|
|
15425
16291
|
|
|
15426
16292
|
|
|
15427
16293
|
|
|
@@ -15443,65 +16309,6 @@ var es_object_keys_js_ = __webpack_require__("ea64");
|
|
|
15443
16309
|
|
|
15444
16310
|
|
|
15445
16311
|
|
|
15446
|
-
//
|
|
15447
|
-
//
|
|
15448
|
-
//
|
|
15449
|
-
//
|
|
15450
|
-
//
|
|
15451
|
-
//
|
|
15452
|
-
//
|
|
15453
|
-
//
|
|
15454
|
-
//
|
|
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
16312
|
|
|
15506
16313
|
/* eslint-disable no-alert, no-console */
|
|
15507
16314
|
|
|
@@ -15535,7 +16342,6 @@ var TAXON_UUID = {
|
|
|
15535
16342
|
},
|
|
15536
16343
|
mounted: function mounted() {
|
|
15537
16344
|
var _this = this;
|
|
15538
|
-
|
|
15539
16345
|
this.initialise();
|
|
15540
16346
|
components_EventBus.$on('onActionClick', function (action) {
|
|
15541
16347
|
_this.FlatmapSelected(action);
|
|
@@ -15544,7 +16350,6 @@ var TAXON_UUID = {
|
|
|
15544
16350
|
methods: {
|
|
15545
16351
|
initialise: function initialise() {
|
|
15546
16352
|
var _this2 = this;
|
|
15547
|
-
|
|
15548
16353
|
return new Promise(function (resolve) {
|
|
15549
16354
|
if (_this2.requireInitialisation) {
|
|
15550
16355
|
//It has not been initialised yet
|
|
@@ -15560,25 +16365,21 @@ var TAXON_UUID = {
|
|
|
15560
16365
|
if (_this2.availableSpecies[key].biologicalSex) {
|
|
15561
16366
|
if (data[i].biologicalSex && data[i].biologicalSex === _this2.availableSpecies[key].biologicalSex) {
|
|
15562
16367
|
_this2.$set(_this2.speciesList, key, _this2.availableSpecies[key]);
|
|
15563
|
-
|
|
15564
16368
|
break;
|
|
15565
16369
|
}
|
|
15566
16370
|
} else {
|
|
15567
16371
|
_this2.$set(_this2.speciesList, key, _this2.availableSpecies[key]);
|
|
15568
|
-
|
|
15569
16372
|
break;
|
|
15570
16373
|
}
|
|
15571
16374
|
}
|
|
15572
16375
|
}
|
|
15573
|
-
});
|
|
15574
|
-
|
|
16376
|
+
});
|
|
16377
|
+
//Use the state species if it does not have any other species information
|
|
15575
16378
|
var species = _this2.initial;
|
|
15576
|
-
|
|
15577
16379
|
if (_this2.state) {
|
|
15578
16380
|
var mapState = _this2.state.state;
|
|
15579
16381
|
if ((!mapState || !mapState.uuid && !mapState.entry) && _this2.state.species) species = _this2.state.species;else species = undefined;
|
|
15580
16382
|
}
|
|
15581
|
-
|
|
15582
16383
|
if (species) {
|
|
15583
16384
|
//No state resuming, set the current flatmap to {this.initial}
|
|
15584
16385
|
if (species && _this2.speciesList[species] !== undefined) {
|
|
@@ -15586,13 +16387,11 @@ var TAXON_UUID = {
|
|
|
15586
16387
|
} else {
|
|
15587
16388
|
_this2.activeSpecies = Object.keys(_this2.speciesList)[0];
|
|
15588
16389
|
}
|
|
15589
|
-
|
|
15590
16390
|
_this2.setSpecies(_this2.activeSpecies, _this2.state ? _this2.state.state : undefined, 5);
|
|
15591
16391
|
}
|
|
15592
|
-
|
|
15593
16392
|
_this2._initialised = true;
|
|
15594
|
-
resolve();
|
|
15595
|
-
|
|
16393
|
+
resolve();
|
|
16394
|
+
//Resolve all other promises resolve in the list
|
|
15596
16395
|
_this2._resolveList.forEach(function (other) {
|
|
15597
16396
|
other();
|
|
15598
16397
|
});
|
|
@@ -15611,15 +16410,12 @@ var TAXON_UUID = {
|
|
|
15611
16410
|
},
|
|
15612
16411
|
FlatmapReady: function FlatmapReady(component) {
|
|
15613
16412
|
this.$emit("ready", component);
|
|
15614
|
-
this.addCloseButtonToMinimap();
|
|
15615
16413
|
},
|
|
15616
16414
|
getCoordinatesOfLastClick: function getCoordinatesOfLastClick() {
|
|
15617
16415
|
var flatmap = this.$refs[this.activeSpecies];
|
|
15618
|
-
|
|
15619
16416
|
if (flatmap && flatmap[0]) {
|
|
15620
16417
|
return flatmap[0].getCoordinatesOfLastClick();
|
|
15621
16418
|
}
|
|
15622
|
-
|
|
15623
16419
|
return undefined;
|
|
15624
16420
|
},
|
|
15625
16421
|
getCurrentFlatmap: function getCurrentFlatmap() {
|
|
@@ -15638,14 +16434,12 @@ var TAXON_UUID = {
|
|
|
15638
16434
|
},
|
|
15639
16435
|
setSpecies: function setSpecies(species, state, numberOfRetry) {
|
|
15640
16436
|
var _this3 = this;
|
|
15641
|
-
|
|
15642
16437
|
if (this.$refs && species in this.$refs) {
|
|
15643
16438
|
this.activeSpecies = species;
|
|
15644
16439
|
this.$refs[this.activeSpecies][0].createFlatmap(state);
|
|
15645
16440
|
this.$emit('flatmapChanged', this.activeSpecies);
|
|
15646
16441
|
} else if (numberOfRetry) {
|
|
15647
16442
|
var retry = numberOfRetry - 1;
|
|
15648
|
-
|
|
15649
16443
|
if (retry >= 0) {
|
|
15650
16444
|
external_vue_default.a.nextTick(function () {
|
|
15651
16445
|
_this3.setSpecies(species, state, retry);
|
|
@@ -15653,39 +16447,33 @@ var TAXON_UUID = {
|
|
|
15653
16447
|
}
|
|
15654
16448
|
}
|
|
15655
16449
|
},
|
|
15656
|
-
|
|
15657
|
-
|
|
15658
|
-
*
|
|
15659
|
-
*
|
|
15660
|
-
*
|
|
15661
|
-
* @private
|
|
16450
|
+
/**
|
|
16451
|
+
* Function to switch to the latest existing map from
|
|
16452
|
+
* a legacy map of the same species.
|
|
16453
|
+
*
|
|
16454
|
+
* @private
|
|
15662
16455
|
*/
|
|
15663
16456
|
viewLatestMap: function viewLatestMap(state) {
|
|
15664
16457
|
var keys = Object.keys(this.speciesList);
|
|
15665
|
-
|
|
15666
16458
|
for (var i = 0; i < keys.length; i++) {
|
|
15667
16459
|
var species = this.speciesList[keys[i]];
|
|
15668
|
-
|
|
15669
16460
|
if (!species.isLegacy && species.taxo === state.entry && species.biologicalSex === state.biologicalSex) {
|
|
15670
16461
|
this.setSpecies(keys[i], state, 0);
|
|
15671
16462
|
return;
|
|
15672
16463
|
}
|
|
15673
16464
|
}
|
|
15674
16465
|
},
|
|
15675
|
-
|
|
15676
|
-
|
|
15677
|
-
*
|
|
15678
|
-
*
|
|
15679
|
-
* @private
|
|
16466
|
+
/**
|
|
16467
|
+
* Create a legacy entry with the provided information
|
|
16468
|
+
*
|
|
16469
|
+
* @private
|
|
15680
16470
|
*/
|
|
15681
16471
|
createLegacyEntry: function createLegacyEntry(state, taxo, uuid) {
|
|
15682
16472
|
if (uuid && taxo) {
|
|
15683
16473
|
var name = "Legacy";
|
|
15684
|
-
|
|
15685
16474
|
if (state.species) {
|
|
15686
16475
|
if (state.species.slice(0, 6) === "Legacy") name = state.species;else name = name + " ".concat(state.species);
|
|
15687
16476
|
}
|
|
15688
|
-
|
|
15689
16477
|
this.$set(this.speciesList, name, {
|
|
15690
16478
|
taxo: taxo,
|
|
15691
16479
|
isLegacy: true,
|
|
@@ -15702,34 +16490,30 @@ var TAXON_UUID = {
|
|
|
15702
16490
|
};
|
|
15703
16491
|
}
|
|
15704
16492
|
},
|
|
15705
|
-
|
|
15706
|
-
|
|
15707
|
-
*
|
|
15708
|
-
*
|
|
15709
|
-
*
|
|
15710
|
-
* @private
|
|
16493
|
+
/**
|
|
16494
|
+
* Function used to translate the legacy map state to one that can be used in current
|
|
16495
|
+
* flatmap if required. If it is a legacy, an Select entry will be added
|
|
16496
|
+
*
|
|
16497
|
+
* @private
|
|
15711
16498
|
*/
|
|
15712
16499
|
updateState: function updateState(state) {
|
|
15713
16500
|
var _this4 = this;
|
|
15714
|
-
|
|
15715
16501
|
return new Promise(function (resolve) {
|
|
15716
16502
|
if (state && state.state) {
|
|
15717
|
-
var mapState = state.state;
|
|
15718
|
-
|
|
16503
|
+
var mapState = state.state;
|
|
16504
|
+
//uuid is not in the state, this is a legacy map
|
|
15719
16505
|
if (!mapState.uuid) {
|
|
15720
16506
|
if (mapState.entry) {
|
|
15721
16507
|
var uuid = mapState.entry in TAXON_UUID ? TAXON_UUID[mapState.entry] : undefined;
|
|
15722
|
-
|
|
15723
16508
|
var newState = _this4.createLegacyEntry(state, mapState.entry, uuid);
|
|
15724
|
-
|
|
15725
16509
|
resolve(newState ? newState : state);
|
|
15726
16510
|
}
|
|
15727
16511
|
} else if (mapState.entry) {
|
|
15728
16512
|
//uuid is in the state but should be checked if it is the latest map
|
|
15729
16513
|
//for that taxon
|
|
15730
16514
|
return new Promise(function () {
|
|
15731
|
-
var mapManager = new (__webpack_require__("4979").MapManager)(_this4.flatmapAPI);
|
|
15732
|
-
|
|
16515
|
+
var mapManager = new (__webpack_require__("4979").MapManager)(_this4.flatmapAPI);
|
|
16516
|
+
//mapManager.findMap_ is an async function so we need to wrap this with a promise
|
|
15733
16517
|
var identifier = {
|
|
15734
16518
|
taxon: mapState.entry
|
|
15735
16519
|
};
|
|
@@ -15744,19 +16528,18 @@ var TAXON_UUID = {
|
|
|
15744
16528
|
resolve(state);
|
|
15745
16529
|
});
|
|
15746
16530
|
});
|
|
15747
|
-
}
|
|
15748
|
-
|
|
16531
|
+
}
|
|
16532
|
+
//Create a new state and add the legacy map to the select
|
|
15749
16533
|
}
|
|
15750
16534
|
|
|
15751
16535
|
resolve(state);
|
|
15752
16536
|
});
|
|
15753
16537
|
},
|
|
15754
|
-
|
|
15755
|
-
|
|
15756
|
-
*
|
|
15757
|
-
*
|
|
15758
|
-
*
|
|
15759
|
-
* @public
|
|
16538
|
+
/**
|
|
16539
|
+
* Function used for getting the current states of the scene. This exported states
|
|
16540
|
+
* can be imported using the importStates method.
|
|
16541
|
+
*
|
|
16542
|
+
* @public
|
|
15760
16543
|
*/
|
|
15761
16544
|
getState: function getState() {
|
|
15762
16545
|
var state = {
|
|
@@ -15767,16 +16550,14 @@ var TAXON_UUID = {
|
|
|
15767
16550
|
state.state = map.getState();
|
|
15768
16551
|
return state;
|
|
15769
16552
|
},
|
|
15770
|
-
|
|
15771
|
-
|
|
15772
|
-
*
|
|
15773
|
-
*
|
|
15774
|
-
*
|
|
15775
|
-
* @public
|
|
16553
|
+
/**
|
|
16554
|
+
* Function used for importing the states of the scene. This exported states
|
|
16555
|
+
* can be imported using the read states method.
|
|
16556
|
+
*
|
|
16557
|
+
* @public
|
|
15776
16558
|
*/
|
|
15777
16559
|
setState: function setState(state) {
|
|
15778
16560
|
var _this5 = this;
|
|
15779
|
-
|
|
15780
16561
|
if (state) {
|
|
15781
16562
|
//Update state if required
|
|
15782
16563
|
this.updateState(state).then(function (currentState) {
|
|
@@ -15785,7 +16566,6 @@ var TAXON_UUID = {
|
|
|
15785
16566
|
_this5.setSpecies(currentState.species, currentState.state, 5);
|
|
15786
16567
|
} else if (currentState.state) {
|
|
15787
16568
|
var map = _this5.getCurrentFlatmap();
|
|
15788
|
-
|
|
15789
16569
|
map.setState(currentState.state);
|
|
15790
16570
|
}
|
|
15791
16571
|
});
|
|
@@ -15813,10 +16593,9 @@ var TAXON_UUID = {
|
|
|
15813
16593
|
type: Boolean,
|
|
15814
16594
|
default: false
|
|
15815
16595
|
},
|
|
15816
|
-
|
|
15817
|
-
|
|
15818
|
-
*
|
|
15819
|
-
* This value will be ignored if a valid state object is provided.
|
|
16596
|
+
/**
|
|
16597
|
+
* Initial species for the flatmap.
|
|
16598
|
+
* This value will be ignored if a valid state object is provided.
|
|
15820
16599
|
*/
|
|
15821
16600
|
initial: {
|
|
15822
16601
|
type: String,
|
|
@@ -15881,17 +16660,15 @@ var TAXON_UUID = {
|
|
|
15881
16660
|
};
|
|
15882
16661
|
}
|
|
15883
16662
|
},
|
|
15884
|
-
|
|
15885
|
-
|
|
15886
|
-
* State containing state of the flatmap.
|
|
16663
|
+
/**
|
|
16664
|
+
* State containing state of the flatmap.
|
|
15887
16665
|
*/
|
|
15888
16666
|
state: {
|
|
15889
16667
|
type: Object,
|
|
15890
16668
|
default: undefined
|
|
15891
16669
|
},
|
|
15892
|
-
|
|
15893
|
-
|
|
15894
|
-
* Specify the endpoint of the flatmap server.
|
|
16670
|
+
/**
|
|
16671
|
+
* Specify the endpoint of the flatmap server.
|
|
15895
16672
|
*/
|
|
15896
16673
|
flatmapAPI: {
|
|
15897
16674
|
type: String,
|
|
@@ -15922,8 +16699,8 @@ var TAXON_UUID = {
|
|
|
15922
16699
|
});
|
|
15923
16700
|
// CONCATENATED MODULE: ./src/components/MultiFlatmapVuer.vue?vue&type=script&lang=js&
|
|
15924
16701
|
/* harmony default export */ var components_MultiFlatmapVuervue_type_script_lang_js_ = (MultiFlatmapVuervue_type_script_lang_js_);
|
|
15925
|
-
// EXTERNAL MODULE: ./src/components/MultiFlatmapVuer.vue?vue&type=style&index=0&id=
|
|
15926
|
-
var
|
|
16702
|
+
// EXTERNAL MODULE: ./src/components/MultiFlatmapVuer.vue?vue&type=style&index=0&id=0d8bc999&prod&scoped=true&lang=scss&
|
|
16703
|
+
var MultiFlatmapVuervue_type_style_index_0_id_0d8bc999_prod_scoped_true_lang_scss_ = __webpack_require__("ec09");
|
|
15927
16704
|
|
|
15928
16705
|
// CONCATENATED MODULE: ./src/components/MultiFlatmapVuer.vue
|
|
15929
16706
|
|
|
@@ -15936,11 +16713,11 @@ var MultiFlatmapVuervue_type_style_index_0_id_6b4bad1c_scoped_true_lang_scss_ =
|
|
|
15936
16713
|
|
|
15937
16714
|
var MultiFlatmapVuer_component = normalizeComponent(
|
|
15938
16715
|
components_MultiFlatmapVuervue_type_script_lang_js_,
|
|
15939
|
-
|
|
15940
|
-
|
|
16716
|
+
MultiFlatmapVuervue_type_template_id_0d8bc999_scoped_true_render,
|
|
16717
|
+
MultiFlatmapVuervue_type_template_id_0d8bc999_scoped_true_staticRenderFns,
|
|
15941
16718
|
false,
|
|
15942
16719
|
null,
|
|
15943
|
-
"
|
|
16720
|
+
"0d8bc999",
|
|
15944
16721
|
null
|
|
15945
16722
|
|
|
15946
16723
|
)
|