misc_pterodactyl-panel/resources/scripts/components/server/files/FileManagerBreadcrumbs.tsx

82 lines
2.7 KiB
TypeScript
Raw Normal View History

2022-11-25 20:25:03 +00:00
import { Fragment, useEffect, useState } from 'react';
import { NavLink, useParams } from 'react-router-dom';
2020-07-05 00:57:24 +00:00
import tw from 'twin.macro';
2019-10-26 20:16:27 +00:00
import { encodePathSegments } from '@/helpers';
import { ServerContext } from '@/state/server';
2019-12-22 00:38:40 +00:00
interface Props {
renderLeft?: JSX.Element;
2019-12-22 00:38:40 +00:00
withinFileEditor?: boolean;
isNewFile?: boolean;
}
export default ({ renderLeft, withinFileEditor, isNewFile }: Props) => {
2022-11-25 20:25:03 +00:00
const id = ServerContext.useStoreState(state => state.server.data!.id);
const directory = ServerContext.useStoreState(state => state.files.directory);
const params = useParams<'*'>();
const [file, setFile] = useState<string>();
2019-10-26 20:16:27 +00:00
useEffect(() => {
if (!withinFileEditor || isNewFile) {
return;
}
if (withinFileEditor && params['*'] !== undefined && !isNewFile) {
setFile(decodeURIComponent(params['*']).split('/').pop());
}
}, [withinFileEditor, isNewFile]);
2019-10-26 20:16:27 +00:00
const breadcrumbs = (): { name: string; path?: string }[] => {
if (directory === '.') {
return [];
2019-10-26 20:16:27 +00:00
}
return directory
.split('/')
2022-11-25 20:25:03 +00:00
.filter(directory => !!directory)
.map((directory, index, dirs) => {
if (!withinFileEditor && index === dirs.length - 1) {
return { name: directory };
}
2019-10-26 20:16:27 +00:00
return { name: directory, path: `/${dirs.slice(0, index + 1).join('/')}` };
});
};
2019-10-26 20:16:27 +00:00
return (
<div css={tw`flex flex-grow-0 items-center text-sm text-neutral-500 overflow-x-hidden`}>
{renderLeft || <div css={tw`w-12`} />}/<span css={tw`px-1 text-neutral-300`}>home</span>/
<NavLink to={`/server/${id}/files`} css={tw`px-1 text-neutral-200 no-underline hover:text-neutral-100`}>
2019-10-26 20:16:27 +00:00
container
</NavLink>
/
{breadcrumbs().map((crumb, index) =>
crumb.path ? (
2022-11-25 20:25:03 +00:00
<Fragment key={index}>
<NavLink
to={`/server/${id}/files#${encodePathSegments(crumb.path)}`}
css={tw`px-1 text-neutral-200 no-underline hover:text-neutral-100`}
end
>
{crumb.name}
</NavLink>
/
2022-11-25 20:25:03 +00:00
</Fragment>
) : (
<span key={index} css={tw`px-1 text-neutral-300`}>
{crumb.name}
</span>
2022-11-25 20:25:03 +00:00
),
)}
{file && (
2022-11-25 20:25:03 +00:00
<Fragment>
<span css={tw`px-1 text-neutral-300`}>{file}</span>
2022-11-25 20:25:03 +00:00
</Fragment>
)}
2019-10-26 20:16:27 +00:00
</div>
);
};