mirror of
https://github.com/PlayEdu/backend
synced 2025-06-27 08:32:43 +08:00
201 lines
5.4 KiB
TypeScript
201 lines
5.4 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { Button, Modal, Table, message, Space } from "antd";
|
|
import { resource } from "../../../api";
|
|
import styles from "./index.module.less";
|
|
import { ExclamationCircleFilled } from "@ant-design/icons";
|
|
import type { ColumnsType } from "antd/es/table";
|
|
import { dateFormat } from "../../../utils/index";
|
|
import { TreeCategory, DurationText, PerButton } from "../../../compenents";
|
|
import { UploadVideoButton } from "../../../compenents/upload-video-button";
|
|
import icon from "../../../assets/images/commen/icon-video.png";
|
|
|
|
const { confirm } = Modal;
|
|
|
|
interface DataType {
|
|
id: React.Key;
|
|
name: string;
|
|
created_at: string;
|
|
disk: string;
|
|
}
|
|
|
|
export const ResourceVideosPage = () => {
|
|
const [videoList, setVideoList] = useState<any>([]);
|
|
const [videosExtra, setVideoExtra] = useState<any>([]);
|
|
const [adminUsers, setAdminUsers] = 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 [selLabel, setLabel] = useState<string>("全部视频");
|
|
|
|
const columns: ColumnsType<DataType> = [
|
|
// {
|
|
// title: "封面",
|
|
// dataIndex: "id",
|
|
// render: (id: string) => (
|
|
// <Image
|
|
// preview={false}
|
|
// width={120}
|
|
// height={80}
|
|
// src={videosExtra[id].poster}
|
|
// ></Image>
|
|
// ),
|
|
// },
|
|
{
|
|
title: "视频名称",
|
|
dataIndex: "name",
|
|
render: (text: string) => (
|
|
<div className="d-flex">
|
|
<img style={{ width: 16, height: 16 }} src={icon} alt="" />
|
|
<span className="ml-8">{text}</span>
|
|
</div>
|
|
),
|
|
},
|
|
{
|
|
title: "视频时长",
|
|
dataIndex: "id",
|
|
render: (id: string) => (
|
|
<DurationText duration={videosExtra[id].duration}></DurationText>
|
|
),
|
|
},
|
|
{
|
|
title: "创建人",
|
|
dataIndex: "admin_id",
|
|
render: (text: number) =>
|
|
JSON.stringify(adminUsers) !== "{}" && <span>{adminUsers[text]}</span>,
|
|
},
|
|
{
|
|
title: "视频时长",
|
|
dataIndex: "created_at",
|
|
render: (text: string) => <span>{dateFormat(text)}</span>,
|
|
},
|
|
{
|
|
title: "操作",
|
|
key: "action",
|
|
fixed: "right",
|
|
width: 100,
|
|
render: (_, record: any) => (
|
|
<Space size="small">
|
|
<PerButton
|
|
type="link"
|
|
text="删除"
|
|
class="b-link c-red"
|
|
icon={null}
|
|
p="resource-destroy"
|
|
onClick={() => removeResource(record.id)}
|
|
disabled={null}
|
|
/>
|
|
</Space>
|
|
),
|
|
},
|
|
];
|
|
|
|
// 删除图片
|
|
const removeResource = (id: number) => {
|
|
if (id === 0) {
|
|
return;
|
|
}
|
|
confirm({
|
|
title: "操作确认",
|
|
icon: <ExclamationCircleFilled />,
|
|
content: "确认删除此视频?",
|
|
okText: "确认",
|
|
okType: "danger",
|
|
cancelText: "取消",
|
|
onOk() {
|
|
resource.destroyResource(id).then(() => {
|
|
message.success("删除成功");
|
|
resetVideoList();
|
|
});
|
|
},
|
|
onCancel() {
|
|
console.log("Cancel");
|
|
},
|
|
});
|
|
};
|
|
|
|
// 获取视频列表
|
|
const getVideoList = () => {
|
|
setLoading(true);
|
|
let categoryIds = category_ids.join(",");
|
|
resource
|
|
.resourceList(page, size, "", "", "", "VIDEO", categoryIds)
|
|
.then((res: any) => {
|
|
setTotal(res.data.result.total);
|
|
setVideoList(res.data.result.data);
|
|
setVideoExtra(res.data.videos_extra);
|
|
setAdminUsers(res.data.admin_users);
|
|
setLoading(false);
|
|
})
|
|
.catch((err: any) => {
|
|
console.log("错误,", err);
|
|
});
|
|
};
|
|
// 重置列表
|
|
const resetVideoList = () => {
|
|
setPage(1);
|
|
setSize(10);
|
|
setVideoList([]);
|
|
setRefresh(!refresh);
|
|
};
|
|
|
|
// 加载视频列表
|
|
useEffect(() => {
|
|
getVideoList();
|
|
}, [category_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);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="tree-main-body">
|
|
<div className="left-box">
|
|
<TreeCategory
|
|
text={"视频"}
|
|
onUpdate={(keys: any, title: any) => {
|
|
setCategoryIds(keys);
|
|
setLabel(title);
|
|
}}
|
|
/>
|
|
</div>
|
|
<div className="right-box">
|
|
<div className="playedu-main-title float-left mb-24">
|
|
视频 / {selLabel}
|
|
</div>
|
|
<div className="float-left mb-24">
|
|
<UploadVideoButton
|
|
categoryIds={category_ids}
|
|
onUpdate={() => {
|
|
resetVideoList();
|
|
}}
|
|
></UploadVideoButton>
|
|
</div>
|
|
<div className="float-left">
|
|
<Table
|
|
columns={columns}
|
|
dataSource={videoList}
|
|
loading={loading}
|
|
pagination={paginationProps}
|
|
rowKey={(record) => record.id}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|