mirror of
https://github.com/nasa/openmct.git
synced 2025-06-06 09:21:43 +00:00
153 lines
4.2 KiB
Vue
153 lines
4.2 KiB
Vue
<template>
|
|
<div class="c-tree__wrapper">
|
|
<ul class="c-tree">
|
|
<tree-item v-for="child in children"
|
|
:key="child.id"
|
|
:node="child">
|
|
</tree-item>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import "~styles/sass-base";
|
|
|
|
.c-tree {
|
|
@include userSelectNone();
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
height: 100%;
|
|
|
|
&__wrapper {
|
|
overflow-y: auto;
|
|
padding-right: $interiorMarginSm;
|
|
}
|
|
|
|
.c-tree {
|
|
margin-left: 15px;
|
|
}
|
|
|
|
&__item {
|
|
$aPad: $interiorMarginSm;
|
|
border-radius: $controlCr;
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
padding: $interiorMargin - $aPad;
|
|
transition: background 150ms ease;
|
|
|
|
&:hover {
|
|
background: $colorItemTreeHoverBg;
|
|
.c-tree__item__type-icon:before {
|
|
color: $colorItemTreeIconHover;
|
|
}
|
|
|
|
.c-tree__item__name {
|
|
color: $colorItemTreeHoverFg;
|
|
}
|
|
}
|
|
|
|
&.is-selected {
|
|
background: $colorItemTreeSelectedBg;
|
|
.c-tree__item__type-icon:before {
|
|
color: $colorItemTreeIconHover;
|
|
}
|
|
|
|
.c-tree__item__name {
|
|
color: $colorItemTreeSelectedFg;
|
|
}
|
|
}
|
|
|
|
&.is-being-edited {
|
|
background: $colorItemTreeEditingBg;
|
|
.c-tree__item__type-icon:before {
|
|
color: $colorItemTreeEditingIcon;
|
|
}
|
|
|
|
.c-tree__item__name {
|
|
color: $colorItemTreeEditingFg;
|
|
font-style: italic;
|
|
}
|
|
}
|
|
|
|
&__view-control {
|
|
color: $colorItemTreeVC;
|
|
margin-right: $interiorMarginSm;
|
|
}
|
|
|
|
&__label {
|
|
// <a> tag that holds type icon and name.
|
|
// Draggable element.
|
|
border-radius: $controlCr;
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 1 1 auto;
|
|
overflow: hidden;
|
|
padding: $aPad;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
&__name {
|
|
@include ellipsize();
|
|
display: inline;
|
|
color: $colorItemTreeFg;
|
|
width: 100%;
|
|
}
|
|
|
|
&__type-icon {
|
|
// Type icon. Must be HTML entity to allow inclusion of alias indicator.
|
|
display: block;
|
|
flex: 0 0 auto;
|
|
font-size: 1.3em;
|
|
margin-right: $interiorMarginSm;
|
|
color: $colorItemTreeIcon;
|
|
width: $treeTypeIconW;
|
|
}
|
|
|
|
&.is-alias {
|
|
// Object is an alias to an original.
|
|
[class*='__type-icon'] {
|
|
@include isAlias();
|
|
}
|
|
}
|
|
|
|
body.mobile & {
|
|
@include button($bg: $colorMobilePaneLeftTreeItemBg, $fg: $colorMobilePaneLeftTreeItemFg);
|
|
height: $mobileTreeItemH;
|
|
margin-bottom: $interiorMarginSm;
|
|
[class*="view-control"] {
|
|
width: ceil($mobileTreeItemH * 0.5);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import treeItem from './tree-item.vue'
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
children: []
|
|
};
|
|
},
|
|
inject: ['openmct'],
|
|
mounted: function () {
|
|
this.openmct.objects.get('ROOT')
|
|
.then(root => this.openmct.composition.get(root).load())
|
|
.then(children => this.children = children.map((c) => {
|
|
return {
|
|
id: this.openmct.objects.makeKeyString(c.identifier),
|
|
object: c,
|
|
objectPath: [c]
|
|
};
|
|
}))
|
|
},
|
|
name: 'mct-tree',
|
|
components: {
|
|
treeItem
|
|
}
|
|
}
|
|
</script>
|