mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-18 13:15:27 +00:00
125 lines
5.0 KiB
TypeScript
125 lines
5.0 KiB
TypeScript
import { Divider } from "@mui/joy";
|
|
import classNames from "classnames";
|
|
import { useEffect, useState } from "react";
|
|
import toast from "react-hot-toast";
|
|
import { useParams } from "react-router-dom";
|
|
import Icon from "@/components/Icon";
|
|
import ShortcutFrame from "@/components/ShortcutFrame";
|
|
import ShortcutView from "@/components/ShortcutView";
|
|
import useResponsiveWidth from "@/hooks/useResponsiveWidth";
|
|
import useCollectionStore from "@/stores/v1/collection";
|
|
import useShortcutStore from "@/stores/v1/shortcut";
|
|
import useUserStore from "@/stores/v1/user";
|
|
import { Collection } from "@/types/proto/api/v2/collection_service";
|
|
import { Shortcut } from "@/types/proto/api/v2/shortcut_service";
|
|
import { convertShortcutFromPb } from "@/utils/shortcut";
|
|
|
|
const CollectionSpace = () => {
|
|
const { collectionName } = useParams();
|
|
const { sm } = useResponsiveWidth();
|
|
const userStore = useUserStore();
|
|
const collectionStore = useCollectionStore();
|
|
const shortcutStore = useShortcutStore();
|
|
const [collection, setCollection] = useState<Collection>();
|
|
const [shortcuts, setShortcuts] = useState<Shortcut[]>([]);
|
|
const [selectedShortcut, setSelectedShortcut] = useState<Shortcut>();
|
|
|
|
if (!collectionName) {
|
|
return null;
|
|
}
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
try {
|
|
const collection = await collectionStore.fetchCollectionByName(collectionName);
|
|
await userStore.getOrFetchUserById(collection.creatorId);
|
|
setCollection(collection);
|
|
setShortcuts([]);
|
|
for (const shortcutId of collection.shortcutIds) {
|
|
try {
|
|
const shortcut = await shortcutStore.getOrFetchShortcutById(shortcutId);
|
|
setShortcuts((shortcuts) => {
|
|
return [...shortcuts, shortcut];
|
|
});
|
|
} catch (error) {
|
|
// Do nothing.
|
|
}
|
|
}
|
|
document.title = `${collection.title} - Slash`;
|
|
} catch (error: any) {
|
|
console.error(error);
|
|
toast.error(error.details);
|
|
}
|
|
})();
|
|
}, [collectionName]);
|
|
|
|
if (!collection) {
|
|
return null;
|
|
}
|
|
|
|
const creator = userStore.getUserById(collection.creatorId);
|
|
|
|
const handleShortcutClick = (shortcut: Shortcut) => {
|
|
if (sm) {
|
|
setSelectedShortcut(shortcut);
|
|
} else {
|
|
window.open(`/s/${shortcut.name}`);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="w-full h-full sm:px-12 sm:py-10 sm:h-screen sm:bg-gray-100 dark:sm:bg-zinc-800">
|
|
<div className="w-full h-full flex flex-row sm:border dark:sm:border-zinc-800 p-4 rounded-2xl bg-gray-50 dark:bg-zinc-900">
|
|
<div className="w-full sm:w-56 sm:pr-4 flex flex-col justify-start items-start overflow-auto shrink-0">
|
|
<div className="w-full sticky top-0 px-2">
|
|
<div className="w-full flex flex-row justify-start items-center text-gray-800 dark:text-gray-300">
|
|
<Icon.LibrarySquare className="w-5 h-auto mr-1 opacity-70 shrink-0" />
|
|
<span className="text-lg truncate">{collection.title}</span>
|
|
</div>
|
|
<p className="text-gray-500 text-sm truncate">{collection.description}</p>
|
|
</div>
|
|
<Divider className="!my-2" />
|
|
<div className="w-full flex flex-col justify-start items-start gap-2 sm:gap-1 px-px">
|
|
{shortcuts.map((shortcut) => {
|
|
return (
|
|
<ShortcutView
|
|
className={classNames(
|
|
"w-full py-2 cursor-pointer sm:!px-2",
|
|
selectedShortcut?.id === shortcut.id
|
|
? "bg-gray-100 dark:bg-zinc-800"
|
|
: "sm:border-transparent dark:sm:border-transparent"
|
|
)}
|
|
key={shortcut.name}
|
|
shortcut={convertShortcutFromPb(shortcut)}
|
|
alwaysShowLink={!sm}
|
|
onClick={() => handleShortcutClick(shortcut)}
|
|
/>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
{sm && (
|
|
<div className="w-full h-full overflow-clip rounded-lg border dark:border-zinc-800 bg-white dark:bg-zinc-800">
|
|
{selectedShortcut ? (
|
|
<ShortcutFrame key={selectedShortcut.id} shortcut={selectedShortcut} />
|
|
) : (
|
|
<div className="w-full h-full flex flex-col justify-center items-center p-8">
|
|
<div className="w-72 max-w-full border dark:border-zinc-900 dark:bg-zinc-900 dark:text-gray-400 p-6 pb-4 rounded-2xl shadow-xl">
|
|
<Icon.AppWindow className="w-12 h-auto mb-2 opacity-60" strokeWidth={1} />
|
|
<p className="text-lg font-medium">Click on a tab in the Sidebar to get started.</p>
|
|
<Divider className="!my-2" />
|
|
<p className="text-gray-400 dark:text-gray-600 text-sm mt-2 italic">
|
|
Shared by <span className="font-medium not-italic">{creator.nickname}</span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CollectionSpace;
|