9 changed files with 15 additions and 93 deletions
@ -1,2 +1,8 @@ |
|||
export { default as BasicUpload } from './src/BasicUpload.vue'; |
|||
// export * from './src/types';
|
|||
import type { App } from 'vue'; |
|||
import BasicUpload from './src/BasicUpload.vue'; |
|||
|
|||
export default (app: App): void => { |
|||
app.component(BasicUpload.name, BasicUpload); |
|||
}; |
|||
|
|||
export { BasicUpload }; |
|||
|
|||
@ -1,86 +0,0 @@ |
|||
/** |
|||
* Application configuration |
|||
*/ |
|||
|
|||
import type { ProjectConfig } from '/@/types/config'; |
|||
import type { App } from 'vue'; |
|||
import { computed, ref } from 'vue'; |
|||
|
|||
import { ThemeModeEnum } from '/@/enums/appEnum'; |
|||
import { PROJ_CFG_KEY } from '/@/enums/cacheEnum'; |
|||
|
|||
import projectSetting from '/@/settings/projectSetting'; |
|||
import { getLocal } from '/@/utils/helper/persistent'; |
|||
import { isUnDef, isNull } from '/@/utils/is'; |
|||
import { |
|||
updateGrayMode, |
|||
updateColorWeak, |
|||
updateHeaderBgColor, |
|||
updateSidebarBgColor, |
|||
} from '/@/setup/theme'; |
|||
|
|||
import { appStore } from '/@/store/modules/app'; |
|||
|
|||
// Used to share global app instances
|
|||
let app: App; |
|||
|
|||
export function setApp(_app: App): void { |
|||
app = _app; |
|||
} |
|||
|
|||
export function getApp(): App { |
|||
return app; |
|||
} |
|||
|
|||
// TODO Theme switching
|
|||
export function useThemeMode(mode: ThemeModeEnum) { |
|||
const modeRef = ref(mode); |
|||
const html = document.documentElement; |
|||
const clsList = html.classList; |
|||
|
|||
const change = () => { |
|||
clsList.contains(mode) ? clsList.remove(mode) : clsList.add(mode); |
|||
}; |
|||
return { |
|||
runChangeThemeMode: change, |
|||
mode: computed(() => modeRef.value), |
|||
}; |
|||
} |
|||
|
|||
// Initial project configuration
|
|||
export function initAppConfigStore() { |
|||
let projCfg: ProjectConfig = getLocal(PROJ_CFG_KEY) as ProjectConfig; |
|||
if (!projCfg) { |
|||
projCfg = projectSetting; |
|||
} |
|||
const { colorWeak, grayMode, headerBgColor, menuBgColor } = projCfg; |
|||
try { |
|||
// if (
|
|||
// themeColor !== primaryColor &&
|
|||
// themeColor &&
|
|||
// process.env.VUE_APP_USE_THEME_REPLACER !== 'TRUE'
|
|||
// ) {
|
|||
// updateTheme(themeColor);
|
|||
// }
|
|||
headerBgColor && updateHeaderBgColor(headerBgColor); |
|||
menuBgColor && updateSidebarBgColor(menuBgColor); |
|||
grayMode && updateGrayMode(grayMode); |
|||
colorWeak && updateColorWeak(colorWeak); |
|||
} catch (error) { |
|||
console.log(error); |
|||
} |
|||
appStore.commitProjectConfigState(projCfg); |
|||
} |
|||
|
|||
// antdv Config Provider
|
|||
export function getConfigProvider() { |
|||
function transformCellText({ text }: { text: string }) { |
|||
if (isNull(text) || isUnDef(text)) { |
|||
return ' - '; |
|||
} |
|||
return text; |
|||
} |
|||
return { |
|||
transformCellText, |
|||
}; |
|||
} |
|||
Loading…
Reference in new issue