27 lines
697 B
TypeScript
27 lines
697 B
TypeScript
import { computed } from 'vue';
|
|
import type { Ref, InjectionKey, ComputedRef } from 'vue';
|
|
import { inject, provide } from 'vue';
|
|
|
|
export interface RowContext {
|
|
gutter: ComputedRef<[number, number]>;
|
|
wrap: ComputedRef<boolean>;
|
|
supportFlexGap: Ref<boolean>;
|
|
}
|
|
|
|
export const RowContextKey: InjectionKey<RowContext> = Symbol('rowContextKey');
|
|
|
|
const useProvideRow = (state: RowContext) => {
|
|
provide(RowContextKey, state);
|
|
};
|
|
|
|
const useInjectRow = () => {
|
|
return inject(RowContextKey, {
|
|
gutter: computed(() => undefined),
|
|
wrap: computed(() => undefined),
|
|
supportFlexGap: computed(() => undefined),
|
|
});
|
|
};
|
|
|
|
export { useInjectRow, useProvideRow };
|
|
export default useProvideRow;
|