import { computed, defineComponent, PropType, } from '@vue/composition-api'; import { Block, useDynamicBlocks, useActivation, SbMode, } from '@components/TreeElement'; import SbButton from './Button'; import './Block.scss'; interface BlockProps { block: Block; eventUpdate: (b?: Block) => void; eventInsertBlock: (b?: Block) => void; eventAppendBlock: (b?: Block) => void; eventRemoveBlock: () => void; } export default defineComponent({ name: 'sb-block', props: { block: { type: (null as unknown) as PropType, required: true, }, eventUpdate: { type: Function, default: () => {} }, eventInsertBlock: { type: Function, default: () => {} }, eventAppendBlock: { type: Function, default: () => {} }, eventRemoveBlock: { type: Function, default: () => {} }, }, setup(props: BlockProps, context) { const { isActive, activate } = useActivation(props.block.blockId); const { mode, getBlock } = useDynamicBlocks(); const classes = computed(() => ({ 'sb-block': true, 'sb-block_active': isActive.value, })); const onChildUpdate = (updated: {[key: string]: any}) => { props.eventUpdate({ ...props.block, data: { ...props.block.data, ...updated, }, }); }; const BlockComponent = getBlock(props.block.name) as any; if (mode.value === SbMode.Display) { return () => ( ); } return () => (
x
> <
{ $event.stopPropagation(); activate(); }, ...context.listeners, }, }} />
); }, });