mirror of
https://github.com/PlayEdu/backend
synced 2025-06-22 02:16:28 +08:00
427 lines
11 KiB
TypeScript
427 lines
11 KiB
TypeScript
import { useEffect, useState } from "react";
|
||
import {
|
||
Button,
|
||
Modal,
|
||
Image,
|
||
Table,
|
||
Typography,
|
||
Input,
|
||
message,
|
||
Space,
|
||
Tabs,
|
||
Dropdown,
|
||
} from "antd";
|
||
import { course } from "../../api";
|
||
import styles from "./index.module.less";
|
||
import {
|
||
PlusOutlined,
|
||
DownOutlined,
|
||
ExclamationCircleFilled,
|
||
} from "@ant-design/icons";
|
||
import type { MenuProps } from "antd";
|
||
import type { ColumnsType } from "antd/es/table";
|
||
import { dateFormat } from "../../utils/index";
|
||
import { Link, useNavigate } from "react-router-dom";
|
||
import { TreeDepartment, TreeCategory, PerButton } from "../../compenents";
|
||
import type { TabsProps } from "antd";
|
||
import { CourseCreate } from "./compenents/create";
|
||
import { CourseUpdate } from "./compenents/update";
|
||
import { CourseHourUpdate } from "./compenents/hour-update";
|
||
|
||
const { confirm } = Modal;
|
||
|
||
interface DataType {
|
||
id: React.Key;
|
||
title: string;
|
||
created_at: string;
|
||
thumb: string;
|
||
charge: number;
|
||
is_show: number;
|
||
}
|
||
|
||
export const CoursePage = () => {
|
||
const navigate = useNavigate();
|
||
const [list, setList] = useState<any>([]);
|
||
const [refresh, setRefresh] = useState(false);
|
||
const [page, setPage] = useState(1);
|
||
const [size, setSize] = useState(10);
|
||
const [total, setTotal] = useState(0);
|
||
const [loading, setLoading] = useState<boolean>(true);
|
||
const [category_ids, setCategoryIds] = useState<any>([]);
|
||
const [title, setTitle] = useState<string>("");
|
||
const [dep_ids, setDepIds] = useState<any>([]);
|
||
const [selLabel, setLabel] = useState<string>("全部课程");
|
||
const [course_category_ids, setCourseCategoryIds] = useState<any>({});
|
||
const [course_dep_ids, setCourseDepIds] = useState<any>({});
|
||
const [categories, setCategories] = useState<any>({});
|
||
const [departments, setDepartments] = useState<any>({});
|
||
const [tabKey, setTabKey] = useState(1);
|
||
|
||
const [createVisible, setCreateVisible] = useState<boolean>(false);
|
||
const [updateVisible, setUpdateVisible] = useState<boolean>(false);
|
||
const [updateHourVisible, setHourUpdateVisible] = useState<boolean>(false);
|
||
const [cid, setCid] = useState<number>(0);
|
||
|
||
const items: TabsProps["items"] = [
|
||
{
|
||
key: "1",
|
||
label: `分类`,
|
||
children: (
|
||
<div className="float-left">
|
||
<TreeCategory
|
||
type=""
|
||
text={"课程"}
|
||
onUpdate={(keys: any, title: any) => {
|
||
setCategoryIds(keys);
|
||
if (typeof title == "string") {
|
||
setLabel(title);
|
||
} else {
|
||
setLabel(title.props.children[0]);
|
||
}
|
||
}}
|
||
/>
|
||
</div>
|
||
),
|
||
},
|
||
{
|
||
key: "2",
|
||
label: `部门`,
|
||
children: (
|
||
<div className="float-left">
|
||
<TreeDepartment
|
||
type="no-course"
|
||
text={"部门"}
|
||
onUpdate={(keys: any, title: any) => {
|
||
setDepIds(keys);
|
||
setLabel(title);
|
||
}}
|
||
/>
|
||
</div>
|
||
),
|
||
},
|
||
];
|
||
|
||
const columns: ColumnsType<DataType> = [
|
||
{
|
||
title: "课程名称",
|
||
width: 350,
|
||
render: (_, record: any) => (
|
||
<div className="d-flex">
|
||
<Image
|
||
preview={false}
|
||
width={80}
|
||
height={60}
|
||
style={{ borderRadius: 6 }}
|
||
src={record.thumb}
|
||
></Image>
|
||
<span className="ml-8">{record.title}</span>
|
||
</div>
|
||
),
|
||
},
|
||
{
|
||
title: "课程分类",
|
||
dataIndex: "id",
|
||
render: (id: number) => (
|
||
<div className="float-left">
|
||
{course_category_ids[id].map((item: any, index: number) => {
|
||
return (
|
||
<span key={index}>
|
||
{index === course_category_ids[id].length - 1
|
||
? categories[item]
|
||
: categories[item] + "、"}
|
||
</span>
|
||
);
|
||
})}
|
||
</div>
|
||
),
|
||
},
|
||
{
|
||
title: "指派部门",
|
||
dataIndex: "id",
|
||
render: (id: number) => (
|
||
<div className="float-left">
|
||
{course_dep_ids[id] &&
|
||
course_dep_ids[id].map((item: any, index: number) => {
|
||
return (
|
||
<span key={index}>
|
||
{index === course_dep_ids[id].length - 1
|
||
? departments[item]
|
||
: departments[item] + "、"}
|
||
</span>
|
||
);
|
||
})}
|
||
{!course_dep_ids[id] && <span>公开课</span>}
|
||
</div>
|
||
),
|
||
},
|
||
{
|
||
title: "必修/选修",
|
||
dataIndex: "isRequired",
|
||
width: 120,
|
||
render: (isRequired: number) => (
|
||
<span>{isRequired === 1 ? "必修课" : "选修课"}</span>
|
||
),
|
||
},
|
||
{
|
||
title: "创建时间",
|
||
dataIndex: "created_at",
|
||
width: 200,
|
||
render: (text: string) => <span>{dateFormat(text)}</span>,
|
||
},
|
||
{
|
||
title: "操作",
|
||
key: "action",
|
||
fixed: "right",
|
||
width: 160,
|
||
render: (_, record: any) => {
|
||
const items: MenuProps["items"] = [
|
||
{
|
||
key: "1",
|
||
label: (
|
||
<PerButton
|
||
type="link"
|
||
text="课时"
|
||
class="b-link c-red"
|
||
icon={null}
|
||
p="course"
|
||
onClick={() => {
|
||
setCid(Number(record.id));
|
||
setHourUpdateVisible(true);
|
||
}}
|
||
disabled={null}
|
||
/>
|
||
),
|
||
},
|
||
{
|
||
key: "2",
|
||
label: (
|
||
<PerButton
|
||
type="link"
|
||
text="编辑"
|
||
class="b-link c-red"
|
||
icon={null}
|
||
p="course"
|
||
onClick={() => {
|
||
setCid(Number(record.id));
|
||
setUpdateVisible(true);
|
||
}}
|
||
disabled={null}
|
||
/>
|
||
),
|
||
},
|
||
{
|
||
key: "3",
|
||
label: (
|
||
<PerButton
|
||
type="link"
|
||
text="删除"
|
||
class="b-link c-red"
|
||
icon={null}
|
||
p="course"
|
||
onClick={() => delItem(record.id)}
|
||
disabled={null}
|
||
/>
|
||
),
|
||
},
|
||
];
|
||
|
||
return (
|
||
<Space size="small">
|
||
<PerButton
|
||
type="link"
|
||
text="学员"
|
||
class="b-link c-red"
|
||
icon={null}
|
||
p="course"
|
||
onClick={() => {
|
||
setCid(Number(record.id));
|
||
console.log("学员" + record.id);
|
||
}}
|
||
disabled={null}
|
||
/>
|
||
<div className="form-column"></div>
|
||
<Dropdown menu={{ items }}>
|
||
<Button
|
||
type="link"
|
||
className="b-link c-red"
|
||
onClick={(e) => e.preventDefault()}
|
||
>
|
||
<Space>
|
||
更多
|
||
<DownOutlined />
|
||
</Space>
|
||
</Button>
|
||
</Dropdown>
|
||
</Space>
|
||
);
|
||
},
|
||
},
|
||
];
|
||
|
||
// 删除课程
|
||
const delItem = (id: number) => {
|
||
if (id === 0) {
|
||
return;
|
||
}
|
||
confirm({
|
||
title: "操作确认",
|
||
icon: <ExclamationCircleFilled />,
|
||
content: "确认删除此课程?",
|
||
centered: true,
|
||
okText: "确认",
|
||
cancelText: "取消",
|
||
onOk() {
|
||
course.destroyCourse(id).then(() => {
|
||
message.success("删除成功");
|
||
resetList();
|
||
});
|
||
},
|
||
onCancel() {
|
||
console.log("Cancel");
|
||
},
|
||
});
|
||
};
|
||
|
||
// 获取视频列表
|
||
const getList = () => {
|
||
setLoading(true);
|
||
let categoryIds = category_ids.join(",");
|
||
let depIds = dep_ids.join(",");
|
||
course
|
||
.courseList(page, size, "", "", title, depIds, categoryIds)
|
||
.then((res: any) => {
|
||
setTotal(res.data.total);
|
||
setList(res.data.data);
|
||
setCourseCategoryIds(res.data.course_category_ids);
|
||
setCourseDepIds(res.data.course_dep_ids);
|
||
setCategories(res.data.categories);
|
||
setDepartments(res.data.departments);
|
||
setLoading(false);
|
||
})
|
||
.catch((err: any) => {
|
||
console.log("错误,", err);
|
||
});
|
||
};
|
||
// 重置列表
|
||
const resetList = () => {
|
||
setPage(1);
|
||
setSize(10);
|
||
setList([]);
|
||
setTitle("");
|
||
setRefresh(!refresh);
|
||
};
|
||
|
||
// 加载列表
|
||
useEffect(() => {
|
||
getList();
|
||
}, [category_ids, dep_ids, refresh, page, size]);
|
||
|
||
const paginationProps = {
|
||
current: page, //当前页码
|
||
pageSize: size,
|
||
total: total, // 总条数
|
||
onChange: (page: number, pageSize: number) =>
|
||
handlePageChange(page, pageSize), //改变页码的函数
|
||
showSizeChanger: true,
|
||
};
|
||
|
||
const handlePageChange = (page: number, pageSize: number) => {
|
||
setPage(page);
|
||
setSize(pageSize);
|
||
};
|
||
|
||
const onChange = (key: string) => {
|
||
setTabKey(Number(key));
|
||
};
|
||
|
||
return (
|
||
<>
|
||
<div className="tree-main-body">
|
||
<div className="left-box">
|
||
<Tabs
|
||
defaultActiveKey="1"
|
||
centered
|
||
items={items}
|
||
onChange={onChange}
|
||
/>
|
||
</div>
|
||
<div className="right-box">
|
||
<div className="playedu-main-title float-left mb-24">{selLabel}</div>
|
||
<div className="float-left j-b-flex mb-24">
|
||
<div className="d-flex">
|
||
<PerButton
|
||
type="primary"
|
||
text="新建课程"
|
||
class="mr-16"
|
||
icon={<PlusOutlined />}
|
||
p="course"
|
||
onClick={() => setCreateVisible(true)}
|
||
disabled={null}
|
||
/>
|
||
</div>
|
||
<div className="d-flex">
|
||
<div className="d-flex mr-24">
|
||
<Typography.Text>课程名称:</Typography.Text>
|
||
<Input
|
||
value={title}
|
||
onChange={(e) => {
|
||
setTitle(e.target.value);
|
||
}}
|
||
style={{ width: 160 }}
|
||
placeholder="请输入名称关键字"
|
||
/>
|
||
</div>
|
||
<div className="d-flex">
|
||
<Button className="mr-16" onClick={resetList}>
|
||
重 置
|
||
</Button>
|
||
<Button
|
||
type="primary"
|
||
onClick={() => {
|
||
setPage(1);
|
||
setRefresh(!refresh);
|
||
}}
|
||
>
|
||
查 询
|
||
</Button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div className="float-left">
|
||
<Table
|
||
columns={columns}
|
||
dataSource={list}
|
||
loading={loading}
|
||
pagination={paginationProps}
|
||
rowKey={(record) => record.id}
|
||
/>
|
||
<CourseCreate
|
||
open={createVisible}
|
||
onCancel={() => {
|
||
setCreateVisible(false);
|
||
setRefresh(!refresh);
|
||
}}
|
||
/>
|
||
<CourseHourUpdate
|
||
id={cid}
|
||
open={updateHourVisible}
|
||
onCancel={() => {
|
||
setHourUpdateVisible(false);
|
||
setRefresh(!refresh);
|
||
}}
|
||
/>
|
||
<CourseUpdate
|
||
id={cid}
|
||
open={updateVisible}
|
||
onCancel={() => {
|
||
setUpdateVisible(false);
|
||
setRefresh(!refresh);
|
||
}}
|
||
/>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</>
|
||
);
|
||
};
|