diff --git a/vue-components/container/package.json b/vue-components/container/package.json index 6fcc90fb..d46c93bd 100644 --- a/vue-components/container/package.json +++ b/vue-components/container/package.json @@ -1,5 +1,5 @@ { - "version": "0.0.8", + "version": "1.0.0", "name": "@tmagic/vue-container", "type": "module", "main": "src/index.ts", diff --git a/vue-components/container/src/Component.ts b/vue-components/container/src/Component.ts new file mode 100644 index 00000000..c9d110d6 --- /dev/null +++ b/vue-components/container/src/Component.ts @@ -0,0 +1,54 @@ +import { defineComponent, h, inject, type PropType } from 'vue-demi'; + +import type TMagicApp from '@tmagic/core'; +import { Id, IS_DSL_NODE_KEY, MComponent, toLine } from '@tmagic/core'; +import { useComponent, type UserRenderFunction } from '@tmagic/vue-runtime-help'; + +export default defineComponent({ + props: { + config: { + type: Object as PropType, + required: true, + }, + index: Number, + iteratorIndex: { + type: Array as PropType, + default: () => [], + }, + iteratorContainerId: { + type: Array as PropType, + default: () => [], + }, + }, + + setup(props) { + const userRender = inject('userRender', ({ h, type, props, attrs, style, className }) => + h(type, { ...props, ...attrs, style, class: className }), + ); + + const app = inject('app'); + + return () => + userRender({ + h, + config: props.config, + type: useComponent({ componentType: props.config.type, app }), + style: app?.transformStyle(props.config.style || {}), + className: props.config.className + ? `${props.config.className} magic-ui-${toLine(props.config.type)}` + : `magic-ui-${toLine(props.config.type)}`, + props: { + config: { ...props.config, [IS_DSL_NODE_KEY]: true }, + containerIndex: props.index, + iteratorIndex: props.iteratorIndex, + iteratorContainerId: props.iteratorContainerId, + }, + attrs: { + 'data-tmagic-id': props.config.id, + 'data-tmagic-iterator-index': props.iteratorIndex, + 'data-tmagic-iterator-container-id': props.iteratorContainerId, + 'data-container-index': props.index, + }, + }); + }, +}); diff --git a/vue-components/container/src/Container.vue b/vue-components/container/src/Container.vue index 00879c4b..31397287 100644 --- a/vue-components/container/src/Container.vue +++ b/vue-components/container/src/Container.vue @@ -2,21 +2,14 @@
@@ -26,8 +19,10 @@ import { computed, defineComponent, type PropType } from 'vue-demi'; import type { Id, MContainer } from '@tmagic/core'; -import { IS_DSL_NODE_KEY, toLine } from '@tmagic/core'; -import { useApp, useComponent } from '@tmagic/vue-runtime-help'; +import { IS_DSL_NODE_KEY } from '@tmagic/core'; +import { useApp } from '@tmagic/vue-runtime-help'; + +import ItemComponent from './Component'; interface ContainerSchema extends Omit { id?: Id; @@ -35,19 +30,29 @@ interface ContainerSchema extends Omit { } export default defineComponent({ + name: 'tmagic-container', + props: { config: { type: Object as PropType, required: true, }, - iteratorIndex: Array as PropType, - iteratorContainerId: Array as PropType, + iteratorIndex: { + type: Array as PropType, + default: () => [], + }, + iteratorContainerId: { + type: Array as PropType, + default: () => [], + }, model: { type: Object, default: () => ({}), }, }, + components: { ItemComponent }, + setup(props) { const { display, app } = useApp({ config: props.config, @@ -78,11 +83,8 @@ export default defineComponent({ app, className, style, - IS_DSL_NODE_KEY, display, - toLine, - useComponent, }; }, });