2021-09-17 23:20:22 +00:00
|
|
|
/*****************************************************************************
|
2022-01-18 19:27:28 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2022, United States Government
|
2021-09-17 23:20:22 +00:00
|
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
* Administration. All rights reserved.
|
|
|
|
*
|
|
|
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
|
|
|
* Open MCT includes source code licensed under additional open source
|
|
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
|
|
* this source code distribution or the Licensing information page available
|
|
|
|
* at runtime from the About dialog for additional information.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2021-03-03 17:50:48 +00:00
|
|
|
<template>
|
|
|
|
<li
|
|
|
|
draggable="true"
|
|
|
|
@dragstart="emitDragStartEvent"
|
|
|
|
@dragenter="onDragenter"
|
2023-01-23 15:34:26 +00:00
|
|
|
@dragover.prevent
|
2021-03-03 17:50:48 +00:00
|
|
|
@dragleave="onDragleave"
|
|
|
|
@drop="emitDropEvent"
|
|
|
|
>
|
|
|
|
<div
|
2023-01-31 06:01:00 +00:00
|
|
|
class="c-tree__item c-elements-pool__item js-elements-pool__item"
|
2021-03-03 17:50:48 +00:00
|
|
|
:class="{
|
|
|
|
'is-context-clicked': contextClickActive,
|
2022-10-08 16:04:38 +00:00
|
|
|
'hover': hover,
|
|
|
|
'is-alias': isAlias
|
2021-03-03 17:50:48 +00:00
|
|
|
}"
|
|
|
|
>
|
|
|
|
<span
|
|
|
|
class="c-elements-pool__grippy c-grippy c-grippy--vertical-drag"
|
|
|
|
></span>
|
|
|
|
<object-label
|
|
|
|
:domain-object="elementObject"
|
|
|
|
:object-path="[elementObject, parentObject]"
|
|
|
|
@context-click-active="setContextClickState"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import ObjectLabel from '../components/ObjectLabel.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
ObjectLabel
|
|
|
|
},
|
2022-10-08 16:04:38 +00:00
|
|
|
inject: ['openmct'],
|
2021-03-03 17:50:48 +00:00
|
|
|
props: {
|
|
|
|
index: {
|
|
|
|
type: Number,
|
|
|
|
required: true,
|
|
|
|
default: () => {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
elementObject: {
|
|
|
|
type: Object,
|
|
|
|
required: true,
|
|
|
|
default: () => {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
parentObject: {
|
|
|
|
type: Object,
|
|
|
|
required: true,
|
|
|
|
default: () => {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
allowDrop: {
|
|
|
|
type: Boolean
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
2022-10-08 16:04:38 +00:00
|
|
|
const isAlias = this.elementObject.location !== this.openmct.objects.makeKeyString(this.parentObject.identifier);
|
|
|
|
|
2021-03-03 17:50:48 +00:00
|
|
|
return {
|
|
|
|
contextClickActive: false,
|
2022-10-08 16:04:38 +00:00
|
|
|
hover: false,
|
|
|
|
isAlias
|
2021-03-03 17:50:48 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
emitDropEvent(event) {
|
2023-01-23 15:34:26 +00:00
|
|
|
this.$emit('drop-custom', event);
|
2021-03-03 17:50:48 +00:00
|
|
|
this.hover = false;
|
|
|
|
},
|
|
|
|
emitDragStartEvent(event) {
|
|
|
|
this.$emit('dragstart-custom', this.index);
|
|
|
|
},
|
|
|
|
onDragenter(event) {
|
|
|
|
if (this.allowDrop) {
|
|
|
|
this.hover = true;
|
|
|
|
this.dragElement = event.target.parentElement;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onDragleave(event) {
|
|
|
|
if (event.target.parentElement === this.dragElement) {
|
|
|
|
this.hover = false;
|
|
|
|
delete this.dragElement;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
setContextClickState(state) {
|
|
|
|
this.contextClickActive = state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|