| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <template>
- <div class="demo-project-sidebar-wrapper flex-justify-between">
- <div>
- <router-link v-for="item in options" :key="item.key" :to="item.path" :class="{
- 'menu-item': true,
- selected: selectedRoute(item),
- }">
- <a-tooltip :title="item.label" placement="right">
- <Icon class="fz20" style="width: 50px;" :icon="item.icon" />
- </a-tooltip>
- </router-link>
- </div>
- <div class="mb20 flex-display flex-column flex-align-center flex-justify-between">
- <a-tooltip title="Back to home" placement="right">
- <a @click="goHome">
- <Icon icon="ImportOutlined" style="font-size: 22px; color: white" />
- </a>
- </a-tooltip>
- </div>
- </div>
- </template>
- <script lang="ts">
- import { createVNode, defineComponent } from 'vue'
- import { getRoot } from '/@/root'
- import * as icons from '@ant-design/icons-vue'
- import { ERouterName } from '/@/types'
- interface IOptions {
- key: number
- label: string
- path:
- | string
- | {
- path: string
- query?: any
- }
- icon: string
- }
- const Icon = (props: { icon: string }) => {
- return createVNode((icons as any)[props.icon])
- }
- export default defineComponent({
- components: {
- Icon,
- },
- name: 'Sidebar',
- setup() {
- const root = getRoot()
- const options = [
- { key: 0, label: 'Tsa', path: '/' + ERouterName.TSA, icon: 'TeamOutlined' },
- // { key: 1, label: 'Livestream', path: '/' + ERouterName.LIVESTREAM, icon: 'VideoCameraOutlined' },
- // { key: 2, label: 'Annotations', path: '/' + ERouterName.LAYER, icon: 'EnvironmentOutlined' },
- // { key: 3, label: 'Media Files', path: '/' + ERouterName.MEDIA, icon: 'PictureOutlined' },
- // { key: 4, label: 'Flight Route Library', path: '/' + ERouterName.WAYLINE, icon: 'NodeIndexOutlined' },
- // { key: 5, label: 'Task Plan Library', path: '/' + ERouterName.TASK, icon: 'CalendarOutlined' },
- // { key: 6, label: 'Flight Area', path: '/' + ERouterName.FLIGHT_AREA, icon: 'GroupOutlined' },
- ]
- function selectedRoute(item: IOptions) {
- const path = typeof item.path === 'string' ? item.path : item.path.path
- return root.$route.path?.indexOf(path) === 0
- }
- function goHome() {
- root.$router.push('/' + ERouterName.DEVICES)
- }
- return {
- options,
- selectedRoute,
- goHome,
- }
- }
- })
- </script>
- <style scoped lang="scss">
- .demo-project-sidebar-wrapper {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 50px;
- border-right: 1px solid #4f4f4f;
- color: $text-white-basic;
- // flex: 1;
- overflow: hidden;
- .menu-item {
- width: 100%;
- padding: 16px 0px;
- display: flex;
- flex-direction: column;
- align-items: center;
- color: $text-white-basic;
- cursor: pointer;
- &.selected {
- background-color: #101010;
- color: $primary;
- }
- &.disabled {
- pointer-events: none;
- opacity: 0.45;
- }
- }
- .filling {
- flex: 1;
- }
- .setting-icon {
- font-size: 24px;
- margin-bottom: 24px;
- color: $text-white-basic;
- }
- }
- .ant-tooltip-open {
- border: 0;
- }
- </style>
|