config.ts 14.8 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 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
import { FormSchema, useComponentRegister } from '/@/components/Form';

import CreateSpeed from './createSpeed.vue';
useComponentRegister('CreateSpeed', CreateSpeed);

export const entityFormSchema: FormSchema[] = [
  {
    field: 'maxDevices',
    required: true,

    label: '最大设备数',
    component: 'InputNumber',
    defaultValue: '0',
    colProps: { span: 12 },
    componentProps: {
      placeholder: '请输入最大设备数(请输入数字)',
    },
  },

  {
    field: 'maxDashboards',
    required: true,
    defaultValue: '0',
    label: '最大仪表板数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入仪表板的最大数量(请输入数字)',
    },
  },
  {
    field: 'maxAssets',
    required: true,
    defaultValue: '0',
    label: '最大资产数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大资产(请输入数字)',
    },
  },
  {
    field: 'maxUsers',
    required: true,
    defaultValue: '0',
    label: '最大用户数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大用户数(请输入数字)',
    },
  },
  {
    field: 'maxCustomers',
    required: true,
    defaultValue: '0',

    label: '最大客户数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大客户数(请输入数字)',
    },
  },
  {
    field: 'maxRuleChains',
    required: true,
    defaultValue: '0',
    label: '最大规则链数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大规则链数(请输入数字)',
    },
  },
];

export const ruleEngineSchema: FormSchema[] = [
  {
    field: 'maxREExecutions',
    required: true,
    defaultValue: '0',
    label: '最大规则引擎数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大规则引擎数(请输入数字)',
    },
  },
  {
    field: 'maxTransportMessages',
    required: true,
    defaultValue: '0',

    label: '最大传输消息数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大传输消息数(请输入数字)',
    },
  },
  {
    field: 'maxJSExecutions',
    required: true,
    defaultValue: '0',

    label: '最大JavaScript执行数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大JavaScript执行数(请输入数字)',
    },
  },
  {
    field: 'maxTbelExecutions',
    required: true,
    defaultValue: '0',
    label: '最大TBEL执行数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大TBEL执行数(请输入数字)',
    },
  },
  {
    field: 'maxRuleNodeExecutionsPerMessage',
    required: true,
    defaultValue: '0',
    label: '每条消息的最大规则节点执行数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入每条消息的最大规则节点执行数(请输入数字)',
    },
  },
  {
    field: 'maxTransportDataPoints',
    required: true,
    defaultValue: '0',
    label: '最大传输数据点数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大传输数据点数(请输入数字)',
    },
  },
];

export const ttlSchema: FormSchema[] = [
  {
    field: 'maxDPStorageDays',
    required: true,
    defaultValue: '0',
    label: '最大存储点天',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大存储点天(请输入数字)',
    },
  },
  {
    field: 'alarmsTtlDays',
    required: true,
    defaultValue: '0',

    label: '告警TTL天数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入告警存储天数(请输入数字)',
    },
  },
  {
    field: 'defaultStorageTtlDays',
    required: true,
    defaultValue: '0',

    label: '默认存储TTL天数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入默认存储天数(请输入数字)',
    },
  },
  {
    field: 'rpcTtlDays',
    required: true,
    defaultValue: '0',

    label: 'RPC TTL天数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入RPC TTL天数(请输入数字)',
    },
  },
  {
    field: 'queueStatsTtlDays',
    required: true,
    defaultValue: '0',

    label: '队列统计信息TTL天数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入队列统计信息TTL天数(请输入数字)',
    },
  },
  {
    field: 'ruleEngineExceptionsTtlDays',
    required: true,
    defaultValue: '0',

    label: '规则引擎异常TTL天数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入规则引擎异常TTL天数(请输入数字)',
    },
  },
];

export const alarmSchema: FormSchema[] = [
  {
    field: 'smsEnabled',
    label: '启用短信',
    defaultValue: true,
    component: 'Switch',
    componentProps: ({ formActionType }) => {
      const { setFieldsValue } = formActionType;
      return {
        checkedValue: true,
        unCheckedValue: false,
        checkedChildren: '开',
        unCheckedChildren: '关',
        onChange: () => {
          setFieldsValue({
            maxSms: 0,
          });
        },
      };
    },
  },
  {
    field: 'maxSms',
    required: true,
    defaultValue: '0',
    label: '发送的最大短信数',
    colProps: { span: 12 },
    ifShow: ({ model }) => model.smsEnabled,
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入发送的最大短信数(请输入数字)',
    },
  },
  {
    field: 'maxEmails',
    required: true,
    label: '最大电子邮件发送数',
    colProps: { span: 12 },
    defaultValue: '0',
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大电子邮件发送数(请输入数字)',
    },
  },
  {
    field: 'maxCreatedAlarms',
    required: true,
    defaultValue: '0',

    label: '最大创建告警数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入最大创建告警数(请输入数字)',
    },
  },
];
export const otaSchema: FormSchema[] = [
  {
    field: 'maxResourcesInBytes',
    required: true,
    defaultValue: '0',
    label: '资源文件总大小',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },
  {
    field: 'maxOtaPackagesInBytes',
    required: true,
    defaultValue: '0',
    label: 'Ota包文件大小',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },
  {
    field: 'maxResourceSize',
    required: true,
    defaultValue: '0',
    label: '最大资源文件大小',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },
];

export const wsSchema: FormSchema[] = [
  {
    field: 'maxWsSessionsPerTenant',
    required: true,
    defaultValue: '0',
    label: '租户最大会话数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },
  {
    field: 'maxWsSubscriptionsPerTenant',
    required: true,
    defaultValue: '0',
    label: '租户最大订阅数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },
  {
    field: 'maxWsSessionsPerCustomer',
    required: true,
    defaultValue: '0',
    label: '客户最大会话数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },
  {
    field: 'maxWsSubscriptionsPerCustomer',
    required: true,
    defaultValue: '0',
    label: '客户最大订阅数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },

  {
    field: 'maxWsSessionsPerPublicUser',
    required: true,
    defaultValue: '0',
    label: '公共用户最大会话数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },
  {
    field: 'maxWsSubscriptionsPerPublicUser',
    required: true,
    defaultValue: '0',
    label: '公共用户最大订阅数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },
  {
    field: 'maxWsSessionsPerRegularUser',
    required: true,
    defaultValue: '0',
    label: '普通用户最大会话数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },
  {
    field: 'maxWsSubscriptionsPerRegularUser',
    required: true,
    defaultValue: '0',
    label: '普通用户最大订阅数',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },
  {
    field: 'wsMsgQueueLimitPerSession',
    required: true,
    defaultValue: '0',
    helpMessage: ' 队列的大小也受系统配置的限制。',
    label: '会话最大消息队列大小',
    colProps: { span: 12 },
    component: 'InputNumber',
    componentProps: {
      placeholder: '请输入(请输入数字)',
    },
  },
];

export const speedSchema: FormSchema[] = [
  {
    field: 'transportTenantMsgRateLimit',
    label: '传输租户信息',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    // defaultValue: '0',
    changeEvent: 'update:value',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '传输租户信息',
    },
  },
  {
    field: 'transportDeviceMsgRateLimit',
    label: '传输设备信息',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '传输设备信息',
    },
  },
  {
    field: 'transportTenantTelemetryMsgRateLimit',
    label: '传输租户遥测消息',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '传输租户遥测消息',
    },
  },
  {
    field: 'transportDeviceTelemetryMsgRateLimit',
    label: '传输设备遥测消息',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '传输设备遥测消息',
    },
  },
  {
    field: 'transportTenantTelemetryDataPointsRateLimit',
    label: '传输租户遥测数据点',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '传输租户遥测数据点',
    },
  },
  {
    field: 'transportDeviceTelemetryDataPointsRateLimit',
    label: '传输设备遥测数据点',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '传输设备遥测数据点',
    },
  },
  {
    field: 'tenantServerRestLimitsConfiguration',
    label: '租户REST请求',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '租户REST请求',
    },
    defaultValue: '',
  },
  {
    field: 'customerServerRestLimitsConfiguration',
    label: '客户REST请求',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '客户REST请求',
    },
    defaultValue: '',
  },
  {
    field: 'tenantEntityExportRateLimit',
    label: '实体版本创建',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '实体版本创建',
    },
  },
  {
    field: 'tenantEntityImportRateLimit',
    label: '实体版本加载',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '实体版本加载',
    },
  },
  {
    field: 'wsUpdatesPerSessionRateLimit',
    label: '会话WS更新',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '会话WS更新',
    },
    defaultValue: '',
  },
  {
    field: 'cassandraQueryTenantRateLimitsConfiguration',
    label: '租户Cassandra查询',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '租户Cassandra查询',
    },
    defaultValue: '',
  },
  {
    field: 'tenantNotificationRequestsRateLimit',
    label: '通知请求',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '通知请求',
    },
  },
  {
    field: 'tenantNotificationRequestsPerRuleRateLimit',
    label: '每个通知规则的通知请求',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: '每个通知规则的通知请求',
    },
  },
  {
    field: 'edgeEventRateLimits',
    label: 'Edge events',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: 'Edge events',
    },
  },
  {
    field: 'edgeEventRateLimitsPerEdge',
    label: 'Edge events per edge',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: 'Edge events per edge',
    },
  },
  {
    field: 'edgeUplinkMessagesRateLimits',
    label: 'Edge uplink message',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: 'Edge uplink message',
    },
  },
  {
    field: 'edgeUplinkMessagesRateLimitsPerEdge',
    label: 'Edge uplink message per edge',
    colProps: { span: 12 },
    component: 'CreateSpeed',
    componentProps: {
      placeholder: '请输入(请输入数字)',
      title: 'Edge uplink message per edge',
    },
  },
];