Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/imagery/components/LayerSettings.vue')
-rw-r--r--src/plugins/imagery/components/LayerSettings.vue59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/plugins/imagery/components/LayerSettings.vue b/src/plugins/imagery/components/LayerSettings.vue
new file mode 100644
index 000000000..1e99a0aee
--- /dev/null
+++ b/src/plugins/imagery/components/LayerSettings.vue
@@ -0,0 +1,59 @@
+<template>
+<div
+ class="c-control-menu c-menu--to-left c-menu--has-close-btn c-image-controls"
+ @click="handleClose"
+>
+ <div class="c-checkbox-list js-checkbox-menu c-menu--to-left c-menu--has-close-btn">
+ <ul
+ @click="$event.stopPropagation()"
+ >
+ <li
+ v-for="(layer, index) in layers"
+ :key="index"
+ >
+ <input
+ v-if="layer.visible"
+ :id="index + 'LayerControl'"
+ checked
+ type="checkbox"
+ @change="toggleLayerVisibility(index)"
+ >
+ <input
+ v-else
+ :id="index + 'LayerControl'"
+ type="checkbox"
+ @change="toggleLayerVisibility(index)"
+ >
+ <label :for="index + 'LayerControl'">{{ layer.name }}</label>
+ </li>
+ </ul>
+ </div>
+
+ <button class="c-click-icon icon-x t-btn-close c-switcher-menu__close-button"></button>
+</div>
+</template>
+
+<script>
+export default {
+ inject: ['openmct'],
+ props: {
+ layers: {
+ type: Array,
+ default() {
+ return [];
+ }
+ }
+ },
+ methods: {
+ handleClose(e) {
+ const closeButton = e.target.classList.contains('c-switcher-menu__close-button');
+ if (!closeButton) {
+ e.stopPropagation();
+ }
+ },
+ toggleLayerVisibility(index) {
+ this.$emit('toggleLayerVisibility', index);
+ }
+ }
+};
+</script>