feat: add allowed models

This commit is contained in:
jialin
2025-10-13 15:21:17 +08:00
parent bcd1a339f9
commit 1fa2124efd
10 changed files with 311 additions and 227 deletions
@@ -0,0 +1,51 @@
import TransferInner from '@/pages/_components/transfer';
import { queryModelsList } from '@/pages/llmodels/apis';
import { Form } from 'antd';
import { useEffect, useState } from 'react';
const AllowModelsForm: React.FC = () => {
const form = Form.useFormInstance();
const targetKeys = Form.useWatch('allowed_model_names', form);
const [modelList, setModelList] = useState<{ key: string; title: string }[]>(
[]
);
const [queryParams, setQueryParams] = useState<Global.SearchParams>({
page: 1,
perPage: 100
});
const getModelList = async () => {
try {
const res = await queryModelsList(queryParams);
const options = res.items.map((item) => ({
title: item.name,
key: item.name
}));
setModelList(options);
} catch (error) {}
};
useEffect(() => {
getModelList();
}, []);
return (
<Form.Item name="allowed_model_names">
<TransferInner
dataSource={modelList}
targetKeys={targetKeys}
onChange={(nextTargetKeys) => {
form.setFieldsValue({ allowed_model_names: nextTargetKeys });
}}
render={(item) => item.title}
titles={['Available Models', 'Allowed Models']}
showSearch
filterOption={(inputValue, item) =>
item.title.toLowerCase().includes(inputValue.toLowerCase())
}
></TransferInner>
</Form.Item>
);
};
export default AllowModelsForm;
@@ -0,0 +1,212 @@
import CopyButton from '@/components/copy-button';
import ModalFooter from '@/components/modal-footer';
import ScrollerModal from '@/components/scroller-modal';
import SealInput from '@/components/seal-form/seal-input';
import SealSelect from '@/components/seal-form/seal-select';
import { PageAction } from '@/config';
import { PageActionType } from '@/config/types';
import { useIntl } from '@umijs/max';
import { Button, Form, Tag } from 'antd';
import dayjs from 'dayjs';
import { useEffect, useState } from 'react';
import { createApisKey } from '../../apis';
import { expirationOptions } from '../../config';
import { FormData, ListItem } from '../../config/types';
import AllowModelsForm from './allow-models';
type AddModalProps = {
title: string;
action: PageActionType;
open: boolean;
currentData?: Partial<ListItem> | null;
onOk: () => void;
onCancel: () => void;
};
const AddModal: React.FC<AddModalProps> = ({
title,
action,
open,
currentData,
onOk,
onCancel
}) => {
const [form] = Form.useForm();
const intl = useIntl();
const [showKey, setShowKey] = useState(false);
const [apikeyValue, setAPIKeyValue] = useState('');
const [loading, setLoading] = useState(false);
const initValues = () => {
if (action === PageAction.CREATE && open) {
form.setFieldsValue({
expires_in: 1
});
}
};
useEffect(() => {
initValues();
}, [open]);
const getExpireValue = (val: number | null) => {
const expires_in = val;
if (expires_in === -1) {
return 0;
}
const selected = expirationOptions.find(
(item) => expires_in === item.value
);
const d1 = dayjs().add(
selected?.value as number,
`${selected?.type}` as never
);
const d2 = dayjs();
const res = d1.diff(d2, 'second');
return res;
};
const handleOnOk = async (data: FormData) => {
try {
setLoading(true);
const params = {
...data,
expires_in: getExpireValue(data.expires_in)
};
const res = await createApisKey({ data: params });
setAPIKeyValue(res.value);
setShowKey(true);
setLoading(false);
} catch (error) {
setLoading(false);
}
};
const handleSumit = () => {
form.submit();
};
const handleDone = () => {
onOk();
};
const handleAfterOpenChange = (isOpen: boolean) => {
setShowKey(false);
};
return (
<ScrollerModal
title={
!showKey ? title : intl.formatMessage({ id: 'apikeys.title.save' })
}
open={open}
centered={true}
onOk={handleSumit}
onCancel={onCancel}
afterOpenChange={handleAfterOpenChange}
destroyOnHidden={true}
closeIcon={false}
maskClosable={false}
keyboard={false}
width={600}
styles={{}}
footer={
!showKey ? (
<ModalFooter
onOk={handleSumit}
onCancel={onCancel}
loading={loading}
></ModalFooter>
) : (
<Button type="primary" onClick={handleDone}>
{intl.formatMessage({ id: 'common.button.done' })}
</Button>
)
}
>
<Form name="addAPIKey" form={form} onFinish={handleOnOk} preserve={false}>
{!showKey ? (
<>
<Form.Item<FormData>
name="name"
rules={[
{
required: true,
message: intl.formatMessage(
{ id: 'common.form.rule.input' },
{
name: intl.formatMessage({ id: 'common.table.name' })
}
)
}
]}
>
<SealInput.Input
label={intl.formatMessage({ id: 'common.table.name' })}
required
></SealInput.Input>
</Form.Item>
<Form.Item<FormData>
name="expires_in"
rules={[
{
required: true,
message: intl.formatMessage(
{ id: 'common.form.rule.select' },
{
name: intl.formatMessage({
id: 'apikeys.form.expiretime'
})
}
)
}
]}
>
<SealSelect
options={expirationOptions}
label={intl.formatMessage({ id: 'apikeys.form.expiretime' })}
required
></SealSelect>
</Form.Item>
<AllowModelsForm></AllowModelsForm>
<Form.Item<FormData>
name="description"
rules={[{ required: false }]}
>
<SealInput.TextArea
label={intl.formatMessage({ id: 'common.table.description' })}
></SealInput.TextArea>
</Form.Item>
</>
) : (
<Form.Item>
<div>
<Tag
bordered={false}
color="error"
style={{ padding: '6px 8px', marginBottom: 16 }}
>
{intl.formatMessage({ id: 'apikeys.table.save.tips' })}
</Tag>
</div>
<SealInput.Input
label={intl.formatMessage({ id: 'apikeys.form.apikey' })}
value={apikeyValue}
addAfter={
<CopyButton
text={apikeyValue}
shape="default"
size="middle"
type="text"
></CopyButton>
}
></SealInput.Input>
</Form.Item>
)}
</Form>
</ScrollerModal>
);
};
export default AddModal;