index.ts
1.63 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
import { ExternalCategoryComponentEnum } from '../../../enum/category';
import { useCreateNodeKey } from '../../../hook/useCreateNodeKey';
import type { NodeItemConfigType } from '../../../types/node';
import { RuleNodeTypeEnum } from '../../index.type';
import { useI18n } from '/@/hooks/web/useI18n';
const keys = useCreateNodeKey(ExternalCategoryComponentEnum.SEND_EMAIL);
const { t } = useI18n(); // 加载国际化
export interface SendEmailDataType {
  someConfiguration?: Recordable;
}
export const SendEmailConfig: NodeItemConfigType = {
  ...keys,
  clazz: 'org.thingsboard.rule.engine.mail.TbSendEmailNode',
  categoryType: RuleNodeTypeEnum.EXTERNAL,
  name: t('rule.chain.external.sendEmail.name'),
  configurationDescriptor: {
    nodeDefinition: {
      details: t('rule.chain.external.sendEmail.details'),
      description: t('rule.chain.external.sendEmail.description'),
      inEnabled: true,
      outEnabled: true,
      relationTypes: ['Success', 'Failure'],
      customRelations: false,
      ruleChainNode: false,
      defaultConfiguration: {
        useSystemSmtpSettings: true,
        smtpHost: 'localhost',
        smtpPort: 25,
        username: null,
        password: null,
        smtpProtocol: 'smtp',
        timeout: 10000,
        enableTls: false,
        tlsVersion: 'TLSv1.2',
        enableProxy: false,
        proxyHost: null,
        proxyPort: null,
        proxyUser: null,
        proxyPassword: null,
      },
      uiResources: ['static/rulenode/rulenode-core-config.js'],
      configDirective: 'tbActionNodeSendEmailConfig',
      icon: 'material-symbols:send',
      iconUrl: '',
      docUrl: '',
    },
  },
};