153 lines
4.5 KiB
TypeScript
153 lines
4.5 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 {
|
|
IconAt,
|
|
IconCalendarEvent,
|
|
IconColorSwatch,
|
|
IconHierarchy2,
|
|
IconLogout,
|
|
IconMail,
|
|
IconRobot,
|
|
IconSettings,
|
|
IconUserCircle,
|
|
IconUsers,
|
|
} from '@/ui/display/icon';
|
|
import { NavigationDrawerItem } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerItem';
|
|
import { NavigationDrawerItemGroup } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerItemGroup';
|
|
import { NavigationDrawerSection } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerSection';
|
|
import { NavigationDrawerSectionTitle } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerSectionTitle';
|
|
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
|
|
|
|
export const SettingsNavigationDrawerItems = () => {
|
|
const navigate = useNavigate();
|
|
const { signOut } = useAuth();
|
|
|
|
const handleLogout = useCallback(() => {
|
|
signOut();
|
|
navigate(AppPath.SignIn);
|
|
}, [signOut, navigate]);
|
|
|
|
const isMessagingEnabled = useIsFeatureEnabled('IS_MESSAGING_ENABLED');
|
|
const isAccountsItemActive = !!useMatch({
|
|
path: useResolvedPath('/settings/accounts').pathname,
|
|
end: true,
|
|
});
|
|
const isAccountsEmailsItemActive = !!useMatch({
|
|
path: useResolvedPath('/settings/accounts/emails').pathname,
|
|
end: true,
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<NavigationDrawerSection>
|
|
<NavigationDrawerSectionTitle label="User" />
|
|
<NavigationDrawerItem
|
|
label="Profile"
|
|
to="/settings/profile"
|
|
Icon={IconUserCircle}
|
|
active={
|
|
!!useMatch({
|
|
path: useResolvedPath('/settings/profile').pathname,
|
|
end: true,
|
|
})
|
|
}
|
|
/>
|
|
<NavigationDrawerItem
|
|
label="Appearance"
|
|
to="/settings/profile/appearance"
|
|
Icon={IconColorSwatch}
|
|
active={
|
|
!!useMatch({
|
|
path: useResolvedPath('/settings/profile/appearance').pathname,
|
|
end: true,
|
|
})
|
|
}
|
|
/>
|
|
{isMessagingEnabled && (
|
|
<NavigationDrawerItemGroup>
|
|
<NavigationDrawerItem
|
|
label="Accounts"
|
|
to="/settings/accounts"
|
|
Icon={IconAt}
|
|
active={isAccountsItemActive}
|
|
/>
|
|
<NavigationDrawerItem
|
|
level={2}
|
|
label="Emails"
|
|
to="/settings/accounts/emails"
|
|
Icon={IconMail}
|
|
active={isAccountsEmailsItemActive}
|
|
/>
|
|
<NavigationDrawerItem
|
|
level={2}
|
|
label="Calendars"
|
|
Icon={IconCalendarEvent}
|
|
soon
|
|
/>
|
|
</NavigationDrawerItemGroup>
|
|
)}
|
|
</NavigationDrawerSection>
|
|
|
|
<NavigationDrawerSection>
|
|
<NavigationDrawerSectionTitle label="Workspace" />
|
|
<NavigationDrawerItem
|
|
label="General"
|
|
to="/settings/workspace"
|
|
Icon={IconSettings}
|
|
active={
|
|
!!useMatch({
|
|
path: useResolvedPath('/settings/workspace').pathname,
|
|
end: true,
|
|
})
|
|
}
|
|
/>
|
|
<NavigationDrawerItem
|
|
label="Members"
|
|
to="/settings/workspace-members"
|
|
Icon={IconUsers}
|
|
active={
|
|
!!useMatch({
|
|
path: useResolvedPath('/settings/workspace-members').pathname,
|
|
end: true,
|
|
})
|
|
}
|
|
/>
|
|
<NavigationDrawerItem
|
|
label="Data model"
|
|
to="/settings/objects"
|
|
Icon={IconHierarchy2}
|
|
active={
|
|
!!useMatch({
|
|
path: useResolvedPath('/settings/objects').pathname,
|
|
end: false,
|
|
})
|
|
}
|
|
/>
|
|
<NavigationDrawerItem
|
|
label="Developers"
|
|
to="/settings/developers/api-keys"
|
|
Icon={IconRobot}
|
|
active={
|
|
!!useMatch({
|
|
path: useResolvedPath('/settings/developers/api-keys').pathname,
|
|
end: true,
|
|
})
|
|
}
|
|
/>
|
|
</NavigationDrawerSection>
|
|
|
|
<NavigationDrawerSection>
|
|
<NavigationDrawerSectionTitle label="Other" />
|
|
<NavigationDrawerItem
|
|
label="Logout"
|
|
onClick={handleLogout}
|
|
Icon={IconLogout}
|
|
/>
|
|
</NavigationDrawerSection>
|
|
</>
|
|
);
|
|
};
|