123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <script setup lang="ts">
- // This starter template is using Vue 3 <script setup> SFCs
- // Check out https://vuejs.org/api/sfc-script-setup.html#script-setup
- import { computed, provide } from 'vue'
- import { theme } from 'ant-design-vue'
- import zh_CN from 'ant-design-vue/es/locale/zh_CN'
- import zh_TW from 'ant-design-vue/es/locale/zh_TW'
- import en_US from 'ant-design-vue/es/locale/en_US'
- import gettext from '@/gettext'
- import { useSettingsStore } from '@/pinia'
- const media = window.matchMedia('(prefers-color-scheme: dark)')
- const callback = () => {
- const settings = useSettingsStore()
- if (settings.preference_theme === 'auto') {
- if (media.matches)
- settings.set_theme('dark')
- else
- settings.set_theme('light')
- }
- else {
- settings.set_theme(settings.preference_theme)
- }
- }
- callback()
- const devicePrefersTheme = computed(() => {
- return media.matches ? 'dark' : 'light'
- })
- provide('devicePrefersTheme', devicePrefersTheme)
- media.addEventListener('change', callback)
- const lang = computed(() => {
- switch (gettext.current) {
- case 'zh_CN':
- return zh_CN
- case 'zh_TW':
- return zh_TW
- default:
- return en_US
- }
- })
- const settings = useSettingsStore()
- const is_theme_dark = computed(() => settings.theme === 'dark')
- </script>
- <template>
- <AConfigProvider
- :theme="{
- algorithm: is_theme_dark ? theme.darkAlgorithm : theme.defaultAlgorithm,
- }"
- :locale="lang"
- :auto-insert-space-in-button="false"
- >
- <RouterView />
- </AConfigProvider>
- </template>
- <style lang="less">
- @import "ant-design-vue/dist/reset.css";
- .dark {
- h1, h2, h3, h4, h5, h6, p, div {
- color: #fafafa;
- }
- .ant-checkbox-indeterminate {
- .ant-checkbox-inner {
- background-color: transparent !important;
- }
- }
- .ant-layout-header {
- background-color: #141414 !important;
- }
- .ant-layout-sider {
- .ant-menu {
- border-right: 0 !important;
- }
- &.ant-layout-sider-has-trigger {
- padding-bottom: 0;
- }
- }
- }
- .ant-layout-header {
- padding: 0 !important;
- background-color: #fff !important;
- }
- .ant-layout-sider {
- .ant-menu {
- border-inline-end: none !important;
- }
- }
- @media (max-width: 512px) {
- .ant-card {
- border-radius: 0;
- }
- }
- </style>
- <style lang="less" scoped>
- </style>
|