91 lines
3.3 KiB
Vue
91 lines
3.3 KiB
Vue
<script setup>
|
|
import ConnectionDialog from './components/dialogs/ConnectionDialog.vue'
|
|
import NewKeyDialog from './components/dialogs/NewKeyDialog.vue'
|
|
import PreferencesDialog from './components/dialogs/PreferencesDialog.vue'
|
|
import RenameKeyDialog from './components/dialogs/RenameKeyDialog.vue'
|
|
import SetTtlDialog from './components/dialogs/SetTtlDialog.vue'
|
|
import AddFieldsDialog from './components/dialogs/AddFieldsDialog.vue'
|
|
import AppContent from './AppContent.vue'
|
|
import GroupDialog from './components/dialogs/GroupDialog.vue'
|
|
import DeleteKeyDialog from './components/dialogs/DeleteKeyDialog.vue'
|
|
import { onMounted, ref, watch } from 'vue'
|
|
import usePreferencesStore from './stores/preferences.js'
|
|
import useConnectionStore from './stores/connections.js'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { darkTheme } from 'naive-ui'
|
|
import KeyFilterDialog from './components/dialogs/KeyFilterDialog.vue'
|
|
import { WindowSetDarkTheme, WindowSetLightTheme } from 'wailsjs/runtime/runtime.js'
|
|
import { darkThemeOverrides, themeOverrides } from '@/utils/theme.js'
|
|
import AboutDialog from '@/components/dialogs/AboutDialog.vue'
|
|
import FlushDbDialog from '@/components/dialogs/FlushDbDialog.vue'
|
|
import ExportKeyDialog from '@/components/dialogs/ExportKeyDialog.vue'
|
|
import ImportKeyDialog from '@/components/dialogs/ImportKeyDialog.vue'
|
|
import { Info } from 'wailsjs/go/services/systemService.js'
|
|
import DecoderDialog from '@/components/dialogs/DecoderDialog.vue'
|
|
|
|
const prefStore = usePreferencesStore()
|
|
const connectionStore = useConnectionStore()
|
|
const i18n = useI18n()
|
|
const initializing = ref(true)
|
|
onMounted(async () => {
|
|
try {
|
|
initializing.value = true
|
|
await prefStore.loadFontList()
|
|
await prefStore.loadBuildInDecoder()
|
|
await connectionStore.initConnections()
|
|
if (prefStore.autoCheckUpdate) {
|
|
prefStore.checkForUpdate()
|
|
}
|
|
Info().then(({ data }) => {
|
|
// const {os, arch, version} = data
|
|
umami && umami.track('startup', data)
|
|
})
|
|
} finally {
|
|
initializing.value = false
|
|
}
|
|
})
|
|
|
|
// watch theme and dynamically switch
|
|
watch(
|
|
() => prefStore.isDark,
|
|
(isDark) => (isDark ? WindowSetDarkTheme() : WindowSetLightTheme()),
|
|
)
|
|
|
|
// watch language and dynamically switch
|
|
watch(
|
|
() => prefStore.general.language,
|
|
(lang) => (i18n.locale.value = prefStore.currentLanguage),
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<n-config-provider
|
|
:inline-theme-disabled="true"
|
|
:locale="prefStore.themeLocale"
|
|
:theme="prefStore.isDark ? darkTheme : undefined"
|
|
:theme-overrides="prefStore.isDark ? darkThemeOverrides : themeOverrides"
|
|
class="fill-height">
|
|
<n-dialog-provider>
|
|
<app-content :loading="initializing" />
|
|
|
|
<!-- top modal dialogs -->
|
|
<connection-dialog />
|
|
<group-dialog />
|
|
<new-key-dialog />
|
|
<key-filter-dialog />
|
|
<add-fields-dialog />
|
|
<rename-key-dialog />
|
|
<delete-key-dialog />
|
|
<export-key-dialog />
|
|
<import-key-dialog />
|
|
<flush-db-dialog />
|
|
<set-ttl-dialog />
|
|
<preferences-dialog />
|
|
<decoder-dialog />
|
|
<about-dialog />
|
|
</n-dialog-provider>
|
|
</n-config-provider>
|
|
</template>
|
|
|
|
<style lang="scss"></style>
|