config.data.ts 12.9 KB
1 2 3 4 5 6 7 8 9 10 11 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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
import { ref } from 'vue';
import { BasicColumn, FormSchema } from '/@/components/Table';
import type { FormSchema as QFormSchema } from '/@/components/Form/index';
import moment from 'moment';
import { getOrganizationList } from '/@/api/system/system';
import { copyTransFun } from '/@/utils/fnUtils';
import { findDictItemByCode } from '/@/api/system/dict';
import { isTiming, isWeek, isMonth, isFixedTime } from './timeConfig';
import { AggregateDataEnum } from '../../device/localtion/cpns/TimePeriodForm/config';
import { Moment } from 'moment';
import {
  getPacketIntervalByRange,
  getPacketIntervalByValue,
  intervalOption,
} from '../../device/localtion/cpns/TimePeriodForm/helper';

export enum QueryWay {
  LATEST = 'latest',
  TIME_PERIOD = 'timePeriod',
}
export enum SchemaFiled {
  WAY = 'queryMode',
  TIME_PERIOD = 'timePeriod',
  KEYS = 'keys',
  DATE_RANGE = 'dataRange',
  START_TS = 'startTs',
  END_TS = 'endTs',
  INTERVAL = 'interval',
  LIMIT = 'limit',
  AGG = 'agg',
  ORDER_BY = 'orderBy',
}
export const organizationId = ref('');
// 表格配置
export const columns: BasicColumn[] = [
  {
    title: '配置名称',
    dataIndex: 'name',
    width: 120,
  },
  {
    title: '所属组织',
    dataIndex: 'organizationDTO.name',
    width: 120,
  },
  {
    title: '数据类型',
    dataIndex: 'dataType',
    width: 120,
    format: (_text: string, record: Recordable) => {
      return record.dataType === 0 ? '原始数据' : '聚合数据';
    },
  },
  {
    title: '配置状态',
    dataIndex: 'status',
    width: 120,
    slots: { customRender: 'status' },
  },
  {
    title: '执行方式',
    dataIndex: 'executeWay',
    width: 160,
    format: (_text: string, record: Recordable) => {
      return record.executeWay === 0 ? '立即执行' : '定时执行';
    },
  },
  {
    title: '执行设备',
    dataIndex: 'devices',
    width: 160,
    slots: { customRender: 'doDeviceSlot' },
  },
  {
    title: '创建人',
    dataIndex: 'createUserName',
    width: 180,
  },
  {
    title: '创建日期',
    dataIndex: 'createTime',
    width: 180,
  },
];
export const viewDeviceColumn: BasicColumn[] = [
  {
    title: '设备',
    dataIndex: 'device',
    width: 80,
  },
  {
    title: '属性',
    dataIndex: 'attribute',
    width: 120,
  },
];

// 查询配置
export const searchFormSchema: FormSchema[] = [
  {
    field: 'name',
    label: '配置名称',
    component: 'Input',
    colProps: { span: 6 },
    componentProps: {
      maxLength: 36,
      placeholder: '请输入配置名称',
    },
  },
  {
    field: 'status',
    label: '配置状态',
    component: 'Select',
    colProps: { span: 6 },
    componentProps: {
      options: [
        {
          label: '启用',
          value: 1,
        },
        {
          label: '禁用',
          value: 0,
        },
      ],
      placeholder: '请选择配置状态',
    },
  },
  {
    field: 'sendTime',
    label: '创建时间',
    component: 'RangePicker',
    componentProps: {
      showTime: {
        defaultValue: [moment('00:00:00', 'HH:mm:ss'), moment('23:59:59', 'HH:mm:ss')],
      },
    },
    colProps: { span: 6 },
  },
];

// 新增编辑配置
export const formSchema: QFormSchema[] = [
  {
    field: 'name',
    label: '报表名称',
    colProps: { span: 24 },
    required: true,
    component: 'Input',
    componentProps: {
      maxLength: 255,
      placeholder: '请输入报表名称',
    },
  },
  {
    field: 'organizationId',
    label: '所属组织',
    colProps: { span: 24 },
    component: 'ApiTreeSelect',
    required: true,
    componentProps: () => {
      return {
        maxLength: 250,
        placeholder: '请选择所属组织',
        api: async () => {
          const data = await getOrganizationList();
          copyTransFun(data as any as any[]);
          return data;
        },
        async onChange(e) {
          organizationId.value = e;
        },
      };
    },
  },
  {
    field: 'remark',
    label: '描述',
    colProps: { span: 24 },
    component: 'InputTextArea',
    componentProps: {
      maxLength: 255,
      placeholder: '请输入描述',
    },
  },
  {
    field: 'executeWay',
    component: 'RadioGroup',
    label: '执行方式',
    colProps: {
      span: 24,
    },
    defaultValue: 0,
    componentProps: ({ formActionType }) => {
      const { updateSchema, setFieldsValue } = formActionType;
      const options = [
        {
          label: '立即执行',
          value: 0,
        },
        {
          label: '定时执行',
          value: 1,
        },
      ];
      return {
        options,
        placeholder: '请选择执行方式',
        onChange(e) {
          let dataCompareOpions: any = [];
          setFieldsValue({
            startTs: 1000,
            interval: 1000,
          });
          if (e.target.value == 0) {
            setFieldsValue({ queryMode: QueryWay.LATEST });
            dataCompareOpions = [
              { label: '固定周期', value: QueryWay.LATEST },
              { label: '自定义周期', value: QueryWay.TIME_PERIOD },
            ];
            updateSchema({
              field: SchemaFiled.WAY,
              componentProps: {
                options: dataCompareOpions,
              },
            });
          } else {
            setFieldsValue({ queryMode: QueryWay.LATEST });
            dataCompareOpions = [{ label: '固定周期', value: QueryWay.LATEST }];
            updateSchema({
              defaultValue: QueryWay.LATEST,
              field: SchemaFiled.WAY,
              componentProps: {
                options: dataCompareOpions,
              },
            });
          }
        },
        maxLength: 250,
      };
    },
  },
  {
    field: 'timeWeek',
    component: 'Select',
    label: '周期',
    required: true,
    colProps: { span: 24 },
    defaultValue: 'day',
    componentProps: {
      placeholder: '请选择周期',
      options: [
        { label: '每日', value: 'day' },
        { label: '每周', value: 'week' },
        { label: '每月', value: 'month' },
      ],
    },
    ifShow: ({ values }) => isTiming(values.executeWay),
  },
  {
    field: 'cronWeek',
    component: 'ApiSelect',
    label: '每周',
    required: true,
    colProps: { span: 24 },
    defaultValue: '0 0 0 ? * 1',
    componentProps: {
      placeholder: '请选择周期',
      api: findDictItemByCode,
      params: {
        dictCode: 'every_week',
      },
      labelField: 'itemText',
      valueField: 'itemValue',
    },
    ifShow: ({ values }) => isWeek(values.timeWeek),
  },
  {
    field: 'cronYear',
    component: 'ApiSelect',
    label: '每月',
    required: true,
    colProps: { span: 24 },
    defaultValue: '0 0 0 1 * ? *',
    componentProps: {
      placeholder: '请选择月份',
      api: findDictItemByCode,
      params: {
        dictCode: 'every_month',
      },
      labelField: 'itemText',
      valueField: 'itemValue',
    },
    ifShow: ({ values }) => isMonth(values.timeWeek),
  },
  {
    field: 'cronTime',
    component: 'ApiSelect',
    label: '时间',
    required: true,
    colProps: { span: 24 },
    defaultValue: '0 0 0  * * ?',
    componentProps: {
      placeholder: '请选择时间',
      api: findDictItemByCode,
      params: {
        dictCode: 'every_day',
      },
      labelField: 'itemText',
      valueField: 'itemValue',
    },
    ifShow: ({ values }) => isTiming(values.executeWay),
  },
  {
    field: 'devices',
    label: '设备',
    helpMessage: ['报表配置只对拥有"数值型"属性的设备才能配置'],
    component: 'Select',
    slot: 'devices',
    colProps: { span: 24 },
  },
  {
    field: 'dataType',
    label: '数据类型',
    required: true,
    component: 'Select',
    componentProps: ({ formActionType }) => {
      const { updateSchema, setFieldsValue } = formActionType;
      const options = [
        { label: '原始数据', value: 0 },
        { label: '聚合数据', value: 1 },
      ];
      return {
        options,
        onSelect(e) {
          let dataCompareOpions: any = [];
          if (e == 0) {
            setFieldsValue({ agg: 'NONE' });
            dataCompareOpions = [{ label: '空', value: AggregateDataEnum.NONE }];
            updateSchema({
              field: SchemaFiled.AGG,
              componentProps: {
                options: dataCompareOpions,
              },
            });
          } else {
            setFieldsValue({ agg: '' });
            dataCompareOpions = [
              { label: '最小值', value: AggregateDataEnum.MIN },
              { label: '最大值', value: AggregateDataEnum.MAX },
              { label: '平均值', value: AggregateDataEnum.AVG },
              { label: '求和', value: AggregateDataEnum.SUM },
              { label: '计数', value: AggregateDataEnum.COUNT },
            ];
            updateSchema({
              field: SchemaFiled.AGG,
              componentProps: {
                options: dataCompareOpions,
              },
            });
          }
        },
        maxLength: 250,
        placeholder: '请选择属性性质',
      };
    },
    colProps: { span: 24 },
  },
  {
    field: SchemaFiled.AGG,
    label: '聚合条件',
    component: 'Select',
    required: true,
    componentProps: {
      placeholder: '请选择聚合条件',
      getPopupContainer: () => document.body,
    },
  },
  {
    field: 'limit',
    required: true,
    label: '最大条数',
    component: 'InputNumber',
    defaultValue: 100,
    ifShow({ values }) {
      return values[SchemaFiled.AGG] === AggregateDataEnum.NONE;
    },
    colProps: { span: 12 },
    componentProps: {
      placeholder: '请输入最大条数',
      min: 7,
      max: 50000,
    },
  },
  {
    field: SchemaFiled.WAY,
    label: '查询周期',
    component: 'RadioGroup',
    defaultValue: QueryWay.LATEST,
    required: true,
    componentProps({ formActionType }) {
      const { setFieldsValue } = formActionType;
      return {
        placeholder: '请选择查询周期',
        options: [
          { label: '固定周期', value: QueryWay.LATEST },
          { label: '自定义周期', value: QueryWay.TIME_PERIOD },
        ],
        onChange(value) {
          console.log(value);
          value === QueryWay.LATEST
            ? setFieldsValue({
                [SchemaFiled.DATE_RANGE]: [],
                [SchemaFiled.START_TS]: null,
                [SchemaFiled.END_TS]: null,
              })
            : setFieldsValue({ [SchemaFiled.START_TS]: null });
        },
      };
    },
  },
  {
    field: SchemaFiled.DATE_RANGE,
    label: '时间段',
    component: 'RangePicker',
    required: true,
    ifShow({ values }) {
      return values[SchemaFiled.WAY] === QueryWay.TIME_PERIOD && !isFixedTime(values.executeWay);
    },
    componentProps: {
      showTime: {
        defaultValue: [moment('00:00:00', 'HH:mm:ss'), moment('23:59:59', 'HH:mm:ss')],
      },
    },
    // componentProps({ formActionType }) {
    //   const { setFieldsValue } = formActionType;
    //   let dates: Moment[] = [];
    //   return {
    //     placeholder: ['请选择开始时间', '请选择结束时间'],
    //     showTime: {
    //       defaultValue: [moment('00:00:00', 'HH:mm:ss'), moment('23:59:59', 'HH:mm:ss')],
    //     },
    //     // onCalendarChange(value: Moment[]) {
    //     //   dates = value;
    //     // },
    //     // disabledDate(current: Moment) {
    //     //   if (!dates || dates.length === 0 || !current) {
    //     //     return false;
    //     //   }
    //     //   const diffDate = current.diff(dates[0], 'years', true);
    //     //   return Math.abs(diffDate) > 1;
    //     // },
    //     onChange() {
    //       dates = [];
    //       setFieldsValue({ [SchemaFiled.INTERVAL]: null });
    //     },
    //   };
    // },
    colProps: {
      span: 10,
    },
  },
  {
    field: SchemaFiled.START_TS,
    label: '时间周期',
    component: 'Select',
    required: true,
    ifShow({ values }) {
      return values[SchemaFiled.WAY] == QueryWay.LATEST;
    },
    componentProps({ formActionType }) {
      const { setFieldsValue } = formActionType;
      return {
        defaultValue: 1000,
        placeholder: '请选择时间周期',
        options: intervalOption,
        onChange() {
          setFieldsValue({ [SchemaFiled.INTERVAL]: null });
        },
      };
    },
  },
  {
    field: SchemaFiled.INTERVAL,
    label: '间隔时间',
    component: 'Select',
    required: true,
    ifShow({ values }) {
      return values[SchemaFiled.WAY] == QueryWay.LATEST;
    },
    componentProps({ formModel, formActionType }) {
      const options =
        formModel[SchemaFiled.WAY] === QueryWay.LATEST
          ? getPacketIntervalByValue(formModel[SchemaFiled.START_TS])
          : getPacketIntervalByRange(formModel[SchemaFiled.DATE_RANGE]);
      if (formModel[SchemaFiled.AGG] !== AggregateDataEnum.NONE) {
        formActionType.setFieldsValue({ [SchemaFiled.LIMIT]: null });
      }
      return {
        placeholder: '请选择间隔时间',
        options,
      };
    },
  },
];