| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- import React, { useState } from 'react';
- import { useQueryClient } from '@tanstack/react-query';
- import {
- Button, Table, Space,
- Form, Input, message, Modal,
- Card, Row, Col,
- Popconfirm, Tag, DatePicker
- } from 'antd';
- import {
- useQuery,
- } from '@tanstack/react-query';
- import dayjs from 'dayjs';
- import weekday from 'dayjs/plugin/weekday';
- import localeData from 'dayjs/plugin/localeData';
- import 'dayjs/locale/zh-cn';
- import type {
- XunlianCode
- } from '../share/types_stock.ts';
- import {
- XunlianCodeAPI
- } from './api/xunlian_codes.ts';
- // 配置 dayjs 插件
- dayjs.extend(weekday);
- dayjs.extend(localeData);
- // 设置 dayjs 语言
- dayjs.locale('zh-cn');
- // 训练代码管理页面组件
- export const XunlianCodePage = () => {
- const queryClient = useQueryClient();
- const [modalVisible, setModalVisible] = useState(false);
- const [formMode, setFormMode] = useState<'create' | 'edit'>('create');
- const [editingId, setEditingId] = useState<number | null>(null);
- const [form] = Form.useForm();
- const [searchForm] = Form.useForm();
- const [searchParams, setSearchParams] = useState({
- code: '',
- page: 1,
- limit: 10,
- });
-
- // 使用React Query获取训练代码列表
- const { data: codeDatas, isLoading: isListLoading, refetch } = useQuery({
- queryKey: ['xunlianCodes', searchParams],
- queryFn: async () => {
- const response = await XunlianCodeAPI.getXunlianCodes({
- page: searchParams.page,
- pageSize: searchParams.limit,
- code: searchParams.code,
- });
- return response;
- }
- });
- const { data: codes, pagination } = codeDatas || {
- data: [],
- pagination: {
- current: 1,
- pageSize: 10,
- total: 0,
- totalPages: 1
- }
- };
-
-
-
- // 获取单个训练代码
- const fetchCode = async (id: number) => {
- try {
- const response = await XunlianCodeAPI.getXunlianCode(id);
- return response.data;
- } catch (error) {
- message.error('获取训练代码详情失败');
- return null;
- }
- };
-
- // 处理表单提交
- const handleSubmit = async (values: Partial<XunlianCode>) => {
- try {
- // 转换交易日期格式为YYYY-MM-DD格式,确保不为null
- const submitValues = {
- ...values,
- ...(values.trade_date && {
- trade_date: dayjs(values.trade_date).format('YYYY-MM-DD')
- })
- };
-
- const response = formMode === 'create'
- ? await XunlianCodeAPI.createXunlianCode(submitValues)
- : await XunlianCodeAPI.updateXunlianCode(editingId!, submitValues);
-
- message.success(formMode === 'create' ? '创建训练代码成功' : '更新训练代码成功');
- setModalVisible(false);
- form.resetFields();
- refetch();
- } catch (error) {
- message.error((error as Error).message);
- }
- };
-
- // 处理编辑
- const handleEdit = async (id: number) => {
- const code = await fetchCode(id);
- if (code) {
- setFormMode('edit');
- setEditingId(id);
- // 转换交易日期格式为dayjs对象
- form.setFieldsValue({
- ...code,
- trade_date: code.trade_date ? dayjs(code.trade_date) : null
- });
- setModalVisible(true);
- }
- };
-
- // 处理删除
- const handleDelete = async (id: number) => {
- try {
- await XunlianCodeAPI.deleteXunlianCode(id);
-
- message.success('删除训练代码成功');
- refetch();
- } catch (error) {
- message.error((error as Error).message);
- }
- };
-
- // 处理搜索
- const handleSearch = async (values: any) => {
- try {
- queryClient.removeQueries({ queryKey: ['xunlianCodes'] });
- setSearchParams({
- code: values.code || '',
- page: 1,
- limit: searchParams.limit,
- });
- } catch (error) {
- message.error('搜索失败');
- }
- };
-
- // 处理分页
- const handlePageChange = (page: number, pageSize?: number) => {
- setSearchParams(prev => ({
- ...prev,
- page,
- limit: pageSize || prev.limit,
- }));
- };
-
- // 处理添加
- const handleAdd = () => {
- setFormMode('create');
- setEditingId(null);
- form.resetFields();
- setModalVisible(true);
- };
-
- // 表格列定义
- const columns = [
- {
- title: 'ID',
- dataIndex: 'id',
- key: 'id',
- width: 80,
- },
- {
- title: '股票代码',
- dataIndex: 'code',
- key: 'code',
- },
- {
- title: '股票名称',
- dataIndex: 'stock_name',
- key: 'stock_name',
- },
- {
- title: '案例名称',
- dataIndex: 'name',
- key: 'name',
- },
- {
- title: '案例类型',
- dataIndex: 'type',
- key: 'type',
- },
- {
- title: '交易日期',
- dataIndex: 'trade_date',
- key: 'trade_date',
- render: (date: string) => dayjs(date).format('YYYY-MM-DD'),
- },
- {
- title: '提交用户',
- dataIndex: 'nickname',
- key: 'nickname',
- },
- {
- title: '创建时间',
- dataIndex: 'created_at',
- key: 'created_at',
- render: (date: string) => dayjs(date).format('YYYY-MM-DD HH:mm:ss'),
- },
- {
- title: '操作',
- key: 'action',
- render: (_: any, record: XunlianCode) => (
- <Space size="middle">
- <Button type="link" onClick={() => handleEdit(record.id)}>编辑</Button>
- <Popconfirm
- title="确定要删除这条训练代码吗?"
- onConfirm={() => handleDelete(record.id)}
- okText="确定"
- cancelText="取消"
- >
- <Button type="link" danger>删除</Button>
- </Popconfirm>
- </Space>
- ),
- },
- ];
-
- return (
- <div>
- <Card title="训练代码管理" className="mb-4">
- <Form
- form={searchForm}
- layout="inline"
- onFinish={handleSearch}
- style={{ marginBottom: '16px' }}
- >
- <Form.Item name="code" label="股票代码">
- <Input placeholder="要搜索的股票代码" />
- </Form.Item>
-
- <Form.Item>
- <Space>
- <Button type="primary" htmlType="submit">
- 搜索
- </Button>
- <Button htmlType="reset" onClick={() => {
- searchForm.resetFields();
- setSearchParams({
- code: '',
- page: 1,
- limit: 10,
- });
- }}>
- 重置
- </Button>
- <Button type="primary" onClick={handleAdd}>
- 添加代码
- </Button>
- </Space>
- </Form.Item>
- </Form>
-
- <Table
- columns={columns}
- dataSource={codes}
- rowKey="id"
- loading={{
- spinning: isListLoading,
- tip: '正在加载数据...',
- }}
- pagination={{
- current: pagination.current,
- pageSize: pagination.pageSize,
- total: pagination.total,
- onChange: handlePageChange,
- showSizeChanger: true,
- showTotal: (total) => `共 ${total} 条`,
- }}
- />
- </Card>
-
- <Modal
- title={formMode === 'create' ? '添加训练代码' : '编辑训练代码'}
- open={modalVisible}
- onOk={() => {
- form.validateFields()
- .then(values => {
- handleSubmit(values);
- })
- .catch(info => {
- console.log('表单验证失败:', info);
- });
- }}
- onCancel={() => setModalVisible(false)}
- width={800}
- okText="确定"
- cancelText="取消"
- destroyOnClose
- >
- <Form
- form={form}
- layout="vertical"
- >
- <Row gutter={16}>
- <Col span={12}>
- <Form.Item
- name="code"
- label="股票代码"
- rules={[{ required: true, message: '请输入股票代码' }]}
- >
- <Input placeholder="请输入股票代码" />
- </Form.Item>
- </Col>
- <Col span={12}>
- <Form.Item
- name="stock_name"
- label="股票名称"
- rules={[{ required: true, message: '请输入股票名称' }]}
- >
- <Input placeholder="请输入股票名称" />
- </Form.Item>
- </Col>
- </Row>
- <Row gutter={16}>
- <Col span={12}>
- <Form.Item
- name="name"
- label="案例名称"
- rules={[{ required: true, message: '请输入案例名称' }]}
- >
- <Input placeholder="请输入案例名称" />
- </Form.Item>
- </Col>
- <Col span={12}>
- <Form.Item
- name="type"
- label="案例类型"
- >
- <Input placeholder="请输入案例类型" />
- </Form.Item>
- </Col>
- </Row>
- <Row gutter={16}>
- <Col span={12}>
- <Form.Item
- name="trade_date"
- label="交易日期"
- rules={[{ required: true, message: '请选择交易日期' }]}
- >
- <DatePicker style={{ width: '100%' }} format="YYYY-MM-DD" />
- </Form.Item>
- </Col>
- <Col span={12}>
- <Form.Item
- name="description"
- label="案例描述"
- >
- <Input.TextArea rows={1} placeholder="请输入案例描述" />
- </Form.Item>
- </Col>
- </Row>
-
- </Form>
- </Modal>
- </div>
- );
- };
|