2025-11-29 15:10:00 +00:00
|
|
|
|
/**
|
|
|
|
|
|
* Celestial Bodies Management Page
|
|
|
|
|
|
*/
|
|
|
|
|
|
import { useState, useEffect } from 'react';
|
2025-11-30 05:25:41 +00:00
|
|
|
|
import { message, Modal, Form, Input, Select, Switch, InputNumber, Tag, Badge, Descriptions, Button, Space, Alert } from 'antd';
|
|
|
|
|
|
import { CheckCircleOutlined, CloseCircleOutlined, SearchOutlined } from '@ant-design/icons';
|
2025-11-29 15:10:00 +00:00
|
|
|
|
import type { ColumnsType } from 'antd/es/table';
|
2025-11-30 02:43:47 +00:00
|
|
|
|
import { DataTable } from '../../components/admin/DataTable';
|
2025-11-29 15:10:00 +00:00
|
|
|
|
import { request } from '../../utils/request';
|
|
|
|
|
|
|
|
|
|
|
|
interface CelestialBody {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
name_zh: string;
|
|
|
|
|
|
type: string;
|
|
|
|
|
|
description: string;
|
2025-11-30 02:43:47 +00:00
|
|
|
|
is_active: boolean;
|
2025-11-30 05:25:41 +00:00
|
|
|
|
resources?: {
|
|
|
|
|
|
[key: string]: Array<{
|
|
|
|
|
|
id: number;
|
|
|
|
|
|
file_path: string;
|
|
|
|
|
|
file_size: number;
|
|
|
|
|
|
mime_type: string;
|
|
|
|
|
|
}>;
|
|
|
|
|
|
};
|
|
|
|
|
|
has_resources?: boolean;
|
2025-11-29 15:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function CelestialBodies() {
|
|
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
|
|
const [data, setData] = useState<CelestialBody[]>([]);
|
2025-11-30 02:43:47 +00:00
|
|
|
|
const [filteredData, setFilteredData] = useState<CelestialBody[]>([]);
|
|
|
|
|
|
const [isModalOpen, setIsModalOpen] = useState(false);
|
|
|
|
|
|
const [editingRecord, setEditingRecord] = useState<CelestialBody | null>(null);
|
|
|
|
|
|
const [form] = Form.useForm();
|
2025-11-30 05:25:41 +00:00
|
|
|
|
const [searching, setSearching] = useState(false);
|
|
|
|
|
|
const [searchQuery, setSearchQuery] = useState('');
|
2025-11-29 15:10:00 +00:00
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
loadData();
|
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
|
|
const loadData = async () => {
|
|
|
|
|
|
setLoading(true);
|
|
|
|
|
|
try {
|
|
|
|
|
|
const { data: result } = await request.get('/celestial/list');
|
|
|
|
|
|
setData(result.bodies || []);
|
2025-11-30 02:43:47 +00:00
|
|
|
|
setFilteredData(result.bodies || []);
|
2025-11-29 15:10:00 +00:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error('加载数据失败');
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setLoading(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-11-30 02:43:47 +00:00
|
|
|
|
// Search handler
|
|
|
|
|
|
const handleSearch = (keyword: string) => {
|
|
|
|
|
|
const lowerKeyword = keyword.toLowerCase();
|
|
|
|
|
|
const filtered = data.filter(
|
|
|
|
|
|
(item) =>
|
|
|
|
|
|
item.name.toLowerCase().includes(lowerKeyword) ||
|
|
|
|
|
|
item.name_zh?.toLowerCase().includes(lowerKeyword) ||
|
|
|
|
|
|
item.id.includes(lowerKeyword)
|
|
|
|
|
|
);
|
|
|
|
|
|
setFilteredData(filtered);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Add handler
|
|
|
|
|
|
const handleAdd = () => {
|
|
|
|
|
|
setEditingRecord(null);
|
|
|
|
|
|
form.resetFields();
|
2025-11-30 05:25:41 +00:00
|
|
|
|
setSearchQuery('');
|
2025-11-30 02:43:47 +00:00
|
|
|
|
// Default values
|
|
|
|
|
|
form.setFieldsValue({ is_active: true, type: 'probe' });
|
|
|
|
|
|
setIsModalOpen(true);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-11-30 05:25:41 +00:00
|
|
|
|
// Search NASA Horizons by name
|
|
|
|
|
|
const handleNASASearch = async () => {
|
|
|
|
|
|
if (!searchQuery.trim()) {
|
|
|
|
|
|
message.warning('请输入天体名称或ID');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
setSearching(true);
|
|
|
|
|
|
try {
|
|
|
|
|
|
const { data: result } = await request.get('/celestial/search', {
|
|
|
|
|
|
params: { name: searchQuery }
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (result.success) {
|
|
|
|
|
|
// Auto-fill form with search results
|
|
|
|
|
|
form.setFieldsValue({
|
|
|
|
|
|
id: result.data.id,
|
|
|
|
|
|
name: result.data.name,
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// Check if ID looks like it might not be a proper numeric ID
|
|
|
|
|
|
const isNumericId = /^-?\d+$/.test(result.data.id);
|
|
|
|
|
|
|
|
|
|
|
|
if (isNumericId) {
|
|
|
|
|
|
message.success(`找到天体: ${result.data.full_name}`);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// Warn user that ID might need manual correction
|
|
|
|
|
|
Modal.warning({
|
|
|
|
|
|
title: '找到天体,但请确认 ID',
|
|
|
|
|
|
content: (
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<p>找到天体: <strong>{result.data.full_name}</strong></p>
|
|
|
|
|
|
<p>自动填充的 ID 为: <strong>{result.data.id}</strong></p>
|
|
|
|
|
|
<p style={{ color: '#faad14' }}>
|
|
|
|
|
|
⚠️ 建议: 如果知道该天体的数字 ID,请手动修改为数字 ID(如:-48)以便后续查询位置数据。
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p style={{ fontSize: '12px', color: '#888' }}>
|
|
|
|
|
|
提示:您可以在 <a href="https://ssd.jpl.nasa.gov/horizons/" target="_blank" rel="noopener noreferrer">NASA Horizons</a> 网站查询准确的数字 ID
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
),
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
message.error(result.error || '查询失败');
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error: any) {
|
|
|
|
|
|
message.error(error.response?.data?.detail || '查询失败');
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
setSearching(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-11-30 02:43:47 +00:00
|
|
|
|
// Edit handler
|
|
|
|
|
|
const handleEdit = (record: CelestialBody) => {
|
|
|
|
|
|
setEditingRecord(record);
|
|
|
|
|
|
form.setFieldsValue(record);
|
|
|
|
|
|
setIsModalOpen(true);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Delete handler
|
|
|
|
|
|
const handleDelete = async (record: CelestialBody) => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
await request.delete(`/celestial/${record.id}`);
|
|
|
|
|
|
message.success('删除成功');
|
|
|
|
|
|
loadData();
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error('删除失败');
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Status change handler
|
|
|
|
|
|
const handleStatusChange = async (record: CelestialBody, checked: boolean) => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
await request.put(`/celestial/${record.id}`, { is_active: checked });
|
|
|
|
|
|
message.success(`状态更新成功`);
|
|
|
|
|
|
// Update local state to avoid full reload
|
|
|
|
|
|
const newData = data.map(item =>
|
|
|
|
|
|
item.id === record.id ? { ...item, is_active: checked } : item
|
|
|
|
|
|
);
|
|
|
|
|
|
setData(newData);
|
|
|
|
|
|
setFilteredData(newData); // Should re-filter if needed, but simplistic here
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
message.error('状态更新失败');
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Form submit
|
|
|
|
|
|
const handleModalOk = async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const values = await form.validateFields();
|
|
|
|
|
|
|
|
|
|
|
|
if (editingRecord) {
|
|
|
|
|
|
// Update
|
|
|
|
|
|
await request.put(`/celestial/${editingRecord.id}`, values);
|
|
|
|
|
|
message.success('更新成功');
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// Create
|
|
|
|
|
|
await request.post('/celestial/', values);
|
|
|
|
|
|
message.success('创建成功');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
setIsModalOpen(false);
|
|
|
|
|
|
loadData();
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error(error);
|
|
|
|
|
|
// message.error('操作失败'); // request interceptor might already handle this
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-11-29 15:10:00 +00:00
|
|
|
|
const columns: ColumnsType<CelestialBody> = [
|
|
|
|
|
|
{
|
|
|
|
|
|
title: 'ID',
|
|
|
|
|
|
dataIndex: 'id',
|
|
|
|
|
|
key: 'id',
|
|
|
|
|
|
width: 100,
|
2025-11-30 02:43:47 +00:00
|
|
|
|
sorter: (a, b) => a.id.localeCompare(b.id),
|
2025-11-29 15:10:00 +00:00
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: '英文名',
|
|
|
|
|
|
dataIndex: 'name',
|
|
|
|
|
|
key: 'name',
|
2025-11-30 02:43:47 +00:00
|
|
|
|
sorter: (a, b) => a.name.localeCompare(b.name),
|
2025-11-29 15:10:00 +00:00
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: '中文名',
|
|
|
|
|
|
dataIndex: 'name_zh',
|
|
|
|
|
|
key: 'name_zh',
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: '类型',
|
|
|
|
|
|
dataIndex: 'type',
|
|
|
|
|
|
key: 'type',
|
2025-11-30 02:43:47 +00:00
|
|
|
|
filters: [
|
|
|
|
|
|
{ text: '行星', value: 'planet' },
|
|
|
|
|
|
{ text: '恒星', value: 'star' },
|
|
|
|
|
|
{ text: '卫星', value: 'satellite' },
|
|
|
|
|
|
{ text: '探测器', value: 'probe' },
|
|
|
|
|
|
{ text: '矮行星', value: 'dwarf_planet' },
|
|
|
|
|
|
],
|
|
|
|
|
|
onFilter: (value, record) => record.type === value,
|
2025-11-29 15:10:00 +00:00
|
|
|
|
render: (type: string) => {
|
|
|
|
|
|
const typeMap: Record<string, string> = {
|
|
|
|
|
|
star: '恒星',
|
|
|
|
|
|
planet: '行星',
|
|
|
|
|
|
dwarf_planet: '矮行星',
|
2025-11-30 02:43:47 +00:00
|
|
|
|
satellite: '卫星',
|
2025-11-29 15:10:00 +00:00
|
|
|
|
probe: '探测器',
|
|
|
|
|
|
};
|
|
|
|
|
|
return typeMap[type] || type;
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
title: '描述',
|
|
|
|
|
|
dataIndex: 'description',
|
|
|
|
|
|
key: 'description',
|
|
|
|
|
|
ellipsis: true,
|
|
|
|
|
|
},
|
2025-11-30 05:25:41 +00:00
|
|
|
|
{
|
|
|
|
|
|
title: '资源配置',
|
|
|
|
|
|
key: 'resources',
|
|
|
|
|
|
width: 120,
|
|
|
|
|
|
render: (_, record) => {
|
|
|
|
|
|
if (record.has_resources) {
|
|
|
|
|
|
const resourceTypes = Object.keys(record.resources || {});
|
|
|
|
|
|
return (
|
|
|
|
|
|
<Badge status="success" text={`${resourceTypes.length} 类`} />
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
return <Badge status="default" text="未配置" />;
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
2025-11-29 15:10:00 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
2025-11-30 02:43:47 +00:00
|
|
|
|
<>
|
|
|
|
|
|
<DataTable
|
|
|
|
|
|
title="天体数据管理"
|
2025-11-29 15:10:00 +00:00
|
|
|
|
columns={columns}
|
2025-11-30 02:43:47 +00:00
|
|
|
|
dataSource={filteredData}
|
2025-11-29 15:10:00 +00:00
|
|
|
|
loading={loading}
|
2025-11-30 02:43:47 +00:00
|
|
|
|
total={filteredData.length}
|
|
|
|
|
|
onSearch={handleSearch}
|
|
|
|
|
|
onAdd={handleAdd}
|
|
|
|
|
|
onEdit={handleEdit}
|
|
|
|
|
|
onDelete={handleDelete}
|
|
|
|
|
|
onStatusChange={handleStatusChange}
|
|
|
|
|
|
statusField="is_active"
|
|
|
|
|
|
rowKey="id"
|
|
|
|
|
|
pageSize={10}
|
2025-11-29 15:10:00 +00:00
|
|
|
|
/>
|
2025-11-30 02:43:47 +00:00
|
|
|
|
|
|
|
|
|
|
<Modal
|
|
|
|
|
|
title={editingRecord ? '编辑天体' : '新增天体'}
|
|
|
|
|
|
open={isModalOpen}
|
|
|
|
|
|
onOk={handleModalOk}
|
|
|
|
|
|
onCancel={() => setIsModalOpen(false)}
|
2025-11-30 05:25:41 +00:00
|
|
|
|
width={800}
|
2025-11-30 02:43:47 +00:00
|
|
|
|
>
|
|
|
|
|
|
<Form
|
|
|
|
|
|
form={form}
|
|
|
|
|
|
layout="vertical"
|
|
|
|
|
|
>
|
2025-11-30 05:25:41 +00:00
|
|
|
|
{!editingRecord && (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<Alert
|
|
|
|
|
|
title="智能搜索提示"
|
|
|
|
|
|
description={
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<p>推荐使用 <strong>JPL Horizons 数字 ID</strong> 进行搜索,可获得最准确的结果。</p>
|
|
|
|
|
|
<p style={{ marginTop: 4 }}>
|
|
|
|
|
|
示例:Hubble 的 ID 是 <code>-48</code>,Voyager 1 的 ID 是 <code>-31</code>
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p style={{ marginTop: 4, fontSize: '12px', color: '#666' }}>
|
|
|
|
|
|
不知道 ID?可以先用名称搜索,系统会尽量提取 ID,或提示您手动确认。
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
|
|
|
|
|
type="info"
|
|
|
|
|
|
showIcon
|
|
|
|
|
|
style={{ marginBottom: 16 }}
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<Form.Item label="从 NASA 数据库搜索">
|
|
|
|
|
|
<Space.Compact style={{ width: '100%' }}>
|
|
|
|
|
|
<Input
|
|
|
|
|
|
placeholder="输入数字 ID (推荐, 如: -48) 或名称 (如: Hubble)"
|
|
|
|
|
|
value={searchQuery}
|
|
|
|
|
|
onChange={(e) => setSearchQuery(e.target.value)}
|
|
|
|
|
|
onPressEnter={handleNASASearch}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
icon={<SearchOutlined />}
|
|
|
|
|
|
onClick={handleNASASearch}
|
|
|
|
|
|
loading={searching}
|
|
|
|
|
|
>
|
|
|
|
|
|
搜索
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</Space.Compact>
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
</>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
2025-11-30 02:43:47 +00:00
|
|
|
|
<Form.Item
|
|
|
|
|
|
name="id"
|
2025-11-30 05:25:41 +00:00
|
|
|
|
label="JPL Horizons ID"
|
2025-11-30 02:43:47 +00:00
|
|
|
|
rules={[{ required: true, message: '请输入JPL Horizons ID' }]}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Input disabled={!!editingRecord} placeholder="例如:-31 (Voyager 1) 或 399 (Earth)" />
|
|
|
|
|
|
</Form.Item>
|
2025-11-30 05:25:41 +00:00
|
|
|
|
|
2025-11-30 02:43:47 +00:00
|
|
|
|
<Form.Item
|
|
|
|
|
|
name="name"
|
|
|
|
|
|
label="英文名"
|
|
|
|
|
|
rules={[{ required: true, message: '请输入英文名' }]}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Input placeholder="例如:Voyager 1" />
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
|
|
|
|
|
|
<Form.Item
|
|
|
|
|
|
name="name_zh"
|
|
|
|
|
|
label="中文名"
|
|
|
|
|
|
>
|
|
|
|
|
|
<Input placeholder="例如:旅行者1号" />
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
|
|
|
|
|
|
<Form.Item
|
|
|
|
|
|
name="type"
|
|
|
|
|
|
label="类型"
|
|
|
|
|
|
rules={[{ required: true, message: '请选择类型' }]}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Select>
|
|
|
|
|
|
<Select.Option value="planet">行星</Select.Option>
|
|
|
|
|
|
<Select.Option value="dwarf_planet">矮行星</Select.Option>
|
|
|
|
|
|
<Select.Option value="satellite">卫星</Select.Option>
|
|
|
|
|
|
<Select.Option value="probe">探测器</Select.Option>
|
|
|
|
|
|
<Select.Option value="star">恒星</Select.Option>
|
|
|
|
|
|
</Select>
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
|
|
|
|
|
|
<Form.Item
|
|
|
|
|
|
name="is_active"
|
|
|
|
|
|
label="状态"
|
|
|
|
|
|
valuePropName="checked"
|
|
|
|
|
|
>
|
|
|
|
|
|
<Switch checkedChildren="启用" unCheckedChildren="禁用" />
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
|
|
|
|
|
|
<Form.Item
|
|
|
|
|
|
name="description"
|
|
|
|
|
|
label="描述"
|
|
|
|
|
|
>
|
|
|
|
|
|
<Input.TextArea rows={4} />
|
|
|
|
|
|
</Form.Item>
|
2025-11-30 05:25:41 +00:00
|
|
|
|
|
|
|
|
|
|
{editingRecord && editingRecord.has_resources && (
|
|
|
|
|
|
<Form.Item label="已配置资源">
|
|
|
|
|
|
<Descriptions bordered size="small" column={1}>
|
|
|
|
|
|
{Object.entries(editingRecord.resources || {}).map(([type, resources]) => (
|
|
|
|
|
|
<Descriptions.Item
|
|
|
|
|
|
key={type}
|
|
|
|
|
|
label={
|
|
|
|
|
|
type === 'texture' ? '纹理' :
|
|
|
|
|
|
type === 'model' ? '模型' :
|
|
|
|
|
|
type === 'icon' ? '图标' :
|
|
|
|
|
|
type === 'thumbnail' ? '缩略图' :
|
|
|
|
|
|
type === 'data' ? '数据' : type
|
|
|
|
|
|
}
|
|
|
|
|
|
>
|
|
|
|
|
|
{resources.map((res: any, idx: number) => (
|
|
|
|
|
|
<div key={res.id} style={{ marginBottom: idx < resources.length - 1 ? 8 : 0 }}>
|
|
|
|
|
|
<Tag color="blue">{res.file_path}</Tag>
|
|
|
|
|
|
<span style={{ fontSize: 12, color: '#888' }}>
|
|
|
|
|
|
({(res.file_size / 1024).toFixed(2)} KB)
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</Descriptions.Item>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</Descriptions>
|
|
|
|
|
|
<div style={{ marginTop: 8, fontSize: 12, color: '#888' }}>
|
|
|
|
|
|
提示:资源文件管理功能即将推出,敬请期待
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
)}
|
2025-11-30 02:43:47 +00:00
|
|
|
|
</Form>
|
|
|
|
|
|
</Modal>
|
|
|
|
|
|
</>
|
2025-11-29 15:10:00 +00:00
|
|
|
|
);
|
2025-11-30 02:43:47 +00:00
|
|
|
|
}
|