e63f8eac76
Closes #1760
92 lines
2.3 KiB
TypeScript
92 lines
2.3 KiB
TypeScript
import { useCallback } from 'react';
|
|
import { useMatch, useNavigate, useResolvedPath } from 'react-router-dom';
|
|
|
|
import { useAuth } from '@/auth/hooks/useAuth';
|
|
import { AppPath } from '@/types/AppPath';
|
|
import {
|
|
IconColorSwatch,
|
|
IconHierarchy2,
|
|
IconLogout,
|
|
IconSettings,
|
|
IconUserCircle,
|
|
IconUsers,
|
|
} from '@/ui/icon/index';
|
|
import NavItem from '@/ui/navbar/components/NavItem';
|
|
import NavTitle from '@/ui/navbar/components/NavTitle';
|
|
import SubMenuNavbar from '@/ui/navbar/components/SubMenuNavbar';
|
|
|
|
export const SettingsNavbar = () => {
|
|
const navigate = useNavigate();
|
|
|
|
const { signOut } = useAuth();
|
|
|
|
const handleLogout = useCallback(() => {
|
|
signOut();
|
|
navigate(AppPath.SignIn);
|
|
}, [signOut, navigate]);
|
|
|
|
return (
|
|
<SubMenuNavbar backButtonTitle="Settings" displayVersion={true}>
|
|
<NavTitle label="User" />
|
|
<NavItem
|
|
label="Profile"
|
|
to="/settings/profile"
|
|
Icon={IconUserCircle}
|
|
active={
|
|
!!useMatch({
|
|
path: useResolvedPath('/settings/profile').pathname,
|
|
end: true,
|
|
})
|
|
}
|
|
/>
|
|
<NavItem
|
|
label="Experience"
|
|
to="/settings/profile/experience"
|
|
Icon={IconColorSwatch}
|
|
active={
|
|
!!useMatch({
|
|
path: useResolvedPath('/settings/profile/experience').pathname,
|
|
end: true,
|
|
})
|
|
}
|
|
/>
|
|
<NavTitle label="Workspace" />
|
|
<NavItem
|
|
label="General"
|
|
to="/settings/workspace"
|
|
Icon={IconSettings}
|
|
active={
|
|
!!useMatch({
|
|
path: useResolvedPath('/settings/workspace').pathname,
|
|
end: true,
|
|
})
|
|
}
|
|
/>
|
|
<NavItem
|
|
label="Members"
|
|
to="/settings/workspace-members"
|
|
Icon={IconUsers}
|
|
active={
|
|
!!useMatch({
|
|
path: useResolvedPath('/settings/workspace-members').pathname,
|
|
end: true,
|
|
})
|
|
}
|
|
/>
|
|
<NavItem
|
|
label="Data model"
|
|
to="/settings/objects"
|
|
Icon={IconHierarchy2}
|
|
active={
|
|
!!useMatch({
|
|
path: useResolvedPath('/settings/objects').pathname,
|
|
end: true,
|
|
})
|
|
}
|
|
/>
|
|
<NavTitle label="Other" />
|
|
<NavItem label="Logout" onClick={handleLogout} Icon={IconLogout} />
|
|
</SubMenuNavbar>
|
|
);
|
|
};
|