You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
3.3 KiB
134 lines
3.3 KiB
import { Button, Space, Table, Tag } from "antd";
|
|
import { useTeamData } from "../../Hooks/Teams";
|
|
import { TUser } from "../../types/User/TUser";
|
|
import {
|
|
QueryObserverResult,
|
|
RefetchOptions,
|
|
RefetchQueryFilters,
|
|
} from "react-query";
|
|
import { useNavigate } from "react-router-dom";
|
|
// @ts-ignore
|
|
import tagIcon from "../../assets/tagIcon.svg";
|
|
import { isMobile, role } from "../../App";
|
|
import { userController } from "../../API/LayoutApi/users";
|
|
|
|
import { theme } from "antd";
|
|
|
|
const UserTable = ({
|
|
data,
|
|
isLoading,
|
|
refetch,
|
|
}: {
|
|
data: TUser[] | undefined;
|
|
isLoading: boolean;
|
|
refetch: <TPageData>(
|
|
options?: (RefetchOptions & RefetchQueryFilters<TPageData>) | undefined
|
|
) => Promise<QueryObserverResult<TUser[], unknown>>;
|
|
}) => {
|
|
const navigate = useNavigate();
|
|
const Row = (record: TUser) => {
|
|
let isTextSelected = false;
|
|
document.addEventListener("selectionchange", () => {
|
|
const selection = window.getSelection();
|
|
if (selection !== null && selection.toString() !== "") {
|
|
isTextSelected = true;
|
|
} else {
|
|
isTextSelected = false;
|
|
}
|
|
});
|
|
|
|
return {
|
|
onClick: () => {
|
|
if (isTextSelected) {
|
|
return;
|
|
}
|
|
navigate(`/users/${record.id}`);
|
|
},
|
|
};
|
|
};
|
|
|
|
const { token } = theme.useToken();
|
|
|
|
return (
|
|
<div style={{ paddingBottom: 40 }}>
|
|
<Table
|
|
onRow={(record) => Row(record)}
|
|
dataSource={data?.map((u, i) => ({
|
|
no: i + 1,
|
|
team_name: u?.team?.name,
|
|
role_name: u?.role?.name,
|
|
action: { id: u.id },
|
|
...u,
|
|
}))}
|
|
loading={isLoading}
|
|
size="small"
|
|
columns={[
|
|
{
|
|
title: <img src={tagIcon} alt="" />,
|
|
dataIndex: "no",
|
|
},
|
|
{
|
|
title: "Username",
|
|
dataIndex: "username",
|
|
},
|
|
{
|
|
title: "Team",
|
|
dataIndex: "team_name",
|
|
},
|
|
{
|
|
title: "Role",
|
|
dataIndex: "role_name",
|
|
},
|
|
{
|
|
title: "Is Active",
|
|
dataIndex: "is_active",
|
|
render: (tag: boolean) => (
|
|
<Tag color={tag ? "geekblue" : "red"}>
|
|
{tag ? "True" : "False"}
|
|
</Tag>
|
|
),
|
|
filters: [
|
|
{
|
|
text: "True",
|
|
value: true,
|
|
},
|
|
{
|
|
text: "False",
|
|
value: false,
|
|
},
|
|
],
|
|
onFilter: (value: any, record: any) => {
|
|
return record.is_active === value;
|
|
},
|
|
},
|
|
]}
|
|
rowClassName={(record, index) =>
|
|
index % 2 === 0 ? "odd-row" : "even-row"
|
|
}
|
|
scroll={{ x: "768px" }}
|
|
// pagination={{
|
|
// pageSize: 10,
|
|
// size: "default",
|
|
// style: {
|
|
// margin: 0,
|
|
// justifyContent: "end",
|
|
// position: "fixed",
|
|
// bottom: 0,
|
|
// left: 0,
|
|
// width: "100%",
|
|
// backgroundColor: token.colorBgContainer,
|
|
// boxShadow: "0 4px 8px rgba(0, 0, 0, 0.4)",
|
|
// padding: "10px 0",
|
|
// zIndex: 1000,
|
|
// },
|
|
// showLessItems: true,
|
|
// }}
|
|
pagination={false}
|
|
bordered
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default UserTable;
|