@abi-software/map-side-bar 1.4.0 → 1.4.1-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/CHANGELOG.md +7 -1
- package/dist/map-side-bar.common.js +603 -347
- package/dist/map-side-bar.common.js.map +1 -1
- package/dist/map-side-bar.css +1 -1
- package/dist/map-side-bar.umd.js +603 -347
- package/dist/map-side-bar.umd.js.map +1 -1
- package/dist/map-side-bar.umd.min.js +2 -2
- package/dist/map-side-bar.umd.min.js.map +1 -1
- package/package-lock.json +60 -16
- package/package.json +4 -4
package/dist/map-side-bar.umd.js
CHANGED
|
@@ -3945,10 +3945,80 @@ if (typeof window !== 'undefined') {
|
|
|
3945
3945
|
// Indicate to webpack that this file can be concatenated
|
|
3946
3946
|
/* harmony default export */ var setPublicPath = (null);
|
|
3947
3947
|
|
|
3948
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3949
|
-
var render = function () {
|
|
3950
|
-
var
|
|
3951
|
-
|
|
3948
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7d776caa-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/SideBar.vue?vue&type=template&id=59762f83&scoped=true&
|
|
3949
|
+
var render = function render() {
|
|
3950
|
+
var _vm = this,
|
|
3951
|
+
_c = _vm._self._c;
|
|
3952
|
+
return _c('div', {
|
|
3953
|
+
ref: "container"
|
|
3954
|
+
}, [!_vm.drawerOpen ? _c('div', {
|
|
3955
|
+
staticClass: "open-tab",
|
|
3956
|
+
on: {
|
|
3957
|
+
"click": _vm.toggleDrawer
|
|
3958
|
+
}
|
|
3959
|
+
}, [_c('i', {
|
|
3960
|
+
staticClass: "el-icon-arrow-left"
|
|
3961
|
+
})]) : _vm._e(), _c('el-drawer', {
|
|
3962
|
+
staticClass: "side-bar",
|
|
3963
|
+
attrs: {
|
|
3964
|
+
"custom-class": "my-drawer",
|
|
3965
|
+
"visible": _vm.drawerOpen,
|
|
3966
|
+
"appendToBody": false,
|
|
3967
|
+
"modal-append-to-body": false,
|
|
3968
|
+
"size": "550",
|
|
3969
|
+
"with-header": false,
|
|
3970
|
+
"wrapperClosable": false,
|
|
3971
|
+
"modal": false
|
|
3972
|
+
},
|
|
3973
|
+
on: {
|
|
3974
|
+
"update:visible": function updateVisible($event) {
|
|
3975
|
+
_vm.drawerOpen = $event;
|
|
3976
|
+
}
|
|
3977
|
+
}
|
|
3978
|
+
}, [_c('div', {
|
|
3979
|
+
staticClass: "box-card"
|
|
3980
|
+
}, [_vm.drawerOpen ? _c('div', {
|
|
3981
|
+
staticClass: "close-tab",
|
|
3982
|
+
on: {
|
|
3983
|
+
"click": _vm.close
|
|
3984
|
+
}
|
|
3985
|
+
}, [_c('i', {
|
|
3986
|
+
staticClass: "el-icon-arrow-right"
|
|
3987
|
+
})]) : _vm._e(), _c('div', {
|
|
3988
|
+
staticClass: "sidebar-container"
|
|
3989
|
+
}, [_vm.tabs.length > 1 ? _c('tabs', {
|
|
3990
|
+
attrs: {
|
|
3991
|
+
"tabTitles": _vm.tabs,
|
|
3992
|
+
"activeId": _vm.activeId
|
|
3993
|
+
},
|
|
3994
|
+
on: {
|
|
3995
|
+
"titleClicked": _vm.tabClicked
|
|
3996
|
+
}
|
|
3997
|
+
}) : _vm._e(), _vm._l(_vm.tabs, function (tab) {
|
|
3998
|
+
return [_c('sidebar-content', {
|
|
3999
|
+
directives: [{
|
|
4000
|
+
name: "show",
|
|
4001
|
+
rawName: "v-show",
|
|
4002
|
+
value: tab.id === _vm.activeId,
|
|
4003
|
+
expression: "tab.id===activeId"
|
|
4004
|
+
}],
|
|
4005
|
+
key: tab.id,
|
|
4006
|
+
ref: tab.id,
|
|
4007
|
+
refInFor: true,
|
|
4008
|
+
staticClass: "sidebar-content-container",
|
|
4009
|
+
attrs: {
|
|
4010
|
+
"contextCardEntry": tab.contextCard,
|
|
4011
|
+
"envVars": _vm.envVars
|
|
4012
|
+
},
|
|
4013
|
+
on: {
|
|
4014
|
+
"search-changed": function searchChanged($event) {
|
|
4015
|
+
return _vm.searchChanged(tab.id, $event);
|
|
4016
|
+
}
|
|
4017
|
+
}
|
|
4018
|
+
})];
|
|
4019
|
+
})], 2)])])], 1);
|
|
4020
|
+
};
|
|
4021
|
+
var staticRenderFns = [];
|
|
3952
4022
|
|
|
3953
4023
|
// CONCATENATED MODULE: ./src/components/SideBar.vue?vue&type=template&id=59762f83&scoped=true&
|
|
3954
4024
|
|
|
@@ -4122,10 +4192,111 @@ var en_default = /*#__PURE__*/__webpack_require__.n(en_);
|
|
|
4122
4192
|
var locale_ = __webpack_require__("7f9f");
|
|
4123
4193
|
var locale_default = /*#__PURE__*/__webpack_require__.n(locale_);
|
|
4124
4194
|
|
|
4125
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
4126
|
-
var SidebarContentvue_type_template_id_7f4381ef_scoped_true_render = function () {
|
|
4127
|
-
var
|
|
4128
|
-
|
|
4195
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7d776caa-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/SidebarContent.vue?vue&type=template&id=7f4381ef&scoped=true&
|
|
4196
|
+
var SidebarContentvue_type_template_id_7f4381ef_scoped_true_render = function render() {
|
|
4197
|
+
var _vm = this,
|
|
4198
|
+
_c = _vm._self._c;
|
|
4199
|
+
return _c('el-card', {
|
|
4200
|
+
staticClass: "content-card",
|
|
4201
|
+
attrs: {
|
|
4202
|
+
"body-style": _vm.bodyStyle
|
|
4203
|
+
}
|
|
4204
|
+
}, [_c('div', {
|
|
4205
|
+
staticClass: "header",
|
|
4206
|
+
attrs: {
|
|
4207
|
+
"slot": "header"
|
|
4208
|
+
},
|
|
4209
|
+
slot: "header"
|
|
4210
|
+
}, [_vm.contextCardEntry && _vm.contextCardEnabled ? _c('context-card', {
|
|
4211
|
+
attrs: {
|
|
4212
|
+
"entry": _vm.contextCardEntry,
|
|
4213
|
+
"envVars": _vm.envVars
|
|
4214
|
+
}
|
|
4215
|
+
}) : _vm._e(), _c('el-input', {
|
|
4216
|
+
staticClass: "search-input",
|
|
4217
|
+
attrs: {
|
|
4218
|
+
"placeholder": "Search",
|
|
4219
|
+
"clearable": ""
|
|
4220
|
+
},
|
|
4221
|
+
on: {
|
|
4222
|
+
"clear": _vm.clearSearchClicked
|
|
4223
|
+
},
|
|
4224
|
+
nativeOn: {
|
|
4225
|
+
"keyup": function keyup($event) {
|
|
4226
|
+
return _vm.searchEvent.apply(null, arguments);
|
|
4227
|
+
}
|
|
4228
|
+
},
|
|
4229
|
+
model: {
|
|
4230
|
+
value: _vm.searchInput,
|
|
4231
|
+
callback: function callback($$v) {
|
|
4232
|
+
_vm.searchInput = $$v;
|
|
4233
|
+
},
|
|
4234
|
+
expression: "searchInput"
|
|
4235
|
+
}
|
|
4236
|
+
}), _c('el-button', {
|
|
4237
|
+
staticClass: "button",
|
|
4238
|
+
on: {
|
|
4239
|
+
"click": _vm.searchEvent
|
|
4240
|
+
}
|
|
4241
|
+
}, [_vm._v("Search")])], 1), _c('SearchFilters', {
|
|
4242
|
+
ref: "filtersRef",
|
|
4243
|
+
staticClass: "filters",
|
|
4244
|
+
attrs: {
|
|
4245
|
+
"entry": _vm.filterEntry,
|
|
4246
|
+
"envVars": _vm.envVars
|
|
4247
|
+
},
|
|
4248
|
+
on: {
|
|
4249
|
+
"filterResults": _vm.filterUpdate,
|
|
4250
|
+
"numberPerPage": _vm.numberPerPageUpdate,
|
|
4251
|
+
"loading": _vm.filtersLoading,
|
|
4252
|
+
"cascaderReady": _vm.cascaderReady
|
|
4253
|
+
}
|
|
4254
|
+
}), _c('div', {
|
|
4255
|
+
directives: [{
|
|
4256
|
+
name: "loading",
|
|
4257
|
+
rawName: "v-loading",
|
|
4258
|
+
value: _vm.loadingCards,
|
|
4259
|
+
expression: "loadingCards"
|
|
4260
|
+
}],
|
|
4261
|
+
ref: "content",
|
|
4262
|
+
staticClass: "content scrollbar"
|
|
4263
|
+
}, [_vm.results.length === 0 && !_vm.loadingCards ? _c('div', {
|
|
4264
|
+
staticClass: "error-feedback"
|
|
4265
|
+
}, [_vm._v(" No results found - Please change your search / filter criteria. ")]) : _vm._e(), _vm._l(_vm.results, function (result) {
|
|
4266
|
+
return _c('div', {
|
|
4267
|
+
key: result.doi,
|
|
4268
|
+
staticClass: "step-item"
|
|
4269
|
+
}, [_c('DatasetCard', {
|
|
4270
|
+
attrs: {
|
|
4271
|
+
"entry": result,
|
|
4272
|
+
"envVars": _vm.envVars
|
|
4273
|
+
},
|
|
4274
|
+
on: {
|
|
4275
|
+
"contextUpdate": _vm.contextCardUpdate
|
|
4276
|
+
}
|
|
4277
|
+
})], 1);
|
|
4278
|
+
}), _c('el-pagination', {
|
|
4279
|
+
staticClass: "pagination",
|
|
4280
|
+
attrs: {
|
|
4281
|
+
"current-page": _vm.page,
|
|
4282
|
+
"hide-on-single-page": "",
|
|
4283
|
+
"large": "",
|
|
4284
|
+
"layout": "prev, pager, next",
|
|
4285
|
+
"page-size": _vm.numberPerPage,
|
|
4286
|
+
"total": _vm.numberOfHits
|
|
4287
|
+
},
|
|
4288
|
+
on: {
|
|
4289
|
+
"update:currentPage": function updateCurrentPage($event) {
|
|
4290
|
+
_vm.page = $event;
|
|
4291
|
+
},
|
|
4292
|
+
"update:current-page": function updateCurrentPage($event) {
|
|
4293
|
+
_vm.page = $event;
|
|
4294
|
+
},
|
|
4295
|
+
"current-change": _vm.pageChange
|
|
4296
|
+
}
|
|
4297
|
+
})], 2)], 1);
|
|
4298
|
+
};
|
|
4299
|
+
var SidebarContentvue_type_template_id_7f4381ef_scoped_true_staticRenderFns = [];
|
|
4129
4300
|
|
|
4130
4301
|
// CONCATENATED MODULE: ./src/components/SidebarContent.vue?vue&type=template&id=7f4381ef&scoped=true&
|
|
4131
4302
|
|
|
@@ -4642,10 +4813,96 @@ var web_url_search_params_js_ = __webpack_require__("712c");
|
|
|
4642
4813
|
// EXTERNAL MODULE: external "core-js/modules/es.regexp.to-string.js"
|
|
4643
4814
|
var es_regexp_to_string_js_ = __webpack_require__("30df");
|
|
4644
4815
|
|
|
4645
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
4646
|
-
var SearchFiltersvue_type_template_id_2e6b3401_scoped_true_render = function () {
|
|
4647
|
-
var
|
|
4648
|
-
|
|
4816
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7d776caa-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/SearchFilters.vue?vue&type=template&id=2e6b3401&scoped=true&
|
|
4817
|
+
var SearchFiltersvue_type_template_id_2e6b3401_scoped_true_render = function render() {
|
|
4818
|
+
var _vm = this,
|
|
4819
|
+
_c = _vm._self._c;
|
|
4820
|
+
return _c('div', {
|
|
4821
|
+
staticClass: "filters"
|
|
4822
|
+
}, [_c('map-svg-sprite-color'), _c('transition', {
|
|
4823
|
+
attrs: {
|
|
4824
|
+
"name": "el-zoom-in-top"
|
|
4825
|
+
}
|
|
4826
|
+
}, [_c('span', {
|
|
4827
|
+
directives: [{
|
|
4828
|
+
name: "show",
|
|
4829
|
+
rawName: "v-show",
|
|
4830
|
+
value: _vm.showFilters,
|
|
4831
|
+
expression: "showFilters"
|
|
4832
|
+
}],
|
|
4833
|
+
staticClass: "search-filters transition-box"
|
|
4834
|
+
}, [_c('custom-cascader', {
|
|
4835
|
+
ref: "cascader",
|
|
4836
|
+
staticClass: "cascader",
|
|
4837
|
+
attrs: {
|
|
4838
|
+
"placeholder": "",
|
|
4839
|
+
"collapse-tags": true,
|
|
4840
|
+
"options": _vm.options,
|
|
4841
|
+
"props": _vm.props,
|
|
4842
|
+
"show-all-levels": false,
|
|
4843
|
+
"append-to-body": false
|
|
4844
|
+
},
|
|
4845
|
+
on: {
|
|
4846
|
+
"change": function change($event) {
|
|
4847
|
+
return _vm.cascadeEvent($event);
|
|
4848
|
+
},
|
|
4849
|
+
"expand-change": _vm.cascadeExpandChange,
|
|
4850
|
+
"tags-changed": _vm.tagsChangedCallback
|
|
4851
|
+
},
|
|
4852
|
+
model: {
|
|
4853
|
+
value: _vm.cascadeSelected,
|
|
4854
|
+
callback: function callback($$v) {
|
|
4855
|
+
_vm.cascadeSelected = $$v;
|
|
4856
|
+
},
|
|
4857
|
+
expression: "cascadeSelected"
|
|
4858
|
+
}
|
|
4859
|
+
}), _vm.showFiltersText ? _c('div', {
|
|
4860
|
+
staticClass: "filter-default-value"
|
|
4861
|
+
}, [_vm._v(" Filters ")]) : _vm._e(), _c('el-popover', {
|
|
4862
|
+
attrs: {
|
|
4863
|
+
"title": "How do filters work?",
|
|
4864
|
+
"width": "250",
|
|
4865
|
+
"trigger": "hover",
|
|
4866
|
+
"append-to-body": false,
|
|
4867
|
+
"popper-class": "popover"
|
|
4868
|
+
}
|
|
4869
|
+
}, [_c('map-svg-icon', {
|
|
4870
|
+
staticClass: "help",
|
|
4871
|
+
attrs: {
|
|
4872
|
+
"slot": "reference",
|
|
4873
|
+
"icon": "help"
|
|
4874
|
+
},
|
|
4875
|
+
slot: "reference"
|
|
4876
|
+
}), _c('div', [_c('strong', [_vm._v("Within categories:")]), _vm._v(" OR "), _c('br'), _vm._v(" example: 'heart' OR 'colon' "), _c('br'), _c('br'), _c('strong', [_vm._v("Between categories:")]), _vm._v(" AND "), _c('br'), _vm._v(" example: 'rat' AND 'lung' ")])], 1)], 1)]), _c('el-select', {
|
|
4877
|
+
staticClass: "number-shown-select",
|
|
4878
|
+
attrs: {
|
|
4879
|
+
"placeholder": "10"
|
|
4880
|
+
},
|
|
4881
|
+
on: {
|
|
4882
|
+
"change": function change($event) {
|
|
4883
|
+
return _vm.numberShownChanged($event);
|
|
4884
|
+
}
|
|
4885
|
+
},
|
|
4886
|
+
model: {
|
|
4887
|
+
value: _vm.numberShown,
|
|
4888
|
+
callback: function callback($$v) {
|
|
4889
|
+
_vm.numberShown = $$v;
|
|
4890
|
+
},
|
|
4891
|
+
expression: "numberShown"
|
|
4892
|
+
}
|
|
4893
|
+
}, _vm._l(_vm.numberDatasetsShown, function (item) {
|
|
4894
|
+
return _c('el-option', {
|
|
4895
|
+
key: item,
|
|
4896
|
+
attrs: {
|
|
4897
|
+
"label": item,
|
|
4898
|
+
"value": item
|
|
4899
|
+
}
|
|
4900
|
+
});
|
|
4901
|
+
}), 1), _c('span', {
|
|
4902
|
+
staticClass: "dataset-results-feedback"
|
|
4903
|
+
}, [_vm._v(_vm._s(this.numberOfResultsText))])], 1);
|
|
4904
|
+
};
|
|
4905
|
+
var SearchFiltersvue_type_template_id_2e6b3401_scoped_true_staticRenderFns = [];
|
|
4649
4906
|
|
|
4650
4907
|
// CONCATENATED MODULE: ./src/components/SearchFilters.vue?vue&type=template&id=2e6b3401&scoped=true&
|
|
4651
4908
|
|
|
@@ -5357,70 +5614,6 @@ function removeShowAllFacets(facetArray) {
|
|
|
5357
5614
|
|
|
5358
5615
|
|
|
5359
5616
|
|
|
5360
|
-
|
|
5361
|
-
//
|
|
5362
|
-
//
|
|
5363
|
-
//
|
|
5364
|
-
//
|
|
5365
|
-
//
|
|
5366
|
-
//
|
|
5367
|
-
//
|
|
5368
|
-
//
|
|
5369
|
-
//
|
|
5370
|
-
//
|
|
5371
|
-
//
|
|
5372
|
-
//
|
|
5373
|
-
//
|
|
5374
|
-
//
|
|
5375
|
-
//
|
|
5376
|
-
//
|
|
5377
|
-
//
|
|
5378
|
-
//
|
|
5379
|
-
//
|
|
5380
|
-
//
|
|
5381
|
-
//
|
|
5382
|
-
//
|
|
5383
|
-
//
|
|
5384
|
-
//
|
|
5385
|
-
//
|
|
5386
|
-
//
|
|
5387
|
-
//
|
|
5388
|
-
//
|
|
5389
|
-
//
|
|
5390
|
-
//
|
|
5391
|
-
//
|
|
5392
|
-
//
|
|
5393
|
-
//
|
|
5394
|
-
//
|
|
5395
|
-
//
|
|
5396
|
-
//
|
|
5397
|
-
//
|
|
5398
|
-
//
|
|
5399
|
-
//
|
|
5400
|
-
//
|
|
5401
|
-
//
|
|
5402
|
-
//
|
|
5403
|
-
//
|
|
5404
|
-
//
|
|
5405
|
-
//
|
|
5406
|
-
//
|
|
5407
|
-
//
|
|
5408
|
-
//
|
|
5409
|
-
//
|
|
5410
|
-
//
|
|
5411
|
-
//
|
|
5412
|
-
//
|
|
5413
|
-
//
|
|
5414
|
-
//
|
|
5415
|
-
//
|
|
5416
|
-
//
|
|
5417
|
-
//
|
|
5418
|
-
//
|
|
5419
|
-
//
|
|
5420
|
-
//
|
|
5421
|
-
//
|
|
5422
|
-
//
|
|
5423
|
-
//
|
|
5424
5617
|
|
|
5425
5618
|
/* eslint-disable no-alert, no-console */
|
|
5426
5619
|
|
|
@@ -5803,20 +5996,115 @@ var SearchFilters_component = normalizeComponent(
|
|
|
5803
5996
|
)
|
|
5804
5997
|
|
|
5805
5998
|
/* harmony default export */ var SearchFilters = (SearchFilters_component.exports);
|
|
5806
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
5807
|
-
|
|
5808
|
-
var
|
|
5809
|
-
|
|
5999
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7d776caa-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/DatasetCard.vue?vue&type=template&id=09b3c32c&scoped=true&
|
|
6000
|
+
|
|
6001
|
+
var DatasetCardvue_type_template_id_09b3c32c_scoped_true_render = function render() {
|
|
6002
|
+
var _vm = this,
|
|
6003
|
+
_c = _vm._self._c;
|
|
6004
|
+
return _c('div', {
|
|
6005
|
+
ref: "container",
|
|
6006
|
+
staticClass: "dataset-card-container"
|
|
6007
|
+
}, [_c('div', {
|
|
6008
|
+
ref: "card",
|
|
6009
|
+
staticClass: "dataset-card"
|
|
6010
|
+
}, [_c('div', {
|
|
6011
|
+
staticClass: "seperator-path"
|
|
6012
|
+
}), _c('div', {
|
|
6013
|
+
directives: [{
|
|
6014
|
+
name: "loading",
|
|
6015
|
+
rawName: "v-loading",
|
|
6016
|
+
value: _vm.loading,
|
|
6017
|
+
expression: "loading"
|
|
6018
|
+
}],
|
|
6019
|
+
staticClass: "card"
|
|
6020
|
+
}, [_c('span', {
|
|
6021
|
+
staticClass: "card-left"
|
|
6022
|
+
}, [!_vm.loading && _vm.discoverId ? _c('image-gallery', {
|
|
6023
|
+
attrs: {
|
|
6024
|
+
"datasetId": _vm.discoverId,
|
|
6025
|
+
"datasetVersion": _vm.version,
|
|
6026
|
+
"entry": _vm.entry,
|
|
6027
|
+
"envVars": _vm.envVars,
|
|
6028
|
+
"label": _vm.label,
|
|
6029
|
+
"datasetThumbnail": _vm.thumbnail,
|
|
6030
|
+
"dataset-biolucida": _vm.biolucidaData,
|
|
6031
|
+
"category": _vm.currentCategory
|
|
6032
|
+
},
|
|
6033
|
+
on: {
|
|
6034
|
+
"card-clicked": _vm.galleryClicked
|
|
6035
|
+
}
|
|
6036
|
+
}) : _vm._e()], 1), _c('div', {
|
|
6037
|
+
staticClass: "card-right"
|
|
6038
|
+
}, [_c('div', {
|
|
6039
|
+
staticClass: "title",
|
|
6040
|
+
on: {
|
|
6041
|
+
"click": _vm.cardClicked
|
|
6042
|
+
}
|
|
6043
|
+
}, [_vm._v(_vm._s(_vm.entry.name))]), _c('div', {
|
|
6044
|
+
staticClass: "details"
|
|
6045
|
+
}, [_vm._v(_vm._s(_vm.contributors) + " " + _vm._s(_vm.entry.publishDate ? "(".concat(_vm.publishYear, ")") : ''))]), _c('div', {
|
|
6046
|
+
staticClass: "details"
|
|
6047
|
+
}, [_vm._v(_vm._s(_vm.samples))]), !_vm.entry.detailsReady ? _c('div', {
|
|
6048
|
+
directives: [{
|
|
6049
|
+
name: "loading",
|
|
6050
|
+
rawName: "v-loading",
|
|
6051
|
+
value: !_vm.entry.detailsReady,
|
|
6052
|
+
expression: "!entry.detailsReady"
|
|
6053
|
+
}],
|
|
6054
|
+
staticClass: "details loading-icon"
|
|
6055
|
+
}) : _vm._e(), _c('div', [_vm.entry.simulation ? _c('el-button', {
|
|
6056
|
+
staticClass: "button",
|
|
6057
|
+
attrs: {
|
|
6058
|
+
"size": "mini",
|
|
6059
|
+
"icon": "el-icon-view"
|
|
6060
|
+
},
|
|
6061
|
+
on: {
|
|
6062
|
+
"click": _vm.openRepository
|
|
6063
|
+
}
|
|
6064
|
+
}, [_vm._v("View repository")]) : _vm._e()], 1), _c('div', {
|
|
6065
|
+
staticClass: "badges-container"
|
|
6066
|
+
}, [_c('badges-group', {
|
|
6067
|
+
attrs: {
|
|
6068
|
+
"entry": _vm.entry,
|
|
6069
|
+
"dataset-biolucida": _vm.biolucidaData
|
|
6070
|
+
},
|
|
6071
|
+
on: {
|
|
6072
|
+
"categoryChanged": _vm.categoryChanged
|
|
6073
|
+
}
|
|
6074
|
+
})], 1)])])])]);
|
|
6075
|
+
};
|
|
6076
|
+
var DatasetCardvue_type_template_id_09b3c32c_scoped_true_staticRenderFns = [];
|
|
5810
6077
|
|
|
5811
6078
|
// CONCATENATED MODULE: ./src/components/DatasetCard.vue?vue&type=template&id=09b3c32c&scoped=true&
|
|
5812
6079
|
|
|
5813
6080
|
// EXTERNAL MODULE: external "core-js/modules/es.json.stringify.js"
|
|
5814
6081
|
var es_json_stringify_js_ = __webpack_require__("a9ee");
|
|
5815
6082
|
|
|
5816
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
5817
|
-
var BadgesGroupvue_type_template_id_091c1e9c_scoped_true_render = function () {
|
|
5818
|
-
var
|
|
5819
|
-
|
|
6083
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7d776caa-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/BadgesGroup.vue?vue&type=template&id=091c1e9c&scoped=true&
|
|
6084
|
+
var BadgesGroupvue_type_template_id_091c1e9c_scoped_true_render = function render() {
|
|
6085
|
+
var _vm = this,
|
|
6086
|
+
_c = _vm._self._c;
|
|
6087
|
+
return _vm.categories['All'].size > 1 ? _c('div', {
|
|
6088
|
+
ref: "container",
|
|
6089
|
+
staticClass: "container"
|
|
6090
|
+
}, [_c('div', [_vm._v(" View data types: ")]), _vm._l(_vm.categories, function (item, key) {
|
|
6091
|
+
return [item.size > 0 ? _c('el-button', {
|
|
6092
|
+
key: key,
|
|
6093
|
+
class: [{
|
|
6094
|
+
'active': key == _vm.active
|
|
6095
|
+
}, 'tag-button'],
|
|
6096
|
+
attrs: {
|
|
6097
|
+
"size": "small"
|
|
6098
|
+
},
|
|
6099
|
+
on: {
|
|
6100
|
+
"click": function click($event) {
|
|
6101
|
+
return _vm.categoryClicked(key);
|
|
6102
|
+
}
|
|
6103
|
+
}
|
|
6104
|
+
}, [_vm._v(_vm._s(key + " (" + item.size + ")") + " ")]) : _vm._e()];
|
|
6105
|
+
})], 2) : _vm._e();
|
|
6106
|
+
};
|
|
6107
|
+
var BadgesGroupvue_type_template_id_091c1e9c_scoped_true_staticRenderFns = [];
|
|
5820
6108
|
|
|
5821
6109
|
// CONCATENATED MODULE: ./src/components/BadgesGroup.vue?vue&type=template&id=091c1e9c&scoped=true&
|
|
5822
6110
|
|
|
@@ -5824,24 +6112,6 @@ var BadgesGroupvue_type_template_id_091c1e9c_scoped_true_staticRenderFns = []
|
|
|
5824
6112
|
|
|
5825
6113
|
|
|
5826
6114
|
|
|
5827
|
-
//
|
|
5828
|
-
//
|
|
5829
|
-
//
|
|
5830
|
-
//
|
|
5831
|
-
//
|
|
5832
|
-
//
|
|
5833
|
-
//
|
|
5834
|
-
//
|
|
5835
|
-
//
|
|
5836
|
-
//
|
|
5837
|
-
//
|
|
5838
|
-
//
|
|
5839
|
-
//
|
|
5840
|
-
//
|
|
5841
|
-
//
|
|
5842
|
-
//
|
|
5843
|
-
//
|
|
5844
|
-
|
|
5845
6115
|
/* eslint-disable no-alert, no-console */
|
|
5846
6116
|
|
|
5847
6117
|
|
|
@@ -5967,10 +6237,33 @@ var BadgesGroup_component = normalizeComponent(
|
|
|
5967
6237
|
|
|
5968
6238
|
var EventBus = new external_vue_default.a();
|
|
5969
6239
|
/* harmony default export */ var components_EventBus = (EventBus);
|
|
5970
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
5971
|
-
var ImageGalleryvue_type_template_id_5e5042b2_scoped_true_render = function () {
|
|
5972
|
-
var
|
|
5973
|
-
|
|
6240
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7d776caa-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/ImageGallery.vue?vue&type=template&id=5e5042b2&scoped=true&
|
|
6241
|
+
var ImageGalleryvue_type_template_id_5e5042b2_scoped_true_render = function render() {
|
|
6242
|
+
var _vm = this,
|
|
6243
|
+
_c = _vm._self._c;
|
|
6244
|
+
return _c('div', {
|
|
6245
|
+
staticClass: "full-size"
|
|
6246
|
+
}, [_c('gallery', {
|
|
6247
|
+
ref: "gallery",
|
|
6248
|
+
attrs: {
|
|
6249
|
+
"bottomSpacer": _vm.bottomSpacer,
|
|
6250
|
+
"cardWidth": 10,
|
|
6251
|
+
"items": _vm.galleryItems,
|
|
6252
|
+
"max-width": _vm.maxWidth,
|
|
6253
|
+
"show-indicator-bar": false,
|
|
6254
|
+
"show-card-details": true,
|
|
6255
|
+
"highlight-active": false,
|
|
6256
|
+
"image-style": _vm.imageStyle,
|
|
6257
|
+
"image-container-style": _vm.imageContainerStyle,
|
|
6258
|
+
"body-style": _vm.bodyStyle,
|
|
6259
|
+
"shadow": _vm.shadow
|
|
6260
|
+
},
|
|
6261
|
+
on: {
|
|
6262
|
+
"card-clicked": _vm.cardClicked
|
|
6263
|
+
}
|
|
6264
|
+
})], 1);
|
|
6265
|
+
};
|
|
6266
|
+
var ImageGalleryvue_type_template_id_5e5042b2_scoped_true_staticRenderFns = [];
|
|
5974
6267
|
|
|
5975
6268
|
// CONCATENATED MODULE: ./src/components/ImageGallery.vue?vue&type=template&id=5e5042b2&scoped=true&
|
|
5976
6269
|
|
|
@@ -6095,27 +6388,6 @@ var S3Bucket_component = normalizeComponent(
|
|
|
6095
6388
|
|
|
6096
6389
|
|
|
6097
6390
|
|
|
6098
|
-
//
|
|
6099
|
-
//
|
|
6100
|
-
//
|
|
6101
|
-
//
|
|
6102
|
-
//
|
|
6103
|
-
//
|
|
6104
|
-
//
|
|
6105
|
-
//
|
|
6106
|
-
//
|
|
6107
|
-
//
|
|
6108
|
-
//
|
|
6109
|
-
//
|
|
6110
|
-
//
|
|
6111
|
-
//
|
|
6112
|
-
//
|
|
6113
|
-
//
|
|
6114
|
-
//
|
|
6115
|
-
//
|
|
6116
|
-
//
|
|
6117
|
-
//
|
|
6118
|
-
|
|
6119
6391
|
/* eslint-disable no-alert, no-console */
|
|
6120
6392
|
var baseName = function baseName(str) {
|
|
6121
6393
|
return str.split("\\").pop().split("/").pop();
|
|
@@ -6584,47 +6856,6 @@ var ImageGallery_component = normalizeComponent(
|
|
|
6584
6856
|
|
|
6585
6857
|
|
|
6586
6858
|
|
|
6587
|
-
//
|
|
6588
|
-
//
|
|
6589
|
-
//
|
|
6590
|
-
//
|
|
6591
|
-
//
|
|
6592
|
-
//
|
|
6593
|
-
//
|
|
6594
|
-
//
|
|
6595
|
-
//
|
|
6596
|
-
//
|
|
6597
|
-
//
|
|
6598
|
-
//
|
|
6599
|
-
//
|
|
6600
|
-
//
|
|
6601
|
-
//
|
|
6602
|
-
//
|
|
6603
|
-
//
|
|
6604
|
-
//
|
|
6605
|
-
//
|
|
6606
|
-
//
|
|
6607
|
-
//
|
|
6608
|
-
//
|
|
6609
|
-
//
|
|
6610
|
-
//
|
|
6611
|
-
//
|
|
6612
|
-
//
|
|
6613
|
-
//
|
|
6614
|
-
//
|
|
6615
|
-
//
|
|
6616
|
-
//
|
|
6617
|
-
//
|
|
6618
|
-
//
|
|
6619
|
-
//
|
|
6620
|
-
//
|
|
6621
|
-
//
|
|
6622
|
-
//
|
|
6623
|
-
//
|
|
6624
|
-
//
|
|
6625
|
-
//
|
|
6626
|
-
//
|
|
6627
|
-
|
|
6628
6859
|
/* eslint-disable no-alert, no-console */
|
|
6629
6860
|
|
|
6630
6861
|
|
|
@@ -6839,10 +7070,184 @@ var DatasetCard_component = normalizeComponent(
|
|
|
6839
7070
|
)
|
|
6840
7071
|
|
|
6841
7072
|
/* harmony default export */ var DatasetCard = (DatasetCard_component.exports);
|
|
6842
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
6843
|
-
|
|
6844
|
-
|
|
6845
|
-
|
|
7073
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7d776caa-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/ContextCard.vue?vue&type=template&id=1221ea8f&scoped=true&
|
|
7074
|
+
|
|
7075
|
+
|
|
7076
|
+
|
|
7077
|
+
var ContextCardvue_type_template_id_1221ea8f_scoped_true_render = function render() {
|
|
7078
|
+
var _vm = this,
|
|
7079
|
+
_c = _vm._self._c;
|
|
7080
|
+
return _c('div', {
|
|
7081
|
+
ref: "container",
|
|
7082
|
+
staticClass: "context-card-container"
|
|
7083
|
+
}, [_c('div', {
|
|
7084
|
+
directives: [{
|
|
7085
|
+
name: "show",
|
|
7086
|
+
rawName: "v-show",
|
|
7087
|
+
value: _vm.showContextCard,
|
|
7088
|
+
expression: "showContextCard"
|
|
7089
|
+
}]
|
|
7090
|
+
}, [_c('div', {
|
|
7091
|
+
directives: [{
|
|
7092
|
+
name: "show",
|
|
7093
|
+
rawName: "v-show",
|
|
7094
|
+
value: _vm.showDetails,
|
|
7095
|
+
expression: "showDetails"
|
|
7096
|
+
}],
|
|
7097
|
+
staticClass: "hide",
|
|
7098
|
+
on: {
|
|
7099
|
+
"click": function click($event) {
|
|
7100
|
+
_vm.showDetails = !_vm.showDetails;
|
|
7101
|
+
}
|
|
7102
|
+
}
|
|
7103
|
+
}, [_vm._v("Hide information"), _c('i', {
|
|
7104
|
+
staticClass: "el-icon-arrow-up"
|
|
7105
|
+
})]), _c('div', {
|
|
7106
|
+
directives: [{
|
|
7107
|
+
name: "show",
|
|
7108
|
+
rawName: "v-show",
|
|
7109
|
+
value: !_vm.showDetails,
|
|
7110
|
+
expression: "!showDetails"
|
|
7111
|
+
}],
|
|
7112
|
+
staticClass: "hide",
|
|
7113
|
+
on: {
|
|
7114
|
+
"click": function click($event) {
|
|
7115
|
+
_vm.showDetails = !_vm.showDetails;
|
|
7116
|
+
}
|
|
7117
|
+
}
|
|
7118
|
+
}, [_vm._v("Show information"), _c('i', {
|
|
7119
|
+
staticClass: "el-icon-arrow-down"
|
|
7120
|
+
})]), _vm.showDetails && Object.keys(_vm.contextData).length !== 0 ? _c('el-card', {
|
|
7121
|
+
directives: [{
|
|
7122
|
+
name: "loading",
|
|
7123
|
+
rawName: "v-loading",
|
|
7124
|
+
value: _vm.loading,
|
|
7125
|
+
expression: "loading"
|
|
7126
|
+
}],
|
|
7127
|
+
staticClass: "context-card"
|
|
7128
|
+
}, [_c('div', {
|
|
7129
|
+
staticClass: "card-left"
|
|
7130
|
+
}, [_c('img', {
|
|
7131
|
+
staticClass: "context-image",
|
|
7132
|
+
attrs: {
|
|
7133
|
+
"src": _vm.banner
|
|
7134
|
+
}
|
|
7135
|
+
})]), _c('div', {
|
|
7136
|
+
staticClass: "card-right scrollbar"
|
|
7137
|
+
}, [_c('div', {
|
|
7138
|
+
staticClass: "title"
|
|
7139
|
+
}, [_vm._v(_vm._s(_vm.contextData.heading))]), _c('div', {
|
|
7140
|
+
domProps: {
|
|
7141
|
+
"innerHTML": _vm._s(_vm.parseMarkdown(_vm.contextData.description))
|
|
7142
|
+
}
|
|
7143
|
+
}), _c('br'), !_vm.samplesUnderViews ? [_vm.contextData.views && _vm.contextData.views.length > 0 ? _c('div', {
|
|
7144
|
+
staticClass: "subtitle"
|
|
7145
|
+
}, [_vm._v("Scaffold Views")]) : _vm._e(), _vm._l(_vm.contextData.views, function (view, i) {
|
|
7146
|
+
return [_c('div', {
|
|
7147
|
+
key: i + '_1',
|
|
7148
|
+
staticClass: "context-card-view",
|
|
7149
|
+
on: {
|
|
7150
|
+
"click": function click($event) {
|
|
7151
|
+
return _vm.openViewFile(view);
|
|
7152
|
+
}
|
|
7153
|
+
}
|
|
7154
|
+
}, [_c('img', {
|
|
7155
|
+
staticClass: "view-image",
|
|
7156
|
+
attrs: {
|
|
7157
|
+
"src": _vm.getFileFromPath(view.thumbnail)
|
|
7158
|
+
}
|
|
7159
|
+
}), _c('div', {
|
|
7160
|
+
staticClass: "view-description"
|
|
7161
|
+
}, [_vm._v(_vm._s(view.description))])]), _c('div', {
|
|
7162
|
+
key: i,
|
|
7163
|
+
staticClass: "padding"
|
|
7164
|
+
})];
|
|
7165
|
+
}), _c('div', {
|
|
7166
|
+
staticStyle: {
|
|
7167
|
+
"margin-bottom": "16px"
|
|
7168
|
+
}
|
|
7169
|
+
}), _vm.contextData.samples && _vm.contextData.samples.length > 0 ? _c('div', {
|
|
7170
|
+
staticClass: "subtitle"
|
|
7171
|
+
}, [_vm._v("Samples on Scaffold")]) : _vm._e(), _vm._l(_vm.contextData.samples, function (sample, i) {
|
|
7172
|
+
return [_c('span', {
|
|
7173
|
+
key: i + '_3',
|
|
7174
|
+
staticClass: "context-card-item cursor-pointer",
|
|
7175
|
+
on: {
|
|
7176
|
+
"click": function click($event) {
|
|
7177
|
+
return _vm.toggleSampleDetails(i);
|
|
7178
|
+
}
|
|
7179
|
+
}
|
|
7180
|
+
}, [_c('div', {
|
|
7181
|
+
key: i + '_6',
|
|
7182
|
+
staticStyle: {
|
|
7183
|
+
"display": "flex"
|
|
7184
|
+
}
|
|
7185
|
+
}, [sample.color ? _c('div', {
|
|
7186
|
+
staticClass: "color-box",
|
|
7187
|
+
style: 'background-color:' + sample.color
|
|
7188
|
+
}) : sample.thumbnail ? _c('img', {
|
|
7189
|
+
staticClass: "key-image",
|
|
7190
|
+
attrs: {
|
|
7191
|
+
"src": _vm.getFileFromPath(sample.thumbnail)
|
|
7192
|
+
}
|
|
7193
|
+
}) : _vm._e(), _vm._v(" " + _vm._s(sample.heading) + " "), _c('i', {
|
|
7194
|
+
staticClass: "el-icon-warning-outline info"
|
|
7195
|
+
})])]), _vm.sampleDetails[i] ? _c('div', {
|
|
7196
|
+
key: i + '_4',
|
|
7197
|
+
domProps: {
|
|
7198
|
+
"innerHTML": _vm._s(sample.description)
|
|
7199
|
+
}
|
|
7200
|
+
}) : _vm._e(), _vm.sampleDetails[i] && sample.path ? _c('a', {
|
|
7201
|
+
key: i + '_5',
|
|
7202
|
+
attrs: {
|
|
7203
|
+
"href": _vm.generateFileLink(sample),
|
|
7204
|
+
"target": "_blank"
|
|
7205
|
+
}
|
|
7206
|
+
}, [_vm._v("View Source")]) : _vm._e(), _c('div', {
|
|
7207
|
+
key: i + '_2',
|
|
7208
|
+
staticClass: "padding"
|
|
7209
|
+
})];
|
|
7210
|
+
})] : [_vm.contextData.views && _vm.contextData.views.length > 0 ? _c('div', {
|
|
7211
|
+
staticClass: "subtitle"
|
|
7212
|
+
}, [_vm._v("Scaffold Views")]) : _vm._e(), _vm._l(_vm.contextData.views, function (view, i) {
|
|
7213
|
+
return [_c('span', {
|
|
7214
|
+
key: i + '_1',
|
|
7215
|
+
staticClass: "context-card-view",
|
|
7216
|
+
on: {
|
|
7217
|
+
"click": function click($event) {
|
|
7218
|
+
return _vm.viewClicked(view, i);
|
|
7219
|
+
}
|
|
7220
|
+
}
|
|
7221
|
+
}, [_c('img', {
|
|
7222
|
+
staticClass: "view-image",
|
|
7223
|
+
attrs: {
|
|
7224
|
+
"src": _vm.getFileFromPath(view.thumbnail)
|
|
7225
|
+
}
|
|
7226
|
+
}), _c('div', {
|
|
7227
|
+
staticClass: "view-description"
|
|
7228
|
+
}, [_vm._v(_vm._s(view.description)), _c('i', {
|
|
7229
|
+
staticClass: "el-icon-warning-outline info"
|
|
7230
|
+
})])]), _vm.sampleDetails[i] ? _c('div', {
|
|
7231
|
+
key: i + '_2',
|
|
7232
|
+
domProps: {
|
|
7233
|
+
"innerHTML": _vm._s(_vm.samplesMatching(view.id).description)
|
|
7234
|
+
}
|
|
7235
|
+
}) : _vm._e(), _vm.sampleDetails[i] && _vm.samplesMatching(view.id).path ? _c('a', {
|
|
7236
|
+
key: i + '_5',
|
|
7237
|
+
attrs: {
|
|
7238
|
+
"href": _vm.generateFileLink(_vm.samplesMatching(view.id)),
|
|
7239
|
+
"target": "_blank"
|
|
7240
|
+
}
|
|
7241
|
+
}, [_vm._v("View Source")]) : _vm._e(), _c('div', {
|
|
7242
|
+
key: i,
|
|
7243
|
+
staticClass: "padding"
|
|
7244
|
+
}), _vm.sampleDetails[i] ? _c('div', {
|
|
7245
|
+
key: i + '_6',
|
|
7246
|
+
staticClass: "padding"
|
|
7247
|
+
}) : _vm._e()];
|
|
7248
|
+
})]], 2)]) : _vm._e()], 1)]);
|
|
7249
|
+
};
|
|
7250
|
+
var ContextCardvue_type_template_id_1221ea8f_scoped_true_staticRenderFns = [];
|
|
6846
7251
|
|
|
6847
7252
|
// CONCATENATED MODULE: ./src/components/ContextCard.vue?vue&type=template&id=1221ea8f&scoped=true&
|
|
6848
7253
|
|
|
@@ -6969,71 +7374,6 @@ var external_xss_default = /*#__PURE__*/__webpack_require__.n(external_xss_);
|
|
|
6969
7374
|
|
|
6970
7375
|
|
|
6971
7376
|
|
|
6972
|
-
|
|
6973
|
-
//
|
|
6974
|
-
//
|
|
6975
|
-
//
|
|
6976
|
-
//
|
|
6977
|
-
//
|
|
6978
|
-
//
|
|
6979
|
-
//
|
|
6980
|
-
//
|
|
6981
|
-
//
|
|
6982
|
-
//
|
|
6983
|
-
//
|
|
6984
|
-
//
|
|
6985
|
-
//
|
|
6986
|
-
//
|
|
6987
|
-
//
|
|
6988
|
-
//
|
|
6989
|
-
//
|
|
6990
|
-
//
|
|
6991
|
-
//
|
|
6992
|
-
//
|
|
6993
|
-
//
|
|
6994
|
-
//
|
|
6995
|
-
//
|
|
6996
|
-
//
|
|
6997
|
-
//
|
|
6998
|
-
//
|
|
6999
|
-
//
|
|
7000
|
-
//
|
|
7001
|
-
//
|
|
7002
|
-
//
|
|
7003
|
-
//
|
|
7004
|
-
//
|
|
7005
|
-
//
|
|
7006
|
-
//
|
|
7007
|
-
//
|
|
7008
|
-
//
|
|
7009
|
-
//
|
|
7010
|
-
//
|
|
7011
|
-
//
|
|
7012
|
-
//
|
|
7013
|
-
//
|
|
7014
|
-
//
|
|
7015
|
-
//
|
|
7016
|
-
//
|
|
7017
|
-
//
|
|
7018
|
-
//
|
|
7019
|
-
//
|
|
7020
|
-
//
|
|
7021
|
-
//
|
|
7022
|
-
//
|
|
7023
|
-
//
|
|
7024
|
-
//
|
|
7025
|
-
//
|
|
7026
|
-
//
|
|
7027
|
-
//
|
|
7028
|
-
//
|
|
7029
|
-
//
|
|
7030
|
-
//
|
|
7031
|
-
//
|
|
7032
|
-
//
|
|
7033
|
-
//
|
|
7034
|
-
//
|
|
7035
|
-
//
|
|
7036
|
-
//
|
|
7037
7377
|
|
|
7038
7378
|
/* eslint-disable no-alert, no-console */
|
|
7039
7379
|
|
|
@@ -7320,61 +7660,6 @@ var ContextCard_component = normalizeComponent(
|
|
|
7320
7660
|
|
|
7321
7661
|
|
|
7322
7662
|
|
|
7323
|
-
|
|
7324
|
-
//
|
|
7325
|
-
//
|
|
7326
|
-
//
|
|
7327
|
-
//
|
|
7328
|
-
//
|
|
7329
|
-
//
|
|
7330
|
-
//
|
|
7331
|
-
//
|
|
7332
|
-
//
|
|
7333
|
-
//
|
|
7334
|
-
//
|
|
7335
|
-
//
|
|
7336
|
-
//
|
|
7337
|
-
//
|
|
7338
|
-
//
|
|
7339
|
-
//
|
|
7340
|
-
//
|
|
7341
|
-
//
|
|
7342
|
-
//
|
|
7343
|
-
//
|
|
7344
|
-
//
|
|
7345
|
-
//
|
|
7346
|
-
//
|
|
7347
|
-
//
|
|
7348
|
-
//
|
|
7349
|
-
//
|
|
7350
|
-
//
|
|
7351
|
-
//
|
|
7352
|
-
//
|
|
7353
|
-
//
|
|
7354
|
-
//
|
|
7355
|
-
//
|
|
7356
|
-
//
|
|
7357
|
-
//
|
|
7358
|
-
//
|
|
7359
|
-
//
|
|
7360
|
-
//
|
|
7361
|
-
//
|
|
7362
|
-
//
|
|
7363
|
-
//
|
|
7364
|
-
//
|
|
7365
|
-
//
|
|
7366
|
-
//
|
|
7367
|
-
//
|
|
7368
|
-
//
|
|
7369
|
-
//
|
|
7370
|
-
//
|
|
7371
|
-
//
|
|
7372
|
-
//
|
|
7373
|
-
//
|
|
7374
|
-
//
|
|
7375
|
-
//
|
|
7376
|
-
//
|
|
7377
|
-
//
|
|
7378
7663
|
|
|
7379
7664
|
/* eslint-disable no-alert, no-console */
|
|
7380
7665
|
|
|
@@ -7772,28 +8057,37 @@ var SidebarContent_component = normalizeComponent(
|
|
|
7772
8057
|
)
|
|
7773
8058
|
|
|
7774
8059
|
/* harmony default export */ var SidebarContent = (SidebarContent_component.exports);
|
|
7775
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
7776
|
-
var Tabsvue_type_template_id_2cd4574e_scoped_true_render = function () {
|
|
7777
|
-
var
|
|
7778
|
-
|
|
8060
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7d776caa-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/Tabs.vue?vue&type=template&id=2cd4574e&scoped=true&
|
|
8061
|
+
var Tabsvue_type_template_id_2cd4574e_scoped_true_render = function render() {
|
|
8062
|
+
var _vm = this,
|
|
8063
|
+
_c = _vm._self._c;
|
|
8064
|
+
return _c('div', {
|
|
8065
|
+
staticClass: "tab-container"
|
|
8066
|
+
}, _vm._l(_vm.tabTitles, function (title) {
|
|
8067
|
+
return _c('div', {
|
|
8068
|
+
key: title.id,
|
|
8069
|
+
staticClass: "title"
|
|
8070
|
+
}, [_c('div', {
|
|
8071
|
+
staticClass: "title-text-table",
|
|
8072
|
+
class: {
|
|
8073
|
+
highlightText: title.id == _vm.activeId
|
|
8074
|
+
},
|
|
8075
|
+
on: {
|
|
8076
|
+
"click": function click($event) {
|
|
8077
|
+
return _vm.titleClicked(title.id);
|
|
8078
|
+
}
|
|
8079
|
+
}
|
|
8080
|
+
}, [_c('div', {
|
|
8081
|
+
staticClass: "title-text"
|
|
8082
|
+
}, [_vm._v(" " + _vm._s(title.title) + " ")])])]);
|
|
8083
|
+
}), 0);
|
|
8084
|
+
};
|
|
8085
|
+
var Tabsvue_type_template_id_2cd4574e_scoped_true_staticRenderFns = [];
|
|
7779
8086
|
|
|
7780
8087
|
// CONCATENATED MODULE: ./src/components/Tabs.vue?vue&type=template&id=2cd4574e&scoped=true&
|
|
7781
8088
|
|
|
7782
8089
|
// 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/Tabs.vue?vue&type=script&lang=js&
|
|
7783
8090
|
|
|
7784
|
-
//
|
|
7785
|
-
//
|
|
7786
|
-
//
|
|
7787
|
-
//
|
|
7788
|
-
//
|
|
7789
|
-
//
|
|
7790
|
-
//
|
|
7791
|
-
//
|
|
7792
|
-
//
|
|
7793
|
-
//
|
|
7794
|
-
//
|
|
7795
|
-
//
|
|
7796
|
-
|
|
7797
8091
|
/* eslint-disable no-alert, no-console */
|
|
7798
8092
|
|
|
7799
8093
|
/* harmony default export */ var Tabsvue_type_script_lang_js_ = ({
|
|
@@ -7851,44 +8145,6 @@ var Tabs_component = normalizeComponent(
|
|
|
7851
8145
|
|
|
7852
8146
|
|
|
7853
8147
|
|
|
7854
|
-
//
|
|
7855
|
-
//
|
|
7856
|
-
//
|
|
7857
|
-
//
|
|
7858
|
-
//
|
|
7859
|
-
//
|
|
7860
|
-
//
|
|
7861
|
-
//
|
|
7862
|
-
//
|
|
7863
|
-
//
|
|
7864
|
-
//
|
|
7865
|
-
//
|
|
7866
|
-
//
|
|
7867
|
-
//
|
|
7868
|
-
//
|
|
7869
|
-
//
|
|
7870
|
-
//
|
|
7871
|
-
//
|
|
7872
|
-
//
|
|
7873
|
-
//
|
|
7874
|
-
//
|
|
7875
|
-
//
|
|
7876
|
-
//
|
|
7877
|
-
//
|
|
7878
|
-
//
|
|
7879
|
-
//
|
|
7880
|
-
//
|
|
7881
|
-
//
|
|
7882
|
-
//
|
|
7883
|
-
//
|
|
7884
|
-
//
|
|
7885
|
-
//
|
|
7886
|
-
//
|
|
7887
|
-
//
|
|
7888
|
-
//
|
|
7889
|
-
//
|
|
7890
|
-
//
|
|
7891
|
-
|
|
7892
8148
|
/* eslint-disable no-alert, no-console */
|
|
7893
8149
|
|
|
7894
8150
|
|