mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-16 12:23:12 +00:00
206 lines
6.9 KiB
TypeScript
206 lines
6.9 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { NavLink, useLocation, useNavigate, useParams } from "react-router-dom";
|
|
import { shortcutService, userService, workspaceService } from "../services";
|
|
import { useAppSelector } from "../store";
|
|
import { unknownWorkspace, unknownWorkspaceUser } from "../store/modules/workspace";
|
|
import useLoading from "../hooks/useLoading";
|
|
import Icon from "../components/Icon";
|
|
import toastHelper from "../components/Toast";
|
|
import Dropdown from "../components/common/Dropdown";
|
|
import Header from "../components/Header";
|
|
import ShortcutListView from "../components/ShortcutListView";
|
|
import MemberListView from "../components/MemberListView";
|
|
import WorkspaceSetting from "../components/WorkspaceSetting";
|
|
import CreateShortcutDialog from "../components/CreateShortcutDialog";
|
|
import UpsertWorkspaceUserDialog from "../components/UpsertWorkspaceUserDialog";
|
|
|
|
interface State {
|
|
workspace: Workspace;
|
|
workspaceUser: WorkspaceUser;
|
|
userList: WorkspaceUser[];
|
|
showCreateShortcutDialog: boolean;
|
|
showUpsertWorkspaceUserDialog: boolean;
|
|
}
|
|
|
|
const WorkspaceDetail: React.FC = () => {
|
|
const navigate = useNavigate();
|
|
const params = useParams();
|
|
const location = useLocation();
|
|
const user = useAppSelector((state) => state.user.user) as User;
|
|
const { shortcutList } = useAppSelector((state) => state.shortcut);
|
|
const [state, setState] = useState<State>({
|
|
workspace: unknownWorkspace,
|
|
workspaceUser: unknownWorkspaceUser,
|
|
userList: [],
|
|
showCreateShortcutDialog: false,
|
|
showUpsertWorkspaceUserDialog: false,
|
|
});
|
|
const loadingState = useLoading();
|
|
|
|
useEffect(() => {
|
|
if (!userService.getState().user) {
|
|
navigate("/user/auth");
|
|
return;
|
|
}
|
|
|
|
const workspace = workspaceService.getWorkspaceByName(params.workspaceName ?? "");
|
|
if (!workspace) {
|
|
toastHelper.error("workspace not found");
|
|
return;
|
|
}
|
|
|
|
loadingState.setLoading();
|
|
Promise.all([
|
|
shortcutService.fetchWorkspaceShortcuts(workspace.id),
|
|
workspaceService.getWorkspaceUser(workspace.id, user.id),
|
|
workspaceService.getWorkspaceUserList(workspace.id),
|
|
])
|
|
.then(([, workspaceUser, workspaceUserList]) => {
|
|
setState({
|
|
...state,
|
|
workspace,
|
|
workspaceUser,
|
|
userList: workspaceUserList,
|
|
});
|
|
})
|
|
.finally(() => {
|
|
loadingState.setFinish();
|
|
});
|
|
}, [params.workspaceName]);
|
|
|
|
useEffect(() => {
|
|
if (location.hash !== "#shortcuts" && location.hash !== "#members" && location.hash !== "#setting") {
|
|
navigate("#shortcuts");
|
|
}
|
|
}, [location.hash]);
|
|
|
|
const handleCreateShortcutButtonClick = () => {
|
|
setState({
|
|
...state,
|
|
showCreateShortcutDialog: true,
|
|
});
|
|
};
|
|
|
|
const handleUpsertWorkspaceMemberButtonClick = () => {
|
|
setState({
|
|
...state,
|
|
showUpsertWorkspaceUserDialog: true,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="w-full h-full flex flex-col justify-start items-start">
|
|
<Header />
|
|
<div className="mx-auto max-w-4xl w-full px-3 pb-6 flex flex-col justify-start items-start">
|
|
<div className="w-full flex flex-row justify-between items-center mt-4 mb-4">
|
|
<div className="flex flex-row justify-start items-center space-x-4">
|
|
<NavLink to="#shortcuts" className={`${location.hash === "#shortcuts" && "underline"}`}>
|
|
Shortcuts
|
|
</NavLink>
|
|
<NavLink to="#members" className={`${location.hash === "#members" && "underline"}`}>
|
|
Members
|
|
</NavLink>
|
|
<NavLink to="#setting" className={`${location.hash === "#setting" && "underline"}`}>
|
|
Setting
|
|
</NavLink>
|
|
</div>
|
|
<div>
|
|
<Dropdown
|
|
trigger={
|
|
<button className="w-32 flex flex-row justify-start items-center border px-3 leading-10 rounded-lg cursor-pointer hover:shadow">
|
|
<Icon.Plus className="w-4 h-auto mr-1" /> Add new...
|
|
</button>
|
|
}
|
|
actions={
|
|
<>
|
|
<button
|
|
className="w-full flex flex-row justify-start items-center px-3 leading-10 rounded cursor-pointer hover:bg-gray-100"
|
|
onClick={handleCreateShortcutButtonClick}
|
|
>
|
|
Shortcut
|
|
</button>
|
|
<button
|
|
className="w-full flex flex-row justify-start items-center px-3 leading-10 rounded cursor-pointer hover:bg-gray-100"
|
|
onClick={handleUpsertWorkspaceMemberButtonClick}
|
|
>
|
|
Member
|
|
</button>
|
|
</>
|
|
}
|
|
actionsClassName="!w-32"
|
|
/>
|
|
</div>
|
|
</div>
|
|
{loadingState.isLoading ? (
|
|
<div className="py-4 w-full flex flex-row justify-center items-center">
|
|
<Icon.Loader className="mr-2 w-5 h-auto animate-spin" />
|
|
loading
|
|
</div>
|
|
) : (
|
|
<>
|
|
{location.hash === "#shortcuts" && <ShortcutListView workspaceId={state.workspace.id} shortcutList={shortcutList} />}
|
|
{location.hash === "#members" && (
|
|
<MemberListView
|
|
key={Date.now()}
|
|
workspaceId={state.workspace.id}
|
|
workspaceUser={state.workspaceUser}
|
|
userList={state.userList}
|
|
/>
|
|
)}
|
|
{location.hash === "#setting" && <WorkspaceSetting workspaceId={state.workspace.id} />}
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{state.showCreateShortcutDialog && (
|
|
<CreateShortcutDialog
|
|
workspaceId={state.workspace.id}
|
|
onClose={() => {
|
|
setState({
|
|
...state,
|
|
showCreateShortcutDialog: false,
|
|
});
|
|
}}
|
|
onConfirm={() => {
|
|
setState({
|
|
...state,
|
|
showCreateShortcutDialog: false,
|
|
});
|
|
if (location.hash !== "#shortcuts") {
|
|
navigate("#shortcuts");
|
|
}
|
|
}}
|
|
/>
|
|
)}
|
|
|
|
{state.showUpsertWorkspaceUserDialog && (
|
|
<UpsertWorkspaceUserDialog
|
|
workspaceId={state.workspace.id}
|
|
onClose={() => {
|
|
setState({
|
|
...state,
|
|
showUpsertWorkspaceUserDialog: false,
|
|
});
|
|
}}
|
|
onConfirm={async () => {
|
|
const workspaceUserList = await workspaceService.getWorkspaceUserList(state.workspace.id);
|
|
setState({
|
|
...state,
|
|
userList: workspaceUserList,
|
|
showUpsertWorkspaceUserDialog: false,
|
|
});
|
|
|
|
if (location.hash !== "#members") {
|
|
navigate("#members");
|
|
}
|
|
}}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default WorkspaceDetail;
|