mirror of https://github.com/portainer/portainer
201 lines
4.8 KiB
TypeScript
201 lines
4.8 KiB
TypeScript
import {
|
|
Box,
|
|
Clock,
|
|
Layers,
|
|
List,
|
|
Lock,
|
|
Share2,
|
|
Shuffle,
|
|
Trello,
|
|
Clipboard,
|
|
Edit,
|
|
} from 'react-feather';
|
|
|
|
import {
|
|
type Environment,
|
|
type EnvironmentId,
|
|
EnvironmentStatus,
|
|
} from '@/portainer/environments/types';
|
|
import {
|
|
Authorized,
|
|
useUser,
|
|
isEnvironmentAdmin,
|
|
} from '@/portainer/hooks/useUser';
|
|
import { useInfo, useVersion } from '@/docker/services/system.service';
|
|
|
|
import { SidebarItem } from './SidebarItem';
|
|
import { DashboardLink } from './items/DashboardLink';
|
|
import { VolumesLink } from './items/VolumesLink';
|
|
|
|
interface Props {
|
|
environmentId: EnvironmentId;
|
|
environment: Environment;
|
|
}
|
|
|
|
export function DockerSidebar({ environmentId, environment }: Props) {
|
|
const { user } = useUser();
|
|
const isAdmin = isEnvironmentAdmin(user, environmentId);
|
|
|
|
const areStacksVisible =
|
|
isAdmin || environment.SecuritySettings.allowStackManagementForRegularUsers;
|
|
|
|
const envInfoQuery = useInfo(
|
|
environmentId,
|
|
(info) => !!info.Swarm?.NodeID && !!info.Swarm?.ControlAvailable
|
|
);
|
|
|
|
const envVersionQuery = useVersion(environmentId, (version) =>
|
|
parseFloat(version.ApiVersion)
|
|
);
|
|
|
|
const isSwarmManager = envInfoQuery.data;
|
|
const apiVersion = envVersionQuery.data || 0;
|
|
|
|
const offlineMode = environment.Status === EnvironmentStatus.Down;
|
|
|
|
const setupSubMenuProps = isSwarmManager
|
|
? {
|
|
label: 'Swarm',
|
|
icon: Trello,
|
|
to: 'docker.swarm',
|
|
dataCy: 'portainerSidebar-swarm',
|
|
}
|
|
: {
|
|
label: 'Host',
|
|
icon: Trello,
|
|
to: 'docker.host',
|
|
dataCy: 'portainerSidebar-host',
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<DashboardLink
|
|
environmentId={environmentId}
|
|
platformPath="docker"
|
|
data-cy="dockerSidebar-dashboard"
|
|
/>
|
|
|
|
<SidebarItem
|
|
label="App Templates"
|
|
icon={Edit}
|
|
to="docker.templates"
|
|
params={{ endpointId: environmentId }}
|
|
data-cy="portainerSidebar-appTemplates"
|
|
>
|
|
<SidebarItem
|
|
label="Custom Templates"
|
|
to="docker.templates.custom"
|
|
params={{ endpointId: environmentId }}
|
|
data-cy="dockerSidebar-customTemplates"
|
|
/>
|
|
</SidebarItem>
|
|
|
|
{areStacksVisible && (
|
|
<SidebarItem
|
|
to="docker.stacks"
|
|
params={{ endpointId: environmentId }}
|
|
icon={Layers}
|
|
label="Stacks"
|
|
data-cy="dockerSidebar-stacks"
|
|
/>
|
|
)}
|
|
|
|
{isSwarmManager && (
|
|
<SidebarItem
|
|
to="docker.services"
|
|
params={{ endpointId: environmentId }}
|
|
icon={Shuffle}
|
|
label="Services"
|
|
data-cy="dockerSidebar-services"
|
|
/>
|
|
)}
|
|
|
|
<SidebarItem
|
|
to="docker.containers"
|
|
params={{ endpointId: environmentId }}
|
|
icon={Box}
|
|
label="Containers"
|
|
data-cy="dockerSidebar-containers"
|
|
/>
|
|
|
|
<SidebarItem
|
|
to="docker.images"
|
|
params={{ endpointId: environmentId }}
|
|
icon={List}
|
|
label="Images"
|
|
data-cy="dockerSidebar-images"
|
|
/>
|
|
|
|
<SidebarItem
|
|
to="docker.networks"
|
|
params={{ endpointId: environmentId }}
|
|
icon={Share2}
|
|
label="Networks"
|
|
data-cy="dockerSidebar-networks"
|
|
/>
|
|
|
|
<VolumesLink
|
|
environmentId={environmentId}
|
|
platformPath="docker"
|
|
data-cy="dockerSidebar-volumes"
|
|
/>
|
|
|
|
{apiVersion >= 1.3 && isSwarmManager && (
|
|
<SidebarItem
|
|
to="docker.configs"
|
|
params={{ endpointId: environmentId }}
|
|
icon={Clipboard}
|
|
label="Configs"
|
|
data-cy="dockerSidebar-configs"
|
|
/>
|
|
)}
|
|
|
|
{apiVersion >= 1.25 && isSwarmManager && (
|
|
<SidebarItem
|
|
to="docker.secrets"
|
|
params={{ endpointId: environmentId }}
|
|
icon={Lock}
|
|
label="Secrets"
|
|
data-cy="dockerSidebar-secrets"
|
|
/>
|
|
)}
|
|
|
|
{!isSwarmManager && isAdmin && !offlineMode && (
|
|
<SidebarItem
|
|
to="docker.events"
|
|
params={{ endpointId: environmentId }}
|
|
icon={Clock}
|
|
label="Events"
|
|
data-cy="dockerSidebar-events"
|
|
/>
|
|
)}
|
|
|
|
<SidebarItem
|
|
label={setupSubMenuProps.label}
|
|
icon={setupSubMenuProps.icon}
|
|
to={setupSubMenuProps.to}
|
|
params={{ endpointId: environmentId }}
|
|
data-cy={setupSubMenuProps.dataCy}
|
|
>
|
|
<Authorized
|
|
authorizations="PortainerEndpointUpdateSettings"
|
|
adminOnlyCE
|
|
environmentId={environmentId}
|
|
>
|
|
<SidebarItem
|
|
to="docker.featuresConfiguration"
|
|
params={{ endpointId: environmentId }}
|
|
label="Setup"
|
|
/>
|
|
</Authorized>
|
|
|
|
<SidebarItem
|
|
to="docker.registries"
|
|
params={{ endpointId: environmentId }}
|
|
label="Registries"
|
|
/>
|
|
</SidebarItem>
|
|
</>
|
|
);
|
|
}
|