import { defineComponent, computed, watch, PropType, ref, Ref, } from 'vue'; import { Block } from '../blocks'; import { SbMode } from '../mode'; import { useResizeObserver, BlockDimensions } from '../use-resize-observer'; import { useActivation } from '../use-activation'; import { useDynamicBlocks } from '../use-dynamic-blocks'; import { SbBlockOrdering } from './BlockOrdering'; import SbMissingBlock from './BlockMissing/index'; import './Block.scss'; interface BlockProps { block: Block; eventUpdate: (b?: Block) => void; eventPrependBlock: (b?: Block) => void; eventAppendBlock: (b?: Block) => void; eventRemoveBlock: () => void; eventMoveUp: () => void; eventMoveDown: () => void; sortable: string; } export const SbBlock = defineComponent({ name: 'sb-block', props: { block: { type: (null as unknown) as PropType, required: true, }, sortable: { type: String, default: null, }, eventUpdate: { type: Function, default: () => {} }, eventPrependBlock: { type: Function, default: () => {} }, eventAppendBlock: { type: Function, default: () => {} }, eventRemoveBlock: { type: Function, default: () => {} }, eventMoveUp: { type: Function, default: () => {} }, eventMoveDown: { type: Function, default: () => {} }, }, setup(props: BlockProps, context) { const el: Ref = ref(null); const { mode, getBlock } = useDynamicBlocks(); const { isActive, activate } = useActivation(props.block.blockId); const classes = computed(() => ({ 'sb-block': true, 'sb-block_active': isActive.value, })); const { triggerSizeCalculation } = useResizeObserver(el, BlockDimensions); watch(() => props.block.data, triggerSizeCalculation); const onChildUpdate = (updated: {[key: string]: any}) => { props.eventUpdate({ ...props.block, data: { ...props.block.data, ...updated, }, }); }; return () => { const BlockComponent = getBlock(props.block.name) as any; if (!BlockComponent) { const MissingBlock = SbMissingBlock[mode.value]; return ; } if (mode.value === SbMode.Display) { return () => ( ); } return
{context.slots['context-toolbar'] ? context.slots['context-toolbar']() : null} { $event.stopPropagation(); activate(); }} {...context.attrs} />
; }; }, });