| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- import React, { useState } from 'react';
- import { Button, Form, Header, Segment } from 'semantic-ui-react';
- import { API, showError, showSuccess } from '../../helpers';
- import { CHANNEL_OPTIONS } from '../../constants';
- const AddChannel = () => {
- const originInputs = {
- name: '',
- type: 1,
- key: '',
- base_url: '',
- };
- const [inputs, setInputs] = useState(originInputs);
- const { name, type, key } = inputs;
- const handleInputChange = (e, { name, value }) => {
- setInputs((inputs) => ({ ...inputs, [name]: value }));
- };
- const submit = async () => {
- if (inputs.name === '' || inputs.key === '') return;
- if (inputs.base_url.endsWith('/')) {
- inputs.base_url = inputs.base_url.slice(0, inputs.base_url.length - 1);
- }
- const res = await API.post(`/api/channel/`, inputs);
- const { success, message } = res.data;
- if (success) {
- showSuccess('渠道创建成功!');
- setInputs(originInputs);
- } else {
- showError(message);
- }
- };
- return (
- <>
- <Segment>
- <Header as='h3'>创建新的渠道</Header>
- <Form autoComplete='new-password'>
- <Form.Field>
- <Form.Select
- label='类型'
- name='type'
- options={CHANNEL_OPTIONS}
- value={inputs.type}
- onChange={handleInputChange}
- />
- </Form.Field>
- {
- type === 8 && (
- <Form.Field>
- <Form.Input
- label='Base URL'
- name='base_url'
- placeholder={'请输入自定义渠道的 Base URL,例如:https://openai.justsong.cn'}
- onChange={handleInputChange}
- value={inputs.base_url}
- autoComplete='new-password'
- />
- </Form.Field>
- )
- }
- <Form.Field>
- <Form.Input
- label='名称'
- name='name'
- placeholder={'请输入名称'}
- onChange={handleInputChange}
- value={name}
- autoComplete='new-password'
- required
- />
- </Form.Field>
- <Form.Field>
- <Form.Input
- label='密钥'
- name='key'
- placeholder={'请输入密钥'}
- onChange={handleInputChange}
- value={key}
- // type='password'
- autoComplete='new-password'
- required
- />
- </Form.Field>
- <Button type={'submit'} onClick={submit}>
- 提交
- </Button>
- </Form>
- </Segment>
- </>
- );
- };
- export default AddChannel;
|