mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-11-29 17:58:08 +08:00
8618a6bcd0
chore: import shared utilities from `@element-plus/utils`
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import { NOOP } from '../functions'
|
|
|
|
import type { App, Directive } from 'vue'
|
|
import type { SFCInstallWithContext, SFCWithInstall } from './typescript'
|
|
|
|
export const withInstall = <T, E extends Record<string, any>>(
|
|
main: T,
|
|
extra?: E
|
|
) => {
|
|
;(main as SFCWithInstall<T>).install = (app): void => {
|
|
for (const comp of [main, ...Object.values(extra ?? {})]) {
|
|
app.component(comp.name, comp)
|
|
}
|
|
}
|
|
|
|
if (extra) {
|
|
for (const [key, comp] of Object.entries(extra)) {
|
|
;(main as any)[key] = comp
|
|
}
|
|
}
|
|
return main as SFCWithInstall<T> & E
|
|
}
|
|
|
|
export const withInstallFunction = <T>(fn: T, name: string) => {
|
|
;(fn as SFCWithInstall<T>).install = (app: App) => {
|
|
;(fn as SFCInstallWithContext<T>)._context = app._context
|
|
app.config.globalProperties[name] = fn
|
|
}
|
|
|
|
return fn as SFCInstallWithContext<T>
|
|
}
|
|
|
|
export const withInstallDirective = <T extends Directive>(
|
|
directive: T,
|
|
name: string
|
|
) => {
|
|
;(directive as SFCWithInstall<T>).install = (app: App): void => {
|
|
app.directive(name, directive)
|
|
}
|
|
|
|
return directive as SFCWithInstall<T>
|
|
}
|
|
|
|
export const withNoopInstall = <T>(component: T) => {
|
|
;(component as SFCWithInstall<T>).install = NOOP
|
|
|
|
return component as SFCWithInstall<T>
|
|
}
|