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/charts/bar/inspector/BarGraphInspectorViewProvider.js')
-rw-r--r--src/plugins/charts/bar/inspector/BarGraphInspectorViewProvider.js48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/plugins/charts/bar/inspector/BarGraphInspectorViewProvider.js b/src/plugins/charts/bar/inspector/BarGraphInspectorViewProvider.js
new file mode 100644
index 000000000..0028ea40d
--- /dev/null
+++ b/src/plugins/charts/bar/inspector/BarGraphInspectorViewProvider.js
@@ -0,0 +1,48 @@
+import { BAR_GRAPH_INSPECTOR_KEY, BAR_GRAPH_KEY } from '../BarGraphConstants';
+import Vue from 'vue';
+import BarGraphOptions from "./BarGraphOptions.vue";
+
+export default function BarGraphInspectorViewProvider(openmct) {
+ return {
+ key: BAR_GRAPH_INSPECTOR_KEY,
+ name: 'Bar Graph Inspector View',
+ canView: function (selection) {
+ if (selection.length === 0 || selection[0].length === 0) {
+ return false;
+ }
+
+ let object = selection[0][0].context.item;
+
+ return object
+ && object.type === BAR_GRAPH_KEY;
+ },
+ view: function (selection) {
+ let component;
+
+ return {
+ show: function (element) {
+ component = new Vue({
+ el: element,
+ components: {
+ BarGraphOptions
+ },
+ provide: {
+ openmct,
+ domainObject: selection[0][0].context.item
+ },
+ template: '<bar-graph-options></bar-graph-options>'
+ });
+ },
+ destroy: function () {
+ if (component) {
+ component.$destroy();
+ component = undefined;
+ }
+ }
+ };
+ },
+ priority: function () {
+ return 1;
+ }
+ };
+}