18 lines
656 B
TypeScript
18 lines
656 B
TypeScript
|
|
import type { ConfigProviderProps } from 'naive-ui'
|
||
|
|
import { createDiscreteApi, darkTheme, lightTheme } from 'naive-ui'
|
||
|
|
import { computed } from 'vue'
|
||
|
|
|
||
|
|
import { useProjectSettingStoreWithOut } from '@/store/modules/projectSetting'
|
||
|
|
|
||
|
|
const projectStore = useProjectSettingStoreWithOut()
|
||
|
|
const configProviderPropsRef = computed<ConfigProviderProps>(() => ({
|
||
|
|
theme: !projectStore.darkTheme ? lightTheme : darkTheme
|
||
|
|
}))
|
||
|
|
const { message, dialog, notification, loadingBar } = createDiscreteApi(
|
||
|
|
['message', 'dialog', 'notification', 'loadingBar'],
|
||
|
|
{
|
||
|
|
configProviderProps: configProviderPropsRef
|
||
|
|
}
|
||
|
|
)
|
||
|
|
export { dialog, loadingBar, message, notification }
|