12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- import type { GlobEnvConfig } from '/#/config';
- import { warn } from '/@/utils/log';
- import pkg from '../../package.json';
- import { getConfigFileName } from '../../build/getConfigFileName';
- export function getCommonStoragePrefix() {
- const { VITE_GLOB_APP_SHORT_NAME } = getAppEnvConfig();
- return `${VITE_GLOB_APP_SHORT_NAME}__${getEnv()}`.toUpperCase();
- }
- // Generate cache key according to version
- export function getStorageShortName() {
- return `${getCommonStoragePrefix()}${`__${pkg.version}`}__`.toUpperCase();
- }
- export function getAppEnvConfig() {
- const ENV_NAME = getConfigFileName(import.meta.env);
- const ENV = ((isDevMode()
- ? // Get the global configuration (the configuration will be extracted independently when packaging)
- ((import.meta.env as unknown) as GlobEnvConfig)
- : window[ENV_NAME as any]) as unknown) as GlobEnvConfig;
- const {
- VITE_GLOB_APP_TITLE,
- VITE_GLOB_API_URL,
- VITE_GLOB_APP_SHORT_NAME,
- VITE_GLOB_API_URL_PREFIX,
- VITE_GLOB_UPLOAD_URL,
- } = ENV;
- if (!/[a-zA-Z\_]*/.test(VITE_GLOB_APP_SHORT_NAME)) {
- warn(
- `VITE_GLOB_APP_SHORT_NAME Variables can only be characters/underscores, please modify in the environment variables and re-running.`
- );
- }
- return {
- VITE_GLOB_APP_TITLE,
- VITE_GLOB_API_URL,
- VITE_GLOB_APP_SHORT_NAME,
- VITE_GLOB_API_URL_PREFIX,
- VITE_GLOB_UPLOAD_URL,
- };
- }
- /**
- * @description: Development model
- */
- export const devMode = 'development';
- /**
- * @description: Production mode
- */
- export const prodMode = 'production';
- /**
- * @description: Get environment variables
- * @returns:
- * @example:
- */
- export function getEnv(): string {
- return import.meta.env.MODE;
- }
- /**
- * @description: Is it a development mode
- * @returns:
- * @example:
- */
- export function isDevMode(): boolean {
- return import.meta.env.DEV;
- }
- /**
- * @description: Is it a production mode
- * @returns:
- * @example:
- */
- export function isProdMode(): boolean {
- return import.meta.env.PROD;
- }
- /**
- * @description: Whether to open mock
- * @returns:
- * @example:
- */
- export function isUseMock(): boolean {
- return import.meta.env.VITE_USE_MOCK === 'true';
- }
|