schlechtenburg/packages/core/lib/components/Main.tsx

59 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-05-20 14:21:08 +00:00
import {
defineComponent,
2020-05-24 15:33:25 +00:00
provide,
2020-12-27 21:32:43 +00:00
shallowReactive,
2020-05-24 15:33:25 +00:00
ref,
PropType,
2020-12-27 21:32:43 +00:00
} from 'vue';
2020-05-24 15:33:25 +00:00
import {
2021-03-08 15:29:35 +00:00
BlockData,
2020-05-24 15:33:25 +00:00
BlockDefinition,
2021-03-08 15:29:35 +00:00
BlockLibrary,
} from '../types';
import { SymBlockLibrary} from '../use-dynamic-blocks';
2020-05-24 15:33:25 +00:00
2020-12-30 20:17:34 +00:00
import { SbBlock } from './Block';
2020-05-24 20:00:14 +00:00
2021-03-08 16:45:21 +00:00
import './Main.scss';
2020-05-27 13:57:57 +00:00
2021-03-08 15:29:35 +00:00
export const SbMain = defineComponent({
name: 'sb-main',
2020-05-20 14:21:08 +00:00
model: {
prop: 'block',
event: 'update',
},
2020-05-20 14:21:08 +00:00
props: {
2021-03-08 15:29:35 +00:00
customBlocks: {
type: Array as PropType<BlockDefinition<any>[]>,
default: () => [],
},
block: {
type: Object as PropType<BlockData<any>>,
required: true,
},
2021-02-22 18:13:37 +00:00
onUpdate: { type: Function, default: () => {} },
2020-05-20 14:21:08 +00:00
},
2021-03-08 15:30:56 +00:00
setup(props: any) { // TODO: why does the typing of props not work here?
2021-03-08 15:29:35 +00:00
const blockLibrary: BlockLibrary = shallowReactive({
2020-05-24 15:33:25 +00:00
...props.customBlocks.reduce(
2021-03-08 15:29:35 +00:00
(blocks: BlockLibrary, block: BlockDefinition<any>) => ({ ...blocks, [block.name]: block }),
2020-05-24 15:33:25 +00:00
{},
),
});
2020-12-27 21:32:43 +00:00
2021-03-08 15:29:35 +00:00
provide(SymBlockLibrary, blockLibrary);
2020-05-20 14:21:08 +00:00
2020-05-25 21:10:21 +00:00
return () => (
<div class="sb-main">
2020-05-27 13:57:57 +00:00
<SbBlock
block={props.block}
2021-02-22 18:13:37 +00:00
onUpdate={props.onUpdate}
2020-05-27 13:57:57 +00:00
/>
</div>
2020-05-20 14:21:08 +00:00
);
},
});