175 lines
5.8 KiB
Vue
175 lines
5.8 KiB
Vue
<template>
|
|
</template>
|
|
|
|
<script>
|
|
import _ from "lodash"
|
|
|
|
export default {
|
|
inject: ["openmct"],
|
|
props: {
|
|
view: String,
|
|
object: Object,
|
|
showEditView: Boolean
|
|
},
|
|
destroyed() {
|
|
this.clear();
|
|
if (this.releaseEditModeHandler) {
|
|
this.releaseEditModeHandler();
|
|
}
|
|
},
|
|
watch: {
|
|
view(newView, oldView) {
|
|
this.viewKey = newView;
|
|
this.debounceUpdateView();
|
|
},
|
|
object(newObject, oldObject) {
|
|
this.currentObject = newObject;
|
|
this.debounceUpdateView();
|
|
}
|
|
},
|
|
created() {
|
|
this.debounceUpdateView = _.debounce(this.updateView, 10);
|
|
},
|
|
mounted() {
|
|
this.currentObject = this.object;
|
|
this.updateView();
|
|
this.$el.addEventListener('dragover', this.onDragOver);
|
|
this.$el.addEventListener('drop', this.addObjectToParent);
|
|
this.$el.addEventListener('drop', this.editIfEditable, {
|
|
capture: true
|
|
});
|
|
},
|
|
methods: {
|
|
clear() {
|
|
if (this.currentView) {
|
|
this.currentView.destroy();
|
|
this.$el.innerHTML = '';
|
|
|
|
if (this.releaseEditModeHandler) {
|
|
this.releaseEditModeHandler();
|
|
delete this.releaseEditModeHandler;
|
|
}
|
|
}
|
|
delete this.viewContainer;
|
|
delete this.currentView;
|
|
|
|
if (this.removeSelectable) {
|
|
this.removeSelectable();
|
|
delete this.removeSelectable;
|
|
}
|
|
},
|
|
invokeEditModeHandler(editMode) {
|
|
this.currentView.onEditModeChange(editMode);
|
|
},
|
|
toggleEditView(editMode) {
|
|
this.clear();
|
|
this.updateView(true);
|
|
},
|
|
updateView(immediatelySelect) {
|
|
this.clear();
|
|
if (!this.currentObject) {
|
|
return;
|
|
}
|
|
this.viewContainer = document.createElement('div');
|
|
this.viewContainer.classList.add('c-object-view','u-contents');
|
|
this.$el.append(this.viewContainer);
|
|
let provider = this.getViewProvider();
|
|
if (!provider) {
|
|
return;
|
|
}
|
|
|
|
if (provider.edit && this.showEditView) {
|
|
if (this.openmct.editor.isEditing()) {
|
|
this.currentView = provider.edit(this.currentObject);
|
|
} else {
|
|
this.currentView = provider.view(this.currentObject, false);
|
|
}
|
|
|
|
this.openmct.editor.on('isEditing', this.toggleEditView);
|
|
this.releaseEditModeHandler = () => this.openmct.editor.off('isEditing', this.toggleEditView);
|
|
} else {
|
|
this.currentView = provider.view(this.currentObject, this.openmct.editor.isEditing());
|
|
|
|
if (this.currentView.onEditModeChange) {
|
|
this.openmct.editor.on('isEditing', this.invokeEditModeHandler);
|
|
this.releaseEditModeHandler = () => this.openmct.editor.off('isEditing', this.invokeEditModeHandler);
|
|
}
|
|
}
|
|
this.currentView.show(this.viewContainer, this.openmct.editor.isEditing());
|
|
|
|
if (immediatelySelect) {
|
|
this.removeSelectable = openmct.selection.selectable(
|
|
this.$el, this.getSelectionContext(), true);
|
|
}
|
|
},
|
|
show(object, viewKey, immediatelySelect) {
|
|
if (this.unlisten) {
|
|
this.unlisten();
|
|
}
|
|
|
|
if (this.removeSelectable) {
|
|
this.removeSelectable();
|
|
delete this.removeSelectable;
|
|
}
|
|
|
|
this.currentObject = object;
|
|
this.unlisten = this.openmct.objects.observe(this.currentObject, '*', (mutatedObject) => {
|
|
this.currentObject = mutatedObject;
|
|
});
|
|
|
|
this.viewKey = viewKey;
|
|
this.updateView(immediatelySelect);
|
|
},
|
|
getSelectionContext() {
|
|
if (this.currentView.getSelectionContext) {
|
|
return this.currentView.getSelectionContext();
|
|
} else {
|
|
return { item: this.currentObject };
|
|
}
|
|
},
|
|
onDragOver(event) {
|
|
if (this.hasComposableDomainObject(event)) {
|
|
event.preventDefault();
|
|
}
|
|
},
|
|
addObjectToParent(event) {
|
|
if (this.hasComposableDomainObject(event)) {
|
|
let composableDomainObject = this.getComposableDomainObject(event);
|
|
this.currentObject.composition.push(composableDomainObject.identifier);
|
|
this.openmct.objects.mutate(this.currentObject, 'composition', this.currentObject.composition);
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}
|
|
},
|
|
getViewProvider() {
|
|
let provider = this.openmct.objectViews.getByProviderKey(this.viewKey);
|
|
|
|
if (!provider) {
|
|
provider = this.openmct.objectViews.get(this.currentObject)[0];
|
|
if (!provider) {
|
|
return;
|
|
}
|
|
}
|
|
return provider;
|
|
},
|
|
editIfEditable(event) {
|
|
let provider = this.getViewProvider();
|
|
if (provider &&
|
|
provider.canEdit(this.currentObject) &&
|
|
!this.openmct.editor.isEditing()) {
|
|
this.openmct.editor.edit();
|
|
}
|
|
},
|
|
hasComposableDomainObject(event) {
|
|
return event.dataTransfer.types.includes('openmct/composable-domain-object')
|
|
},
|
|
getComposableDomainObject(event) {
|
|
let serializedDomainObject = event.dataTransfer.getData('openmct/composable-domain-object');
|
|
return JSON.parse(serializedDomainObject);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
|