51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import type { BaseFormComponentType } from '@vben-core/form-ui';
|
|
|
|
import type { ExtendedVxeGridApi, VxeGridProps } from './types';
|
|
|
|
import { defineComponent, h, onBeforeUnmount } from 'vue';
|
|
|
|
import { useStore } from '@vben-core/shared/store';
|
|
|
|
import { VxeGridApi } from './api';
|
|
import VxeGrid from './use-vxe-grid.vue';
|
|
|
|
export function useVbenVxeGrid<
|
|
T extends Record<string, any> = any,
|
|
D extends BaseFormComponentType = BaseFormComponentType,
|
|
>(options: VxeGridProps<T, D>) {
|
|
// const IS_REACTIVE = isReactive(options);
|
|
const api = new VxeGridApi(options);
|
|
const extendedApi: ExtendedVxeGridApi<T, D> = api as ExtendedVxeGridApi<T, D>;
|
|
extendedApi.useStore = (selector) => {
|
|
return useStore(api.store, selector);
|
|
};
|
|
|
|
const Grid = defineComponent(
|
|
(props: VxeGridProps<T>, { attrs, slots }) => {
|
|
onBeforeUnmount(() => {
|
|
api.unmount();
|
|
});
|
|
api.setState({ ...props, ...attrs });
|
|
return () => h(VxeGrid, { ...props, ...attrs, api: extendedApi }, slots);
|
|
},
|
|
{
|
|
name: 'VbenVxeGrid',
|
|
inheritAttrs: false,
|
|
},
|
|
);
|
|
// Add reactivity support
|
|
// if (IS_REACTIVE) {
|
|
// watch(
|
|
// () => options,
|
|
// () => {
|
|
// api.setState(options);
|
|
// },
|
|
// { immediate: true },
|
|
// );
|
|
// }
|
|
|
|
return [Grid, extendedApi] as const;
|
|
}
|
|
|
|
export type UseVbenVxeGrid = typeof useVbenVxeGrid;
|