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; onUpdate: (b?: Block) => void; onPrependBlock: (b?: Block) => void; onAppendBlock: (b?: Block) => void; onRemoveSelf: () => void; onMoveBackward: () => void; onMoveForward: () => void; onActivateNext: () => void; onActivatePrevious: () => 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, }, onUpdate: { type: Function, default: () => {} }, onPrependBlock: { type: Function, default: () => {} }, onAppendBlock: { type: Function, default: () => {} }, onRemoveSelf: { type: Function, default: () => {} }, onMoveBackward: { type: Function, default: () => {} }, onMoveForward: { 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.onUpdate({ ...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} />
; }; }, });