1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /*
- * <<
- * Davinci
- * ==
- * Copyright (C) 2016 - 2017 EDP
- * ==
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * >>
- */
- import React, {
- useImperativeHandle,
- forwardRef
- } from 'react'
- import { Form, Row, Col, Input, Select, Icon, InputNumber, Spin } from 'antd'
- const FormItem = Form.Item
- const { Option } = Select
- // validate http/https
- // const URL_REG = /(https?):\/\/[-A-Za-z0-9+&@#/%?=~_|!:,.;]+[-A-Za-z0-9+&@#/%=~_|]/
- import { FormComponentProps } from 'antd/lib/form'
- import { IScheduleWeChatWorkConfig } from './types'
- import {
- FormItemStyle,
- LongFormItemStyle
- } from './constants'
- interface IScheduleWeChatWorkConfigProps
- extends FormComponentProps<IScheduleWeChatWorkConfig> {
- config: IScheduleWeChatWorkConfig
- }
- export const ScheduleWeChatWorkConfig: React.FC<IScheduleWeChatWorkConfigProps> = (
- props,
- ref
- ) => {
- const { form, config } = props
- const { getFieldDecorator } = form
- useImperativeHandle(ref, () => ({ form }))
- return (
- <Form>
- <FormItem label="机器人webhook地址" {...LongFormItemStyle}>
- {getFieldDecorator<IScheduleWeChatWorkConfig>('webHookUrl', {
- rules: [{ required: true, message: 'webhook地址不能为空' }],
- initialValue: config.webHookUrl
- })(<Input />)}
- </FormItem>
- <Row>
- <Col span={12}>
- <FormItem label="文件类型" {...FormItemStyle}>
- {getFieldDecorator<IScheduleWeChatWorkConfig>('type', {
- rules: [{ required: true }],
- initialValue: config.type
- })(
- <Select>
- <Option value="image">图片</Option>
- </Select>
- )}
- </FormItem>
- </Col>
- <Col span={12}>
- {form.getFieldValue('type') !== 'excel' && (
- <FormItem label="图片宽度" {...FormItemStyle}>
- {getFieldDecorator<IScheduleWeChatWorkConfig>('imageWidth', {
- rules: [{ required: true }],
- initialValue: config.imageWidth || 1920
- })(<InputNumber min={100} />)}{' '}
- 像素
- </FormItem>
- )}
- </Col>
- </Row>
- </Form>
- )
- }
- export default Form.create<IScheduleWeChatWorkConfigProps>()(
- forwardRef(ScheduleWeChatWorkConfig)
- )
|