You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/oaweb/layouts/default.vue

172 lines
4.4 KiB
Vue

<!--
6 months ago
* default.vue
* Copyright (C) 2024 veypi <i@veypi.com>
* 2024-05-31 17:09
* Distributed under terms of the MIT license.
-->
<template>
<div class="page">
<div class="header flex justify-center items-center">
<div class="ico" @click="router.push('/')"></div>
4 weeks ago
<div>OneAuth</div>
6 months ago
<div class="grow"></div>
4 weeks ago
<OneIcon class="mx-2" @click="toggle_lang" :name="$i18n.locale !== 'zh-CN' ? 'in-Zh_Cn' : 'in-en'"></OneIcon>
<OneIcon class="mx-2" @click="toggle_fullscreen" :name="app.layout.fullscreen ? 'compress' : 'expend'"></OneIcon>
<OneIcon class="mx-2" @click="toggle_theme" :name="app.layout.theme === '' ? 'light' : 'dark'"></OneIcon>
<!-- <OAer class="mx-2" v-if="user.ready" @logout="user.logout" :is-dark="app.layout.theme !== ''"> -->
<!-- </OAer> -->
<div class="mr-4 ml-2" id='oaer'></div>
6 months ago
</div>
<div class="menu">
<Menu :show_name="menu_mode === 2"></Menu>
6 months ago
</div>
<div class="menu-hr"></div>
<div class="main px-8 py-6">
6 months ago
<slot />
</div>
<div class="footer flex justify-around items-center">
<div @click="util.goto('https://veypi.com')">© 2024 veypi</div>
6 months ago
<div>使用说明</div>
<div>联系我们</div>
</div>
</div>
</template>
<script lang="ts" setup>
6 months ago
import { OneIcon } from '@veypi/one-icon'
4 weeks ago
import oaer from '@veypi/oaer'
4 weeks ago
import { useI18n } from 'vue-i18n';
6 months ago
4 weeks ago
let i18n = useI18n()
6 months ago
let app = useAppConfig()
let router = useRouter()
4 weeks ago
const colorMode = useColorMode()
6 months ago
app.host = window.location.protocol + '//' + window.location.host
4 weeks ago
api.apitoken.value = oaer.Token()
oaer.init(app.host).then((e) => {
oaer.render_ui('oaer')
4 weeks ago
api.apitoken.set_updator(oaer.TokenRefresh)
}).catch(() => {
oaer.logout()
6 months ago
})
oaer.on('logout', () => {
useRouter().push('/login')
6 months ago
})
6 months ago
let menu_mode = ref(1)
let toggle_menu = (m: 0 | 1 | 2) => {
menu_mode.value = m
if (m == 0) {
app.layout.menu_width = 0
} else if (m == 1) {
app.layout.menu_width = 40
} else {
app.layout.menu_width = 108
6 months ago
}
}
toggle_menu(2)
6 months ago
4 weeks ago
const toggle_lang = () => {
if (i18n.locale.value === 'zh-CN') {
i18n.locale.value = 'en-US'
} else {
i18n.locale.value = 'zh-CN'
}
localStorage.setItem('lang', i18n.locale.value)
}
6 months ago
const toggle_fullscreen = () => {
app.layout.fullscreen = !app.layout.fullscreen
if (app.layout.fullscreen) {
let docElm = document.documentElement;
docElm.requestFullscreen();
} else {
document.exitFullscreen();
}
}
const toggle_theme = () => {
app.layout.theme =
app.layout.theme === '' ? 'dark' : ''
document.documentElement.setAttribute('theme', app.layout.theme)
4 weeks ago
colorMode.preference = app.layout.theme === '' ? 'light' : 'dark'
6 months ago
}
onMounted(() => {
oaer.render_ui('oaer')
4 weeks ago
useMenuStore().default()
})
6 months ago
</script>
<style scoped lang="scss">
.page {
height: 100vh;
width: 100vw;
.header {
height: v-bind('app.layout.header_height + "px"');
user-select: none;
background: var(--header-bg);
color: var(--header-txt);
font-size: 24px;
.ico {
width: v-bind('app.layout.header_height * 0.8 + "px"');
height: v-bind('app.layout.header_height * 0.8 + "px"');
background: url('/favicon.ico') no-repeat;
background-size: cover;
}
#oaer {
width: v-bind('app.layout.header_height * 0.6 + "px"');
height: v-bind('app.layout.header_height * 0.6 + "px"');
}
6 months ago
}
.menu {
overflow: hidden;
vertical-align: top;
display: inline-block;
width: v-bind("app.layout.menu_width + 'px'");
height: calc(100vh - v-bind('app.layout.header_height + app.layout.footer_height + "px"'));
transition: width 0.3s linear;
}
.menu-hr {
vertical-align: top;
display: inline-block;
width: 1px;
height: calc(100vh - v-bind('app.layout.header_height + app.layout.footer_height + "px"'));
background: #999;
}
.main {
vertical-align: top;
display: inline-block;
overflow: auto;
width: calc(100vw - v-bind("app.layout.menu_width + 1 + 'px'"));
height: calc(100vh - v-bind('app.layout.header_height + app.layout.footer_height + "px"'));
transition: width 0.3s linear;
}
.footer {
height: v-bind("app.layout.footer_height + 'px'");
user-select: none;
background: var(--footer-bg);
color: var(--footer-txt);
font-size: 12px;
line-height: v-bind("app.layout.footer_height + 'px'");
div {
cursor: pointer;
opacity: 0.6;
}
div:hover {
opacity: 1;
}
}
}
</style>