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

export const ListView = 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
  },
  setup(props) {
    const { proxy } = getCurrentInstance()!;

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

    return { c };
  },
  render(h) {
    let listComponent = null;
    if (this.c.complete) {
      const { list } = this.c.model;
      if (this.c.providers[list.name]) {
        listComponent = h(this.c.providers[list.name].component, {
          props: {
            modelData: list,
            context: this.c.context,
            params: this.c.params,
30
            mdCtrlActiveMode: this.c.model.mdCtrlActiveMode,
31 32 33 34 35 36 37 38 39 40
          },
          on: {
            neuronInit: this.c.nerve.onNeuronInit(list.name),
          },
        });
      }
    }
    return <md-view-base controller={this.c}>{listComponent}</md-view-base>;
  },
});