import { computed, defineComponent, onBeforeUnmount, watchEffect } from 'vue';
import { useInjectTable } from '../context/TableContext';

export interface SummaryProps {
  fixed?: boolean | 'top' | 'bottom';
}

let indexGuid = 0;
const Summary = defineComponent<SummaryProps>({
  name: 'Summary',
  props: ['fixed'] as any,
  setup(props, { slots }) {
    const tableContext = useInjectTable();
    const uniKey = `table-summary-uni-key-${++indexGuid}`;
    const fixed = computed(() => (props.fixed as string) === '' || props.fixed);
    watchEffect(() => {
      tableContext.summaryCollect(uniKey, fixed.value);
    });
    onBeforeUnmount(() => {
      tableContext.summaryCollect(uniKey, false);
    });
    return () => slots.default?.();
  },
});

export default Summary;