2022-04-04 00:24:45 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { NIcon } from 'naive-ui';
|
|
|
|
import { h, ref, type Component } from 'vue';
|
|
|
|
import { RouterLink, useRoute } from 'vue-router';
|
2022-04-04 01:52:59 +02:00
|
|
|
import { LightModeFilled, DarkModeFilled } from '@vicons/material'
|
2022-04-06 00:49:56 +02:00
|
|
|
import { toolsByCategory } from '@/tools';
|
2022-04-04 01:03:06 +02:00
|
|
|
import SearchBar from '../components/SearchBar.vue';
|
2022-04-04 01:52:59 +02:00
|
|
|
import { useStyleStore } from '@/stores/style.store';
|
2022-04-04 00:24:45 +02:00
|
|
|
|
|
|
|
const collapsed = ref(false)
|
|
|
|
const activeKey = ref(null)
|
|
|
|
const route = useRoute()
|
2022-04-04 01:52:59 +02:00
|
|
|
const styleStore = useStyleStore()
|
2022-04-04 00:24:45 +02:00
|
|
|
|
|
|
|
const makeLabel = (text: string, to: string) => () => h(RouterLink, { to }, { default: () => text })
|
|
|
|
const makeIcon = (icon: Component) => () => h(NIcon, null, { default: () => h(icon) })
|
|
|
|
|
2022-04-06 00:49:56 +02:00
|
|
|
const m = toolsByCategory.map(category => ({
|
|
|
|
label: category.name,
|
|
|
|
key: category.name,
|
|
|
|
type: 'group',
|
|
|
|
children: category.components.map(({ name, path, icon }) => ({
|
|
|
|
label: makeLabel(name, path),
|
|
|
|
icon: makeIcon(icon)
|
|
|
|
}))
|
2022-04-04 00:24:45 +02:00
|
|
|
}))
|
2022-04-06 00:49:56 +02:00
|
|
|
|
2022-03-31 00:33:29 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-04-04 00:24:45 +02:00
|
|
|
<n-layout has-sider>
|
|
|
|
<n-layout-sider
|
|
|
|
bordered
|
|
|
|
collapse-mode="width"
|
|
|
|
:collapsed-width="64"
|
|
|
|
:width="240"
|
|
|
|
:collapsed="collapsed"
|
|
|
|
show-trigger
|
|
|
|
@collapse="collapsed = true"
|
|
|
|
@expand="collapsed = false"
|
|
|
|
>
|
|
|
|
<router-link
|
|
|
|
to="/"
|
|
|
|
style="text-decoration: none; color: grey; display: block; text-align: center; margin:25px 0; font-size: 25px;"
|
|
|
|
>
|
|
|
|
<strong>IT-Tools</strong>
|
|
|
|
</router-link>
|
|
|
|
|
|
|
|
<n-menu
|
|
|
|
:value="route.name"
|
|
|
|
class="menu"
|
|
|
|
:collapsed="collapsed"
|
|
|
|
:collapsed-width="64"
|
|
|
|
:collapsed-icon-size="22"
|
2022-04-06 00:49:56 +02:00
|
|
|
:options="m"
|
2022-04-04 00:24:45 +02:00
|
|
|
v-model:value="activeKey"
|
|
|
|
/>
|
|
|
|
</n-layout-sider>
|
|
|
|
<n-layout class="content">
|
|
|
|
<div class="bar-wrapper">
|
2022-04-04 01:03:06 +02:00
|
|
|
<search-bar />
|
|
|
|
|
2022-04-04 01:52:59 +02:00
|
|
|
<n-button
|
|
|
|
circle
|
|
|
|
quaternary
|
|
|
|
@click="styleStore.isDarkTheme = !styleStore.isDarkTheme"
|
|
|
|
>
|
|
|
|
<n-icon size="large" v-if="styleStore.isDarkTheme">
|
|
|
|
<LightModeFilled />
|
|
|
|
</n-icon>
|
|
|
|
<n-icon size="large" v-else>
|
|
|
|
<DarkModeFilled />
|
2022-04-04 00:24:45 +02:00
|
|
|
</n-icon>
|
|
|
|
</n-button>
|
|
|
|
</div>
|
|
|
|
<slot />
|
|
|
|
</n-layout>
|
|
|
|
</n-layout>
|
2022-03-31 00:33:29 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
2022-04-04 00:24:45 +02:00
|
|
|
.bar-wrapper {
|
|
|
|
display: flex;
|
|
|
|
& > *:not(:first-child) {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
& > :first-child {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
2022-04-04 01:52:59 +02:00
|
|
|
// background-color: #f1f5f9;
|
2022-04-04 00:24:45 +02:00
|
|
|
::v-deep(.n-layout-scroll-container) {
|
|
|
|
padding: 26px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.n-layout {
|
|
|
|
height: 100vh;
|
2022-03-31 00:33:29 +02:00
|
|
|
}
|
|
|
|
</style>
|