mirror of
https://github.com/PlayEdu/backend
synced 2025-06-22 00:12:48 +08:00
406 lines
12 KiB
TypeScript
406 lines
12 KiB
TypeScript
import React, { useState, useEffect } from "react";
|
||
import { Button, Tree, Modal, message, Tooltip } from "antd";
|
||
// import styles from "./index.module.less";
|
||
import { PlusOutlined, ExclamationCircleFilled } from "@ant-design/icons";
|
||
import { resourceCategory } from "../../../api/index";
|
||
import { PerButton } from "../../../compenents";
|
||
import type { DataNode, TreeProps } from "antd/es/tree";
|
||
import { ResourceCategoryCreate } from "./compenents/create";
|
||
import { ResourceCategoryUpdate } from "./compenents/update";
|
||
import { useNavigate } from "react-router-dom";
|
||
import { useSelector } from "react-redux";
|
||
|
||
const { confirm } = Modal;
|
||
|
||
interface Option {
|
||
key: string | number;
|
||
title: any;
|
||
children?: Option[];
|
||
}
|
||
|
||
const ResourceCategoryPage = () => {
|
||
const navigate = useNavigate();
|
||
const permissions = useSelector(
|
||
(state: any) => state.loginUser.value.permissions
|
||
);
|
||
const [loading, setLoading] = useState<boolean>(true);
|
||
const [refresh, setRefresh] = useState(false);
|
||
const [treeData, setTreeData] = useState<any>([]);
|
||
const [selectKey, setSelectKey] = useState<any>([]);
|
||
const [createVisible, setCreateVisible] = useState<boolean>(false);
|
||
const [updateVisible, setUpdateVisible] = useState<boolean>(false);
|
||
const [cid, setCid] = useState<number>(0);
|
||
const [modal, contextHolder] = Modal.useModal();
|
||
|
||
useEffect(() => {
|
||
getData();
|
||
}, [refresh, permissions]);
|
||
|
||
const onSelect = (selectedKeys: any, info: any) => {
|
||
setSelectKey(selectedKeys);
|
||
};
|
||
|
||
const through = (p: string) => {
|
||
if (!permissions) {
|
||
return false;
|
||
}
|
||
return typeof permissions[p] !== "undefined";
|
||
};
|
||
|
||
const getData = () => {
|
||
setLoading(true);
|
||
resourceCategory.resourceCategoryList().then((res: any) => {
|
||
const categories = res.data.categories;
|
||
if (JSON.stringify(categories) !== "{}") {
|
||
const new_arr: Option[] = checkArr(categories, 0);
|
||
setTreeData(new_arr);
|
||
}
|
||
setLoading(false);
|
||
});
|
||
};
|
||
|
||
const checkArr = (categories: any[], id: number) => {
|
||
const arr = [];
|
||
for (let i = 0; i < categories[id].length; i++) {
|
||
if (!categories[categories[id][i].id]) {
|
||
arr.push({
|
||
title: (
|
||
<>
|
||
<div className="w-174px mr-24">{categories[id][i].name}</div>
|
||
<div className="d-flex">
|
||
<Tooltip placement="top" title="可拖拽排序">
|
||
<i
|
||
className="iconfont icon-icon-drag mr-16"
|
||
style={{ fontSize: 24 }}
|
||
/>
|
||
</Tooltip>
|
||
{through("resource-category") && (
|
||
<i
|
||
className="iconfont icon-icon-edit mr-16"
|
||
style={{ fontSize: 24 }}
|
||
onClick={() => {
|
||
setCid(categories[id][i].id);
|
||
setUpdateVisible(true);
|
||
}}
|
||
/>
|
||
)}
|
||
{through("resource-destroy") && (
|
||
<i
|
||
className="iconfont icon-icon-delete"
|
||
style={{ fontSize: 24 }}
|
||
onClick={() => removeItem(categories[id][i].id)}
|
||
/>
|
||
)}
|
||
</div>
|
||
</>
|
||
),
|
||
key: categories[id][i].id,
|
||
});
|
||
} else {
|
||
const new_arr: Option[] = checkArr(categories, categories[id][i].id);
|
||
arr.push({
|
||
title: (
|
||
<>
|
||
<div className="w-174px mr-24">{categories[id][i].name}</div>
|
||
<div className="d-flex">
|
||
<Tooltip placement="top" title="可拖拽排序">
|
||
<i
|
||
className="iconfont icon-icon-drag mr-16"
|
||
style={{ fontSize: 24 }}
|
||
/>
|
||
</Tooltip>
|
||
{through("resource-category") && (
|
||
<i
|
||
className="iconfont icon-icon-edit mr-16"
|
||
style={{ fontSize: 24 }}
|
||
onClick={() => {
|
||
setCid(categories[id][i].id);
|
||
setUpdateVisible(true);
|
||
}}
|
||
/>
|
||
)}
|
||
{through("resource-destroy") && (
|
||
<i
|
||
className="iconfont icon-icon-delete"
|
||
style={{ fontSize: 24 }}
|
||
onClick={() => removeItem(categories[id][i].id)}
|
||
/>
|
||
)}
|
||
</div>
|
||
</>
|
||
),
|
||
key: categories[id][i].id,
|
||
children: new_arr,
|
||
});
|
||
}
|
||
}
|
||
return arr;
|
||
};
|
||
|
||
const resetData = () => {
|
||
setTreeData([]);
|
||
setRefresh(!refresh);
|
||
};
|
||
|
||
const removeItem = (id: number) => {
|
||
if (id === 0) {
|
||
return;
|
||
}
|
||
resourceCategory.checkDestroy(id).then((res: any) => {
|
||
if (
|
||
res.data.children.length === 0 &&
|
||
res.data.courses.length === 0 &&
|
||
res.data.images.length === 0 &&
|
||
res.data.videos.length === 0
|
||
) {
|
||
delUser(id);
|
||
} else {
|
||
if (res.data.children.length > 0) {
|
||
modal.warning({
|
||
title: "操作确认",
|
||
centered: true,
|
||
okText: "好的",
|
||
content: (
|
||
<p>
|
||
此分类下包含
|
||
<span className="c-red">
|
||
({res.data.children.length}个子分类)
|
||
</span>
|
||
,请先解除关联再删除!
|
||
</p>
|
||
),
|
||
});
|
||
} else {
|
||
modal.warning({
|
||
title: "操作确认",
|
||
centered: true,
|
||
okText: "好的",
|
||
content: (
|
||
<p>
|
||
此分类已关联
|
||
{res.data.courses.length > 0 && (
|
||
<Button
|
||
style={{ paddingLeft: 4, paddingRight: 4 }}
|
||
type="link"
|
||
danger
|
||
onClick={() => navigate("/course")}
|
||
>
|
||
({res.data.courses.length}个线上课程),
|
||
</Button>
|
||
)}
|
||
{res.data.videos.length > 0 && (
|
||
<Button
|
||
type="link"
|
||
style={{ paddingLeft: 4, paddingRight: 4 }}
|
||
danger
|
||
onClick={() => navigate("/videos")}
|
||
>
|
||
({res.data.videos.length}个视频文件),
|
||
</Button>
|
||
)}
|
||
{res.data.images.length > 0 && (
|
||
<Button
|
||
type="link"
|
||
style={{ paddingLeft: 4, paddingRight: 4 }}
|
||
danger
|
||
onClick={() => navigate("/images")}
|
||
>
|
||
({res.data.images.length}个图片文件),
|
||
</Button>
|
||
)}
|
||
请先解除关联再删除!
|
||
</p>
|
||
),
|
||
});
|
||
}
|
||
}
|
||
});
|
||
};
|
||
|
||
const delUser = (id: any) => {
|
||
confirm({
|
||
title: "操作确认",
|
||
icon: <ExclamationCircleFilled />,
|
||
content: "确认删除此分类?",
|
||
centered: true,
|
||
okText: "确认",
|
||
cancelText: "取消",
|
||
onOk() {
|
||
resourceCategory.destroyResourceCategory(id).then((res: any) => {
|
||
message.success("操作成功");
|
||
resetData();
|
||
});
|
||
},
|
||
onCancel() {
|
||
console.log("Cancel");
|
||
},
|
||
});
|
||
};
|
||
|
||
const onDragEnter: TreeProps["onDragEnter"] = (info) => {
|
||
console.log(info);
|
||
// expandedKeys 需要受控时设置
|
||
// setExpandedKeys(info.expandedKeys)
|
||
};
|
||
|
||
const onDrop: TreeProps["onDrop"] = (info) => {
|
||
const dropKey = info.node.key;
|
||
const dragKey = info.dragNode.key;
|
||
const dropPos = info.node.pos.split("-");
|
||
const dropPosition =
|
||
info.dropPosition - Number(dropPos[dropPos.length - 1]);
|
||
const loop = (
|
||
data: DataNode[],
|
||
key: React.Key,
|
||
callback: (node: DataNode, i: number, data: DataNode[]) => void
|
||
) => {
|
||
for (let i = 0; i < data.length; i++) {
|
||
if (data[i].key === key) {
|
||
return callback(data[i], i, data);
|
||
}
|
||
if (data[i].children) {
|
||
loop(data[i].children!, key, callback);
|
||
}
|
||
}
|
||
};
|
||
const data = [...treeData];
|
||
let isTop = false;
|
||
|
||
for (let i = 0; i < data.length; i++) {
|
||
if (data[i].key === dragKey) {
|
||
isTop = true;
|
||
}
|
||
}
|
||
|
||
// Find dragObject
|
||
let dragObj: DataNode;
|
||
loop(data, dragKey, (item, index, arr) => {
|
||
arr.splice(index, 1);
|
||
dragObj = item;
|
||
});
|
||
|
||
if (!info.dropToGap) {
|
||
// Drop on the content
|
||
loop(data, dropKey, (item) => {
|
||
item.children = item.children || [];
|
||
// where to insert 示例添加到头部,可以是随意位置
|
||
item.children.unshift(dragObj);
|
||
});
|
||
} else if (
|
||
((info.node as any).props.children || []).length > 0 && // Has children
|
||
(info.node as any).props.expanded && // Is expanded
|
||
dropPosition === 1 // On the bottom gap
|
||
) {
|
||
loop(data, dropKey, (item) => {
|
||
item.children = item.children || [];
|
||
// where to insert 示例添加到头部,可以是随意位置
|
||
item.children.unshift(dragObj);
|
||
// in previous version, we use item.children.push(dragObj) to insert the
|
||
// item to the tail of the children
|
||
});
|
||
} else {
|
||
let ar: DataNode[] = [];
|
||
let i: number;
|
||
loop(data, dropKey, (_item, index, arr) => {
|
||
ar = arr;
|
||
i = index;
|
||
});
|
||
if (dropPosition === -1) {
|
||
ar.splice(i!, 0, dragObj!);
|
||
} else {
|
||
ar.splice(i! + 1, 0, dragObj!);
|
||
}
|
||
}
|
||
setTreeData(data);
|
||
submitDrop(isTop, data, dragKey);
|
||
};
|
||
|
||
const submitDrop = (isTop: boolean, data: any, key: any) => {
|
||
let result = checkDropArr(data, key);
|
||
if (result) {
|
||
if (isTop) {
|
||
resourceCategory.dropSameClass(result.ids).then((res: any) => {
|
||
console.log("ok");
|
||
});
|
||
} else {
|
||
submitChildDrop(key, 0, result);
|
||
}
|
||
}
|
||
};
|
||
|
||
const submitChildDrop = (key: any, pid: any, ids: any) => {
|
||
resourceCategory.dropDiffClass(key, pid, ids.ids).then((res: any) => {
|
||
console.log("ok");
|
||
});
|
||
};
|
||
|
||
const checkDropArr = (data: any, key: any) => {
|
||
let ids = [];
|
||
let isSame = false;
|
||
for (let i = 0; i < data.length; i++) {
|
||
ids.push(data[i].key);
|
||
if (data[i].key === key) {
|
||
isSame = true;
|
||
}
|
||
if (data[i].children) {
|
||
let res: any = checkDropArr(data[i].children, key);
|
||
if (res) {
|
||
submitChildDrop(key, data[i].key, res);
|
||
}
|
||
}
|
||
}
|
||
if (isSame) {
|
||
return { key, ids };
|
||
}
|
||
};
|
||
|
||
return (
|
||
<>
|
||
<div className="playedu-main-top mb-24">
|
||
{contextHolder}
|
||
<div className="d-flex">
|
||
<PerButton
|
||
type="primary"
|
||
text="新建分类"
|
||
class="mr-16"
|
||
icon={<PlusOutlined />}
|
||
p="resource-category"
|
||
onClick={() => setCreateVisible(true)}
|
||
disabled={null}
|
||
/>
|
||
</div>
|
||
</div>
|
||
<div className="playedu-main-body">
|
||
<div style={{ width: 366 }}>
|
||
<Tree
|
||
onSelect={onSelect}
|
||
treeData={treeData}
|
||
draggable
|
||
blockNode
|
||
onDragEnter={onDragEnter}
|
||
onDrop={onDrop}
|
||
switcherIcon={<i className="iconfont icon-icon-fold c-gray" />}
|
||
/>
|
||
</div>
|
||
<ResourceCategoryCreate
|
||
open={createVisible}
|
||
onCancel={() => {
|
||
setCreateVisible(false);
|
||
setRefresh(!refresh);
|
||
}}
|
||
/>
|
||
<ResourceCategoryUpdate
|
||
id={cid}
|
||
open={updateVisible}
|
||
onCancel={() => {
|
||
setUpdateVisible(false);
|
||
setRefresh(!refresh);
|
||
}}
|
||
/>
|
||
</div>
|
||
</>
|
||
);
|
||
};
|
||
|
||
export default ResourceCategoryPage;
|