mirror of
https://github.com/docmost/docmost.git
synced 2025-11-22 15:21:10 +10:00
67 lines
2.0 KiB
TypeScript
67 lines
2.0 KiB
TypeScript
import WorkspaceInviteModal from "@/features/workspace/components/members/components/workspace-invite-modal";
|
|
import { Group, SegmentedControl, Space, Text } from "@mantine/core";
|
|
import WorkspaceMembersTable from "@/features/workspace/components/members/components/workspace-members-table";
|
|
import SettingsTitle from "@/components/settings/settings-title.tsx";
|
|
import { useEffect, useState } from "react";
|
|
import { useNavigate, useSearchParams } from "react-router-dom";
|
|
import WorkspaceInvitesTable from "@/features/workspace/components/members/components/workspace-invites-table.tsx";
|
|
import useUserRole from "@/hooks/use-user-role.tsx";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
export default function WorkspaceMembers() {
|
|
const { t } = useTranslation("settings", {
|
|
keyPrefix: "workspace.member",
|
|
});
|
|
const [segmentValue, setSegmentValue] = useState("members");
|
|
const [searchParams] = useSearchParams();
|
|
const { isAdmin } = useUserRole();
|
|
const navigate = useNavigate();
|
|
|
|
useEffect(() => {
|
|
const currentTab = searchParams.get("tab");
|
|
if (currentTab === "invites") {
|
|
setSegmentValue(currentTab);
|
|
}
|
|
}, [searchParams.get("tab")]);
|
|
|
|
const handleSegmentChange = (value: string) => {
|
|
setSegmentValue(value);
|
|
if (value === "invites") {
|
|
navigate(`?tab=${value}`);
|
|
} else {
|
|
navigate("");
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<SettingsTitle title={t("Members")} />
|
|
|
|
{/* <WorkspaceInviteSection /> */}
|
|
{/* <Divider my="lg" /> */}
|
|
|
|
<Group justify="space-between">
|
|
<SegmentedControl
|
|
value={segmentValue}
|
|
onChange={handleSegmentChange}
|
|
data={[
|
|
{ label: t("Members"), value: "members" },
|
|
{ label: t("Pending"), value: "invites" },
|
|
]}
|
|
withItemsBorders={false}
|
|
/>
|
|
|
|
{isAdmin && <WorkspaceInviteModal />}
|
|
</Group>
|
|
|
|
<Space h="lg" />
|
|
|
|
{segmentValue === "invites" ? (
|
|
<WorkspaceInvitesTable />
|
|
) : (
|
|
<WorkspaceMembersTable />
|
|
)}
|
|
</>
|
|
);
|
|
}
|