init: 初始系统模板
This commit is contained in:
58
src/hooks/useTheme.ts
Normal file
58
src/hooks/useTheme.ts
Normal file
@@ -0,0 +1,58 @@
|
||||
import { onBeforeMount } from 'vue';
|
||||
import { ConfigProvider } from 'ant-design-vue/lib';
|
||||
import { CACHE_LOCAL_PRIMARY_COLOR } from '@/constants/cache-keys-constants';
|
||||
import { localGet, localSet } from '@/utils/cache-local-utils';
|
||||
|
||||
/**
|
||||
* 初始主题色
|
||||
*/
|
||||
export const usePrimaryColor = () => {
|
||||
onBeforeMount(() => {
|
||||
changePrimaryColor(getLocalColor());
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 改变主题色
|
||||
* @param color 颜色
|
||||
*/
|
||||
export function changePrimaryColor(color?: string) {
|
||||
if (!color) {
|
||||
color = getRandomColor();
|
||||
}
|
||||
ConfigProvider.config({
|
||||
theme: {
|
||||
primaryColor: color,
|
||||
},
|
||||
});
|
||||
localSet(CACHE_LOCAL_PRIMARY_COLOR, color);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取主题色-本地缓存
|
||||
* @returns 颜色
|
||||
*/
|
||||
export function getLocalColor() {
|
||||
return localGet(CACHE_LOCAL_PRIMARY_COLOR) || '#1890ff';
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取随机颜色范围
|
||||
* @returns 颜色
|
||||
*/
|
||||
function getRandomColor(): string {
|
||||
const colors: string[] = [
|
||||
'#f5222d',
|
||||
'#fa541c',
|
||||
'#fa8c16',
|
||||
'#a0d911',
|
||||
'#13c2c2',
|
||||
'#1890ff',
|
||||
'#722ed1',
|
||||
'#eb2f96',
|
||||
'#faad14',
|
||||
'#52c41a',
|
||||
];
|
||||
const i = Math.floor(Math.random() * 10);
|
||||
return colors[i];
|
||||
}
|
||||
Reference in New Issue
Block a user