mirror of
https://gitee.com/wanwujie/sub2api-mobile
synced 2026-04-03 06:52:14 +08:00
426 lines
15 KiB
TypeScript
426 lines
15 KiB
TypeScript
import { useMutation, useQueryClient } from '@tanstack/react-query';
|
||
import { Stack, router } from 'expo-router';
|
||
import { useMemo, useState } from 'react';
|
||
import { Pressable, ScrollView, Text, TextInput, View } from 'react-native';
|
||
import { SafeAreaView } from 'react-native-safe-area-context';
|
||
|
||
import { createAccount } from '@/src/services/admin';
|
||
import type { AccountType, CreateAccountRequest } from '@/src/types/admin';
|
||
|
||
const colors = {
|
||
page: '#f4efe4',
|
||
card: '#fbf8f2',
|
||
text: '#16181a',
|
||
subtext: '#6f665c',
|
||
border: '#e7dfcf',
|
||
primary: '#1d5f55',
|
||
dark: '#1b1d1f',
|
||
errorBg: '#f7e1d6',
|
||
errorText: '#a4512b',
|
||
muted: '#f7f1e6',
|
||
};
|
||
|
||
const PLATFORM_OPTIONS = ['anthropic', 'openai', 'gemini', 'sora', 'antigravity'];
|
||
const ACCOUNT_TYPE_OPTIONS: AccountType[] = ['apikey', 'oauth', 'setup-token', 'upstream'];
|
||
type JsonScalar = string | number | boolean | null | undefined;
|
||
type JsonRecord = Record<string, JsonScalar>;
|
||
|
||
function toNumber(raw: string) {
|
||
if (!raw.trim()) return undefined;
|
||
const value = Number(raw);
|
||
return Number.isFinite(value) ? value : undefined;
|
||
}
|
||
|
||
function toGroupIds(raw: string) {
|
||
const values = raw
|
||
.split(',')
|
||
.map((item) => Number(item.trim()))
|
||
.filter((value) => Number.isFinite(value) && value > 0);
|
||
|
||
return values.length > 0 ? values : undefined;
|
||
}
|
||
|
||
function parseObjectInput(raw: string, fieldLabel: string): JsonRecord | undefined {
|
||
if (!raw.trim()) return undefined;
|
||
const parsed = JSON.parse(raw) as unknown;
|
||
if (!parsed || typeof parsed !== 'object' || Array.isArray(parsed)) {
|
||
throw new Error(`${fieldLabel} 必须是 JSON 对象。`);
|
||
}
|
||
|
||
const entries = Object.entries(parsed as Record<string, unknown>);
|
||
for (const [, value] of entries) {
|
||
const valueType = typeof value;
|
||
if (
|
||
value !== null
|
||
&& value !== undefined
|
||
&& valueType !== 'string'
|
||
&& valueType !== 'number'
|
||
&& valueType !== 'boolean'
|
||
) {
|
||
throw new Error(`${fieldLabel} 仅支持 string / number / boolean / null。`);
|
||
}
|
||
}
|
||
|
||
return parsed as JsonRecord;
|
||
}
|
||
|
||
function getErrorMessage(error: unknown) {
|
||
if (error instanceof Error && error.message) {
|
||
switch (error.message) {
|
||
case 'BASE_URL_REQUIRED':
|
||
return '请先到服务器页填写服务地址。';
|
||
case 'ADMIN_API_KEY_REQUIRED':
|
||
return '请先到服务器页填写 Admin Token。';
|
||
case 'INVALID_SERVER_RESPONSE':
|
||
return '服务返回格式异常,请确认后端接口可用并检查网关日志。';
|
||
case 'REQUEST_FAILED':
|
||
return '请求失败,请检查服务地址、Token 和网络连通性。';
|
||
default:
|
||
return error.message;
|
||
}
|
||
}
|
||
|
||
return '创建账号失败,请稍后重试。';
|
||
}
|
||
|
||
export default function CreateAdminAccountScreen() {
|
||
const queryClient = useQueryClient();
|
||
const [name, setName] = useState('');
|
||
const [platform, setPlatform] = useState('anthropic');
|
||
const [type, setType] = useState<AccountType>('apikey');
|
||
const [notes, setNotes] = useState('');
|
||
const [credentialsJson, setCredentialsJson] = useState('{\n "base_url": "",\n "api_key": ""\n}');
|
||
const [extraJson, setExtraJson] = useState('');
|
||
const [proxyId, setProxyId] = useState('');
|
||
const [concurrency, setConcurrency] = useState('');
|
||
const [priority, setPriority] = useState('');
|
||
const [rateMultiplier, setRateMultiplier] = useState('');
|
||
const [groupIds, setGroupIds] = useState('');
|
||
const [formError, setFormError] = useState<string | null>(null);
|
||
|
||
const canSubmit = useMemo(() => Boolean(name.trim() && credentialsJson.trim()), [credentialsJson, name]);
|
||
|
||
const createMutation = useMutation({
|
||
mutationFn: async () => {
|
||
const credentials = parseObjectInput(credentialsJson, 'credentials');
|
||
if (!credentials) {
|
||
throw new Error('credentials 不能为空。');
|
||
}
|
||
|
||
const extra = parseObjectInput(extraJson, 'extra');
|
||
|
||
const payload: CreateAccountRequest = {
|
||
name: name.trim(),
|
||
platform,
|
||
type,
|
||
credentials,
|
||
notes: notes.trim() || undefined,
|
||
proxy_id: toNumber(proxyId),
|
||
concurrency: toNumber(concurrency),
|
||
priority: toNumber(priority),
|
||
rate_multiplier: toNumber(rateMultiplier),
|
||
group_ids: toGroupIds(groupIds),
|
||
extra,
|
||
};
|
||
|
||
return createAccount(payload);
|
||
},
|
||
onSuccess: () => {
|
||
setFormError(null);
|
||
queryClient.invalidateQueries({ queryKey: ['accounts'] });
|
||
router.replace('/(tabs)/accounts');
|
||
},
|
||
onError: (error) => {
|
||
setFormError(getErrorMessage(error));
|
||
},
|
||
});
|
||
|
||
return (
|
||
<>
|
||
<Stack.Screen options={{ title: '添加账号 (/admin/accounts)' }} />
|
||
<SafeAreaView edges={['bottom']} style={{ flex: 1, backgroundColor: colors.page }}>
|
||
<ScrollView style={{ flex: 1 }} contentContainerStyle={{ padding: 16, paddingBottom: 40 }}>
|
||
<View
|
||
style={{
|
||
backgroundColor: colors.card,
|
||
borderRadius: 16,
|
||
padding: 16,
|
||
marginBottom: 12,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
}}
|
||
>
|
||
<Text style={{ fontSize: 18, fontWeight: '700', color: colors.text }}>基础信息</Text>
|
||
|
||
<Text style={{ marginTop: 12, marginBottom: 6, fontSize: 12, color: colors.subtext }}>账号名称</Text>
|
||
<TextInput
|
||
value={name}
|
||
onChangeText={setName}
|
||
placeholder="例如:openai-main"
|
||
placeholderTextColor="#9a9082"
|
||
style={{
|
||
backgroundColor: colors.muted,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
borderRadius: 12,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 12,
|
||
color: colors.text,
|
||
marginBottom: 10,
|
||
}}
|
||
/>
|
||
|
||
<Text style={{ marginBottom: 6, fontSize: 12, color: colors.subtext }}>平台</Text>
|
||
<View style={{ flexDirection: 'row', flexWrap: 'wrap', gap: 8, marginBottom: 10 }}>
|
||
{PLATFORM_OPTIONS.map((item) => {
|
||
const active = platform === item;
|
||
return (
|
||
<Pressable
|
||
key={item}
|
||
onPress={() => setPlatform(item)}
|
||
style={{
|
||
borderRadius: 999,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 8,
|
||
borderWidth: 1,
|
||
borderColor: active ? colors.primary : colors.border,
|
||
backgroundColor: active ? colors.primary : colors.muted,
|
||
}}
|
||
>
|
||
<Text style={{ color: active ? '#fff' : colors.text, fontSize: 12, fontWeight: '700' }}>{item}</Text>
|
||
</Pressable>
|
||
);
|
||
})}
|
||
</View>
|
||
|
||
<Text style={{ marginBottom: 6, fontSize: 12, color: colors.subtext }}>类型</Text>
|
||
<View style={{ flexDirection: 'row', flexWrap: 'wrap', gap: 8, marginBottom: 10 }}>
|
||
{ACCOUNT_TYPE_OPTIONS.map((item) => {
|
||
const active = type === item;
|
||
return (
|
||
<Pressable
|
||
key={item}
|
||
onPress={() => setType(item)}
|
||
style={{
|
||
borderRadius: 999,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 8,
|
||
borderWidth: 1,
|
||
borderColor: active ? colors.primary : colors.border,
|
||
backgroundColor: active ? colors.primary : colors.muted,
|
||
}}
|
||
>
|
||
<Text style={{ color: active ? '#fff' : colors.text, fontSize: 12, fontWeight: '700' }}>{item}</Text>
|
||
</Pressable>
|
||
);
|
||
})}
|
||
</View>
|
||
|
||
<Text style={{ marginBottom: 6, fontSize: 12, color: colors.subtext }}>备注(可选)</Text>
|
||
<TextInput
|
||
value={notes}
|
||
onChangeText={setNotes}
|
||
placeholder="例如:主线路账号"
|
||
placeholderTextColor="#9a9082"
|
||
style={{
|
||
backgroundColor: colors.muted,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
borderRadius: 12,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 12,
|
||
color: colors.text,
|
||
}}
|
||
/>
|
||
</View>
|
||
|
||
<View
|
||
style={{
|
||
backgroundColor: colors.card,
|
||
borderRadius: 16,
|
||
padding: 16,
|
||
marginBottom: 12,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
}}
|
||
>
|
||
<Text style={{ fontSize: 18, fontWeight: '700', color: colors.text }}>请求体字段</Text>
|
||
<Text style={{ marginTop: 6, fontSize: 12, color: colors.subtext }}>
|
||
该页面直接创建 /admin/accounts,credentials 必填,extra 可选。
|
||
</Text>
|
||
|
||
<Text style={{ marginTop: 12, marginBottom: 6, fontSize: 12, color: colors.subtext }}>credentials(JSON 对象)</Text>
|
||
<TextInput
|
||
value={credentialsJson}
|
||
onChangeText={setCredentialsJson}
|
||
multiline
|
||
textAlignVertical="top"
|
||
placeholder='例如:{"base_url":"https://api.example.com","api_key":"sk-..."}'
|
||
placeholderTextColor="#9a9082"
|
||
style={{
|
||
minHeight: 120,
|
||
backgroundColor: colors.muted,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
borderRadius: 12,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 12,
|
||
color: colors.text,
|
||
marginBottom: 10,
|
||
}}
|
||
/>
|
||
|
||
<Text style={{ marginBottom: 6, fontSize: 12, color: colors.subtext }}>extra(可选,JSON 对象)</Text>
|
||
<TextInput
|
||
value={extraJson}
|
||
onChangeText={setExtraJson}
|
||
multiline
|
||
textAlignVertical="top"
|
||
placeholder='例如:{"window_cost_limit":50}'
|
||
placeholderTextColor="#9a9082"
|
||
style={{
|
||
minHeight: 96,
|
||
backgroundColor: colors.muted,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
borderRadius: 12,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 12,
|
||
color: colors.text,
|
||
}}
|
||
/>
|
||
</View>
|
||
|
||
<View
|
||
style={{
|
||
backgroundColor: colors.card,
|
||
borderRadius: 16,
|
||
padding: 16,
|
||
marginBottom: 12,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
}}
|
||
>
|
||
<Text style={{ fontSize: 18, fontWeight: '700', color: colors.text }}>可选参数</Text>
|
||
|
||
<Text style={{ marginTop: 12, marginBottom: 6, fontSize: 12, color: colors.subtext }}>proxy_id</Text>
|
||
<TextInput
|
||
value={proxyId}
|
||
onChangeText={setProxyId}
|
||
keyboardType="number-pad"
|
||
placeholder="例如:3"
|
||
placeholderTextColor="#9a9082"
|
||
style={{
|
||
backgroundColor: colors.muted,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
borderRadius: 12,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 12,
|
||
color: colors.text,
|
||
marginBottom: 10,
|
||
}}
|
||
/>
|
||
|
||
<Text style={{ marginBottom: 6, fontSize: 12, color: colors.subtext }}>concurrency</Text>
|
||
<TextInput
|
||
value={concurrency}
|
||
onChangeText={setConcurrency}
|
||
keyboardType="number-pad"
|
||
placeholder="例如:10"
|
||
placeholderTextColor="#9a9082"
|
||
style={{
|
||
backgroundColor: colors.muted,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
borderRadius: 12,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 12,
|
||
color: colors.text,
|
||
marginBottom: 10,
|
||
}}
|
||
/>
|
||
|
||
<Text style={{ marginBottom: 6, fontSize: 12, color: colors.subtext }}>priority</Text>
|
||
<TextInput
|
||
value={priority}
|
||
onChangeText={setPriority}
|
||
keyboardType="number-pad"
|
||
placeholder="例如:0"
|
||
placeholderTextColor="#9a9082"
|
||
style={{
|
||
backgroundColor: colors.muted,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
borderRadius: 12,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 12,
|
||
color: colors.text,
|
||
marginBottom: 10,
|
||
}}
|
||
/>
|
||
|
||
<Text style={{ marginBottom: 6, fontSize: 12, color: colors.subtext }}>rate_multiplier</Text>
|
||
<TextInput
|
||
value={rateMultiplier}
|
||
onChangeText={setRateMultiplier}
|
||
keyboardType="decimal-pad"
|
||
placeholder="例如:1"
|
||
placeholderTextColor="#9a9082"
|
||
style={{
|
||
backgroundColor: colors.muted,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
borderRadius: 12,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 12,
|
||
color: colors.text,
|
||
marginBottom: 10,
|
||
}}
|
||
/>
|
||
|
||
<Text style={{ marginBottom: 6, fontSize: 12, color: colors.subtext }}>group_ids(逗号分隔)</Text>
|
||
<TextInput
|
||
value={groupIds}
|
||
onChangeText={setGroupIds}
|
||
placeholder="例如:1,2,5"
|
||
placeholderTextColor="#9a9082"
|
||
style={{
|
||
backgroundColor: colors.muted,
|
||
borderWidth: 1,
|
||
borderColor: colors.border,
|
||
borderRadius: 12,
|
||
paddingHorizontal: 12,
|
||
paddingVertical: 12,
|
||
color: colors.text,
|
||
}}
|
||
/>
|
||
</View>
|
||
|
||
{formError ? (
|
||
<View style={{ backgroundColor: colors.errorBg, borderRadius: 12, padding: 12, marginBottom: 12 }}>
|
||
<Text style={{ color: colors.errorText }}>{formError}</Text>
|
||
</View>
|
||
) : null}
|
||
|
||
<Pressable
|
||
onPress={() => {
|
||
setFormError(null);
|
||
createMutation.mutate();
|
||
}}
|
||
disabled={!canSubmit || createMutation.isPending}
|
||
style={{
|
||
backgroundColor: !canSubmit || createMutation.isPending ? '#8a8072' : colors.dark,
|
||
borderRadius: 12,
|
||
paddingVertical: 14,
|
||
alignItems: 'center',
|
||
}}
|
||
>
|
||
<Text style={{ color: '#fff', fontWeight: '700' }}>{createMutation.isPending ? '提交中...' : '创建账号'}</Text>
|
||
</Pressable>
|
||
</ScrollView>
|
||
</SafeAreaView>
|
||
</>
|
||
);
|
||
}
|