mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
593 B
20 lines
593 B
2 years ago
|
import type { InjectionKey } from 'vue'
|
||
|
|
||
|
export function useInjectionState<Arguments extends any[], Return>(
|
||
|
composable: (...args: Arguments) => Return,
|
||
|
): readonly [useProvidingState: (...args: Arguments) => void, useInjectedState: () => Return | undefined] {
|
||
|
const key: string | InjectionKey<Return> = Symbol('InjectionState')
|
||
|
|
||
|
const useProvidingState = (...args: Arguments) => {
|
||
|
const providedState = composable(...args)
|
||
|
|
||
|
provide(key, providedState)
|
||
|
|
||
|
return providedState
|
||
|
}
|
||
|
|
||
|
const useInjectedState = () => inject(key)
|
||
|
|
||
|
return [useProvidingState, useInjectedState]
|
||
|
}
|