quasar
Version:
Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time
70 lines (60 loc) • 2.46 kB
TypeScript
import { QuasarIconSet } from "./extras/icon-set";
import { HasCapacitor, HasCordova, HasSsr, HasBex } from "./feature-flag";
import { QuasarLanguage } from "./lang";
// We cannot reference directly Capacitor/Cordova types
// or they would generate TS errors for Vue CLI users
// We also cannot move feature-flags system into `@quasar/app-webpack`/`@quasar/app-vite`
// because `QVueGlobals` augmentations won't be transferred to
// the `vue/types/vue` augmentation for unknown reason (probably TS limitations)
// and the system will just stop working
// To workaround these problems we define an empty holder interface
// and augment it into `@quasar/app-webpack`/`@quasar/app-vite` with current typings
export interface GlobalsTypesHolder {
[index: string]: any;
}
export interface GlobalQuasarLanguage extends QuasarLanguage {
set(lang: QuasarLanguage): void;
/** Returns undefined when in SSR mode or when it cannot determine current language. */
getLocale(): string | undefined;
}
export interface GlobalQuasarLanguageSingleton
extends QuasarLanguage,
HasSsr<
{ set(lang: QuasarLanguage, ssrContext: any): void },
{ set(lang: QuasarLanguage): void }
> {
/** Returns undefined when in SSR mode or when it cannot determine current language. */
getLocale(): string | undefined;
}
export interface GlobalQuasarIconSet extends QuasarIconSet {
set(iconSet: QuasarIconSet): void;
}
export interface GlobalQuasarIconSetSingleton
extends QuasarIconSet,
HasSsr<
// QSsrContext interface depends on q/app, making it available into UI package adds complexity without any real benefit
{ set(iconSet: QuasarIconSet, ssrContext: any): void },
{ set(iconSet: QuasarIconSet): void }
> {}
type GlobalQuasarIconMapFn = (
iconName: string
) => { icon: string } | { cls: string; content?: string } | void;
export interface BaseQGlobals {
version: string;
lang: GlobalQuasarLanguage;
iconSet: GlobalQuasarIconSet;
}
export interface QSingletonGlobals {
version: string;
lang: GlobalQuasarLanguageSingleton;
iconSet: GlobalQuasarIconSetSingleton;
}
export interface QVueGlobals
extends HasCapacitor<{ capacitor: any }>,
HasBex<{ bex: GlobalsTypesHolder["bex"] }>,
HasCordova<{ cordova: GlobalsTypesHolder["cordova"] }>,
HasSsr<
{ iconMapFn?: GlobalQuasarIconMapFn; onSSRHydrated?: () => void },
{ iconMapFn: GlobalQuasarIconMapFn }
>,
BaseQGlobals {}