2022-06-23 07:25:56 +00:00
|
|
|
import { usePublicSettings } from '@/portainer/settings/queries';
|
|
|
|
|
|
|
|
import { SidebarItem } from './SidebarItem';
|
|
|
|
import { SidebarSection } from './SidebarSection';
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
isAdmin: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function SettingsSidebar({ isAdmin }: Props) {
|
2022-06-27 16:29:17 +00:00
|
|
|
const teamSyncQuery = usePublicSettings<boolean>({
|
|
|
|
select: (settings) => settings.TeamSync,
|
|
|
|
});
|
2022-06-23 07:25:56 +00:00
|
|
|
|
|
|
|
const showUsersSection =
|
|
|
|
!window.ddExtension && (isAdmin || teamSyncQuery.data);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<SidebarSection title="Settings">
|
|
|
|
{showUsersSection && (
|
|
|
|
<SidebarItem
|
|
|
|
to="portainer.users"
|
|
|
|
label="Users"
|
|
|
|
iconClass="fa-users fa-fw"
|
|
|
|
>
|
|
|
|
<SidebarItem to="portainer.teams" label="Teams" />
|
|
|
|
|
|
|
|
{isAdmin && <SidebarItem to="portainer.roles" label="Roles" />}
|
|
|
|
</SidebarItem>
|
|
|
|
)}
|
|
|
|
{isAdmin && (
|
|
|
|
<>
|
|
|
|
<SidebarItem
|
|
|
|
label="Environments"
|
|
|
|
to="portainer.endpoints"
|
|
|
|
iconClass="fa-plug fa-fw"
|
|
|
|
openOnPaths={['portainer.wizard.endpoints']}
|
|
|
|
>
|
|
|
|
<SidebarItem to="portainer.groups" label="Groups" />
|
|
|
|
<SidebarItem to="portainer.tags" label="Tags" />
|
|
|
|
</SidebarItem>
|
|
|
|
|
|
|
|
<SidebarItem
|
|
|
|
label="Registries"
|
|
|
|
to="portainer.registries"
|
|
|
|
iconClass="fa-database fa-fw"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<SidebarItem
|
|
|
|
label="Authentication logs"
|
|
|
|
to="portainer.authLogs"
|
|
|
|
iconClass="fa-history fa-fw"
|
|
|
|
>
|
|
|
|
<SidebarItem to="portainer.activityLogs" label="Activity Logs" />
|
|
|
|
</SidebarItem>
|
|
|
|
|
|
|
|
<SidebarItem
|
|
|
|
to="portainer.settings"
|
|
|
|
label="Settings"
|
|
|
|
iconClass="fa-cogs fa-fw"
|
|
|
|
>
|
|
|
|
{!window.ddExtension && (
|
|
|
|
<SidebarItem
|
|
|
|
to="portainer.settings.authentication"
|
|
|
|
label="Authentication"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<SidebarItem to="portainer.settings.cloud" label="Cloud" />
|
|
|
|
|
|
|
|
<SidebarItem
|
|
|
|
to="portainer.settings.edgeCompute"
|
|
|
|
label="Edge Compute"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<SidebarItem.Wrapper label="Help / About">
|
|
|
|
<a
|
|
|
|
href={
|
|
|
|
process.env.PORTAINER_EDITION === 'CE'
|
|
|
|
? 'https://www.portainer.io/community_help'
|
|
|
|
: 'https://documentation.portainer.io/r/business-support'
|
|
|
|
}
|
|
|
|
target="_blank"
|
|
|
|
rel="noreferrer"
|
|
|
|
>
|
|
|
|
Help / About
|
|
|
|
</a>
|
|
|
|
</SidebarItem.Wrapper>
|
|
|
|
</SidebarItem>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</SidebarSection>
|
|
|
|
);
|
|
|
|
}
|