pickup-grid-view.tsx 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
import { IModal } from '@ibiz-template/runtime';
import { usePickupGridViewController } from '@ibiz-template/vue-util';
import { defineComponent, getCurrentInstance, PropType } from 'vue';

export const PickupGridView = defineComponent({
  props: {
    context: Object as PropType<IContext>,
    params: { type: Object as PropType<IParams>, default: () => ({}) },
    modelPath: { type: String, required: true },
    modal: { type: Object as PropType<IModal> },
11
    noLoadDefault: { type: Boolean, required: false },
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
  },
  setup(props) {
    const { proxy } = getCurrentInstance()!;

    const c = usePickupGridViewController(proxy, props.modelPath);

    return { c };
  },
  render(h) {
    let gridComponent = null;
    if (this.c.complete) {
      const { grid } = this.c.model;
      if (this.c.providers[grid.name]) {
        gridComponent = h(this.c.providers[grid.name].component, {
          props: {
            modelData: grid,
            context: this.c.context,
            params: this.c.params,
            'grid-row-active-mode': this.c.model.gridRowActiveMode,
          },
          on: {
            neuronInit: this.c.nerve.onNeuronInit(grid.name),
          },
        });
      }
    }
    return <md-view-base controller={this.c}>{gridComponent}</md-view-base>;
  },
});