1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 05:45:22 +02:00

fix(sidebar): sort issues [EE-3447] (#7147)

This commit is contained in:
Chaim Lev-Ari 2022-07-06 08:09:14 +03:00 committed by GitHub
parent d32793e84e
commit b004b33935
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 119 additions and 65 deletions

View file

@ -1,6 +1,6 @@
import { useCurrentStateAndParams, useRouter } from '@uirouter/react';
import { useEffect, useState } from 'react';
import { X } from 'react-feather';
import { X, Slash } from 'react-feather';
import {
PlatformType,
@ -15,35 +15,56 @@ import { getPlatformIcon } from '../portainer/environments/utils/get-platform-ic
import { AzureSidebar } from './AzureSidebar';
import { DockerSidebar } from './DockerSidebar';
import { KubernetesSidebar } from './KubernetesSidebar';
import { SidebarSection } from './SidebarSection';
import { SidebarSection, SidebarSectionTitle } from './SidebarSection';
import { useSidebarState } from './useSidebarState';
export function EnvironmentSidebar() {
const { query: currentEnvironmentQuery, clearEnvironment } =
useCurrentEnvironment();
const environment = currentEnvironmentQuery.data;
if (!environment) {
const { isOpen } = useSidebarState();
if (!isOpen && !environment) {
return null;
}
return (
<div className="rounded border border-dotted py-2 be:bg-gray-10 bg-blue-11 be:border-gray-8 border-blue-9">
{environment ? (
<Content environment={environment} onClear={clearEnvironment} />
) : (
<SidebarSectionTitle>
<div className="flex items-center gap-1">
<span>Environment:</span>
<Slash size="1em" className="text-xl text-gray-6" />
<span className="text-gray-6 text-sm">None selected</span>
</div>
</SidebarSectionTitle>
)}
</div>
);
}
interface ContentProps {
environment: Environment;
onClear: () => void;
}
function Content({ environment, onClear }: ContentProps) {
const platform = getPlatformType(environment.Type);
const Sidebar = getSidebar(platform);
return (
<div className="rounded border border-dotted py-2 be:bg-gray-10 bg-blue-11 be:border-gray-8 border-blue-9">
<SidebarSection
title={PlatformType[platform]}
renderTitle={(className) => (
<Title
className={className}
environment={environment}
onClear={clearEnvironment}
/>
)}
>
<SidebarSection
title={<Title environment={environment} onClear={onClear} />}
aria-label={environment.Name}
showTitleWhenOpen
>
<div className="mt-2">
<Sidebar environmentId={environment.Id} environment={environment} />
</SidebarSection>
</div>
</div>
</SidebarSection>
);
function getSidebar(platform: PlatformType) {
@ -86,38 +107,38 @@ function useCurrentEnvironment() {
}
interface TitleProps {
className: string;
environment: Environment;
onClear(): void;
}
function Title({ className, environment, onClear }: TitleProps) {
function Title({ environment, onClear }: TitleProps) {
const { isOpen } = useSidebarState();
const EnvironmentIcon = getPlatformIcon(environment.Type);
if (!isOpen) {
return (
<li className="w-full flex justify-center" title={environment.Name}>
<div className="w-8 flex justify-center -ml-3" title={environment.Name}>
<EnvironmentIcon className="text-2xl" />
</li>
</div>
);
}
return (
<li className={className}>
<div className="flex items-center gap-2">
<span>Environment</span>
<EnvironmentIcon className="text-2xl" />
<span className="text-white">{environment.Name}</span>
<div className="flex items-center">
<EnvironmentIcon className="text-2xl mr-3" />
<span className="text-white text-ellipsis overflow-hidden whitespace-nowrap">
{environment.Name}
</span>
<button
type="button"
onClick={onClear}
className="flex items-center justify-center be:bg-gray-9 bg-blue-10 rounded border-0 text-sm h-5 w-5 p-1 ml-auto mr-2 text-gray-5 be:text-gray-6 hover:text-white"
>
<X />
</button>
</div>
</li>
<button
title="Clear environment"
type="button"
onClick={onClear}
className="flex items-center justify-center be:bg-gray-9 bg-blue-10 hover:bg-blue-9 be:hover:bg-gray-7 transition-colors duration-200 rounded border-0 text-sm h-5 w-5 p-1 ml-auto mr-2 text-gray-5 be:text-gray-6 hover:text-white be:hover:text-white"
>
<X />
</button>
</div>
);
}