mirror of
https://github.com/nasa/openmct.git
synced 2025-01-24 05:18:06 +00:00
173 lines
4.8 KiB
Vue
173 lines
4.8 KiB
Vue
|
<template>
|
||
|
<div class="l-shell">
|
||
|
<div class="l-shell__head">
|
||
|
[ Create Button ]
|
||
|
[ App Logo ]
|
||
|
</div>
|
||
|
<multipane class="l-shell__main"
|
||
|
type="horizontal">
|
||
|
<pane class="l-shell__pane-tree"
|
||
|
handle="after"
|
||
|
label="Browse"
|
||
|
collapsable>
|
||
|
<div class="l-shell__search">
|
||
|
<search class="c-search--major" ref="shell-search"></search>
|
||
|
</div>
|
||
|
<div class="l-shell__tree">
|
||
|
<mct-tree :nodes="treeRoots"></mct-tree>
|
||
|
</div>
|
||
|
</pane>
|
||
|
<pane class="l-shell__pane-main">
|
||
|
<div class="l-shell__main-container" ref="mainContainer"></div>
|
||
|
</pane>
|
||
|
<pane class="l-shell__pane-inspector l-pane--holds-multipane"
|
||
|
handle="before"
|
||
|
label="Inspect"
|
||
|
collapsable>
|
||
|
<MctInspector ref="inspector"></MctInspector>
|
||
|
</pane>
|
||
|
</multipane>
|
||
|
<div class="l-shell__status">
|
||
|
<MctStatus></MctStatus>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style lang="scss">
|
||
|
@import "~styles/sass-base";
|
||
|
|
||
|
/******************************* SHELL */
|
||
|
.l-shell {
|
||
|
position: absolute;
|
||
|
top: 0; right: 0; bottom: 0; left: 0;
|
||
|
display: flex;
|
||
|
flex-flow: column nowrap;
|
||
|
|
||
|
&__status {
|
||
|
background: $colorBodyFg;
|
||
|
color: $colorBodyBg;
|
||
|
border-top: 1px solid $colorInteriorBorder;
|
||
|
height: 24px;
|
||
|
padding: $interiorMarginSm;
|
||
|
}
|
||
|
|
||
|
&__pane-tree {
|
||
|
background: $colorTreeBg;
|
||
|
width: 40%;
|
||
|
|
||
|
[class*="collapse-button"] {
|
||
|
// For mobile, collapse button becomes menu icon
|
||
|
body.mobile & {
|
||
|
height: $mobileMenuIconD;
|
||
|
width: $mobileMenuIconD;
|
||
|
transform: translateX(100%);
|
||
|
|
||
|
&:before {
|
||
|
color: $colorKey;
|
||
|
content: $glyph-icon-menu-hamburger;
|
||
|
font-family: symbolsfont;
|
||
|
font-size: 1.4em;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__head,
|
||
|
&__pane-inspector {
|
||
|
body.mobile & {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include phonePortrait() {
|
||
|
&__pane-tree {
|
||
|
width: calc(100% - #{$mobileMenuIconD});
|
||
|
|
||
|
+ .l-pane {
|
||
|
// Hide pane-main when this pane is expanded
|
||
|
opacity: 0;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
&[class*="--collapsed"] + .l-pane {
|
||
|
// Show pane-main when tree is collapsed
|
||
|
opacity: 1;
|
||
|
pointer-events: inherit;
|
||
|
transition: opacity 250ms ease 250ms;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/********** MAIN AREA */
|
||
|
&__main-container {
|
||
|
// Wrapper for main views
|
||
|
font-size: 16px; // TEMP FOR LEGACY STYLING
|
||
|
overflow: auto;
|
||
|
position: absolute;
|
||
|
top: $interiorMargin; right: $interiorMarginLg; bottom: $interiorMargin; left: $interiorMarginLg;
|
||
|
}
|
||
|
|
||
|
&__tree {
|
||
|
// Tree component within __pane-tree
|
||
|
flex: 1 1 100%;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
|
||
|
&__time-conductor {
|
||
|
border-top: 1px solid $colorInteriorBorder;
|
||
|
min-height: 50px;
|
||
|
padding: $interiorMarginLg;
|
||
|
}
|
||
|
|
||
|
body.desktop & {
|
||
|
/********** HEAD AND STATUS */
|
||
|
&__head,
|
||
|
&__status {
|
||
|
display: block;
|
||
|
flex: 0 1 auto;
|
||
|
}
|
||
|
|
||
|
&__head {
|
||
|
border-bottom: 1px solid $colorInteriorBorder;
|
||
|
height: 40px;
|
||
|
padding: $interiorMarginLg;
|
||
|
}
|
||
|
|
||
|
&__pane-tree,
|
||
|
&__pane-inspector {
|
||
|
max-width: 30%;
|
||
|
}
|
||
|
|
||
|
&__pane-tree {
|
||
|
width: 300px;
|
||
|
}
|
||
|
|
||
|
&__pane-inspector {
|
||
|
width: 200px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<script>
|
||
|
import MctInspector from './MctInspector.vue';
|
||
|
import MctMain from './MctMain.vue';
|
||
|
import MctStatus from './MctStatus.vue';
|
||
|
import MctTree from './mct-tree.vue';
|
||
|
import search from '../controls/search.vue';
|
||
|
import multipane from '../controls/multipane.vue';
|
||
|
import pane from '../controls/pane.vue';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
MctInspector,
|
||
|
MctMain,
|
||
|
MctStatus,
|
||
|
MctTree,
|
||
|
search,
|
||
|
multipane,
|
||
|
pane
|
||
|
}
|
||
|
}
|
||
|
</script>
|