import { BasicColumn, FormSchema, useRender } from '@/components/Table'
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
import { listSimpleDept } from '@/api/system/dept'
import { SystemDataScopeEnum } from '@/enums/systemEnum'

export const columns: BasicColumn[] = [
  {
    title: '角色编号',
    dataIndex: 'id',
    width: 120
  },
  {
    title: '角色名称',
    dataIndex: 'name',
    width: 150
  },
  {
    title: '角色标识',
    dataIndex: 'code',
    width: 150
  },
  {
    title: '角色类型',
    dataIndex: 'type',
    width: 150,
    customRender: ({ text }) => {
      return useRender.renderDict(text, DICT_TYPE.SYSTEM_ROLE_TYPE)
    }
  },
  {
    title: '显示顺序',
    dataIndex: 'sort',
    width: 120
  },
  {
    title: '状态',
    dataIndex: 'status',
    width: 180,
    customRender: ({ text }) => {
      return useRender.renderDict(text, DICT_TYPE.COMMON_STATUS)
    }
  },
  {
    title: '创建时间',
    dataIndex: 'createTime',
    width: 180,
    customRender: ({ text }) => {
      return useRender.renderDate(text)
    }
  }
]

export const searchFormSchema: FormSchema[] = [
  {
    label: '角色名称',
    field: 'name',
    component: 'Input',
    colProps: { span: 8 }
  },
  {
    label: '角色标识',
    field: 'code',
    component: 'Input',
    colProps: { span: 8 }
  },
  {
    label: '状态',
    field: 'status',
    component: 'Select',
    componentProps: {
      options: getIntDictOptions(DICT_TYPE.COMMON_STATUS)
    },
    colProps: { span: 8 }
  },
  {
    label: '创建时间',
    field: 'createTime',
    component: 'RangePicker',
    colProps: { span: 8 }
  }
]

export const formSchema: FormSchema[] = [
  {
    label: '编号',
    field: 'id',
    show: false,
    component: 'Input'
  },
  {
    label: '角色名称',
    field: 'name',
    required: true,
    component: 'Input'
  },
  {
    label: '角色标识',
    field: 'code',
    required: true,
    component: 'Input'
  },
  {
    label: '角色顺序',
    field: 'sort',
    required: true,
    component: 'InputNumber'
  },
  {
    label: '状态',
    field: 'status',
    component: 'Select',
    defaultValue: 0,
    componentProps: {
      options: getIntDictOptions(DICT_TYPE.COMMON_STATUS)
    }
  },
  {
    label: '备注',
    field: 'remark',
    component: 'InputTextArea'
  }
]

export const dataScopeFormSchema: FormSchema[] = [
  {
    label: '编号',
    field: 'id',
    show: false,
    component: 'Input'
  },
  {
    label: '角色名称',
    field: 'name',
    dynamicDisabled: true,
    component: 'Input'
  },
  {
    label: '角色标识',
    field: 'code',
    dynamicDisabled: true,
    component: 'Input'
  },
  {
    label: '权限范围',
    field: 'dataScope',
    required: true,
    component: 'Select',
    componentProps: {
      options: getIntDictOptions(DICT_TYPE.SYSTEM_DATA_SCOPE)
    }
  },
  {
    label: '数据权限',
    field: 'status',
    component: 'ApiTreeSelect',
    ifShow: ({ values }) => values.dataScope === SystemDataScopeEnum.DEPT_CUSTOM,
    componentProps: {
      api: () => listSimpleDept(),
      fieldNames: {
        label: 'name',
        key: 'id',
        value: 'id'
      },
      handleTree: 'id'
    }
  }
]