safety-eval-service-frontend/src/pages/Container/EduTraining/ClassManage/Add/CourseTab.js

314 lines
8.8 KiB
JavaScript
Raw Normal View History

2026-08-21 17:43:57 +08:00
import { useEffect, useState } from "react";
2026-08-21 18:51:58 +08:00
import { Badge, Button, Form, Input, Modal, Space, Table, message } from "antd";
2026-08-21 17:43:57 +08:00
import ControlWrapper from "@cqsjjb/jjb-react-admin-component/ControlWrapper";
import SearchForm from "~/components/SearchForm";
import TableAction from "@cqsjjb/jjb-react-admin-component/TableAction";
import { Connect } from "@cqsjjb/jjb-dva-runtime";
import { NS_COURSEWARE } from "~/enumerate/namespace";
2026-08-21 18:07:36 +08:00
import { COURSEWARE_STATUS_MAP } from "~/enumerate/constant";
2026-08-21 18:51:58 +08:00
import ClassPaperConfig from "./PaperConfig";
2026-08-21 17:43:57 +08:00
/** 视频累计时长(小时)→ “X分钟Y秒” */
const formatVideoDuration = (hours) => {
if (hours == null) return "-";
const totalSeconds = Math.round(hours * 3600);
return `${Math.floor(totalSeconds / 60)}分钟${totalSeconds % 60}`;
};
/** 班级详情 — 课程 Tab班级课程查询 */
function ClassCourseTab(props) {
const { classId } = props;
const [searchForm] = Form.useForm();
const [query, setQuery] = useState({ current: 1, size: 10 });
2026-08-21 18:07:36 +08:00
const [selectOpen, setSelectOpen] = useState(false);
2026-08-21 17:43:57 +08:00
const {
classCourseList: dataSource,
classCourseTotal: total,
classCourseLoading: loading,
} = props.courseware || {};
2026-08-21 18:07:36 +08:00
const tableSource = Array.isArray(dataSource) ? dataSource : [];
2026-08-21 17:43:57 +08:00
const handleSearch = (params = query) => {
props.classCoursePage({ ...params, classId });
};
useEffect(() => {
if (!classId) return;
handleSearch(query);
}, [classId]);
const columns = [
{
title: "序号",
width: 70,
fixed: "left",
render: (_, __, index) => (query.current - 1) * query.size + index + 1,
},
{
title: "课程名称",
dataIndex: "courseName",
width: 320,
ellipsis: true,
render: (v) => v || "-",
},
{
title: "要求完成总学时",
dataIndex: "requiredTotalHours",
width: 130,
render: (v) => (v == null ? "-" : v),
},
{
title: "视频累计时长",
dataIndex: "videoDuration",
width: 130,
render: (v) => formatVideoDuration(v),
},
{
title: "上课学员数",
dataIndex: "studentCount",
width: 110,
render: (v) => (v == null ? "-" : v),
},
{
title: "已完成学员数",
dataIndex: "completedCount",
width: 120,
render: (v) => (v == null ? "-" : v),
},
{
title: "操作",
width: 140,
fixed: "right",
2026-08-21 18:18:30 +08:00
render: (_, record) => (
2026-08-21 17:43:57 +08:00
<TableAction>
<Button
type="link"
size="small"
onClick={() => message.info("课程查看功能待接入")}
>
查看
</Button>
<Button
danger
type="link"
size="small"
2026-08-21 18:18:30 +08:00
onClick={() =>
Modal.confirm({
title: "确认删除该课程?",
content: `删除后不可恢复,确认删除课程「${
record.courseName || ""
}`,
onOk: async () => {
const res = await props.classCourseRemove({
data: record.id,
});
if (res?.success !== false) {
message.success("删除成功");
handleSearch();
}
},
})
}
2026-08-21 17:43:57 +08:00
>
删除
</Button>
</TableAction>
),
},
];
return (
<>
<SearchForm
style={{ marginBottom: 16 }}
form={searchForm}
loading={loading}
formLine={[
<Form.Item key="courseName" name="courseName">
<ControlWrapper.Input
label="课程名称"
placeholder="请输入"
allowClear
maxLength={50}
/>
</Form.Item>,
]}
onReset={(value) => {
const next = { ...value, current: 1, size: 10 };
setQuery(next);
handleSearch(next);
}}
onFinish={(value) => {
const next = { ...value, current: 1, size: 10 };
setQuery(next);
handleSearch(next);
}}
/>
2026-08-21 18:51:58 +08:00
<Space style={{ marginBottom: 12 }}>
<Button type="primary" onClick={() => setSelectOpen(true)}>
选择课程
</Button>
<ClassPaperConfig classId={classId} />
</Space>
2026-08-21 17:43:57 +08:00
<Table
rowKey="id"
columns={columns}
2026-08-21 18:18:30 +08:00
dataSource={tableSource}
2026-08-21 17:43:57 +08:00
scroll={{ x: 1000 }}
loading={loading}
pagination={{
2026-08-21 18:18:30 +08:00
total,
2026-08-21 17:43:57 +08:00
showSizeChanger: true,
showQuickJumper: true,
showTotal: (t) => `${t}`,
current: query.current,
pageSize: query.size,
onChange: (page, pageSize) => {
const next = { ...query, current: page, size: pageSize };
setQuery(next);
handleSearch(next);
},
}}
/>
2026-08-21 18:07:36 +08:00
<CourseSelectModal
open={selectOpen}
loading={props.courseware?.courseLoading}
2026-08-21 18:18:30 +08:00
confirmLoading={props.courseware?.classCourseConfirmLoading}
2026-08-21 18:07:36 +08:00
dataSource={props.courseware?.courseList}
total={props.courseware?.courseTotal}
requestPage={props.coursePage}
2026-08-21 18:18:30 +08:00
selectedIds={tableSource.map((item) => item.courseId)}
onOk={async (rows) => {
// 批量新增班级课程
const res = await props.classCourseBatchSave(
rows.map(({ id, courseName, classHourDuration }) => ({
classId,
2026-08-21 18:07:36 +08:00
courseId: id,
courseName,
requiredTotalHours: classHourDuration,
})),
2026-08-21 18:18:30 +08:00
);
if (res?.success === false) return;
message.success("添加成功");
2026-08-21 18:07:36 +08:00
setSelectOpen(false);
2026-08-21 18:18:30 +08:00
handleSearch();
2026-08-21 18:07:36 +08:00
}}
onCancel={() => setSelectOpen(false)}
/>
2026-08-21 17:43:57 +08:00
</>
);
}
2026-08-21 18:07:36 +08:00
/** 选择课程弹窗:数据源同培训课程管理列表 */
function CourseSelectModal({
open,
loading,
2026-08-21 18:18:30 +08:00
confirmLoading,
2026-08-21 18:07:36 +08:00
dataSource,
total,
requestPage,
selectedIds,
onOk,
onCancel,
}) {
const [query, setQuery] = useState({ current: 1, size: 10 });
const [keyword, setKeyword] = useState("");
const [selectedRows, setSelectedRows] = useState([]);
const handleSearch = (params) => {
setQuery(params);
requestPage(params);
};
useEffect(() => {
if (open) {
setKeyword("");
setSelectedRows([]);
handleSearch({ current: 1, size: 10 });
}
}, [open]);
return (
<Modal
open={open}
title="选择课程"
width={860}
loading={loading}
2026-08-21 18:18:30 +08:00
confirmLoading={confirmLoading}
2026-08-21 18:07:36 +08:00
destroyOnHidden
okText={`确定${selectedRows.length ? `(已选 ${selectedRows.length}` : ""}`}
okButtonProps={{ disabled: !selectedRows.length }}
onOk={() => onOk(selectedRows)}
onCancel={onCancel}
>
<Input.Search
placeholder="请输入课程名称"
allowClear
style={{ width: 280, marginBottom: 12 }}
value={keyword}
onChange={(e) => setKeyword(e.target.value)}
onSearch={(value) =>
handleSearch({ current: 1, size: query.size, courseName: value })
}
/>
<Table
rowKey="id"
size="small"
columns={[
{ title: "课程名称", dataIndex: "courseName", ellipsis: true },
{
title: "课程描述",
dataIndex: "courseDescription",
width: 260,
ellipsis: true,
render: (v) => v || "-",
},
{
title: "课程状态",
dataIndex: "status",
width: 90,
render: (v) => {
const item = COURSEWARE_STATUS_MAP[v];
return item ? <Badge status={item.status} text={item.label} /> : "-";
},
},
{
title: "总课时",
dataIndex: "classHourDuration",
width: 90,
render: (v) => (v == null ? "-" : v),
},
]}
dataSource={Array.isArray(dataSource) ? dataSource : []}
rowSelection={{
preserveSelectedRowKeys: true,
selectedRowKeys: selectedRows.map((r) => r.id),
getCheckboxProps: (record) => ({
disabled: selectedIds.includes(record.id),
}),
onChange: (_, rows) => setSelectedRows(rows),
}}
pagination={{
total,
size: "small",
showTotal: (t) => `${t}`,
current: Number(query.current) || 1,
pageSize: Number(query.size) || 10,
onChange: (page, pageSize) =>
handleSearch({
current: page,
size: pageSize,
courseName: query.courseName,
}),
}}
/>
</Modal>
);
}
2026-08-21 17:43:57 +08:00
export default Connect([NS_COURSEWARE], true)(ClassCourseTab);