mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-17 20:55:28 +00:00
93 lines
3.5 KiB
TypeScript
93 lines
3.5 KiB
TypeScript
import { Button, Input } from "@mui/joy";
|
|
import { useEffect, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import CreateShortcutDrawer from "@/components/CreateShortcutDrawer";
|
|
import FilterView from "@/components/FilterView";
|
|
import Icon from "@/components/Icon";
|
|
import ShortcutsContainer from "@/components/ShortcutsContainer";
|
|
import ShortcutsNavigator from "@/components/ShortcutsNavigator";
|
|
import ViewSetting from "@/components/ViewSetting";
|
|
import useLoading from "@/hooks/useLoading";
|
|
import { useShortcutStore, useUserStore, useViewStore } from "@/stores";
|
|
import { getFilteredShortcutList, getOrderedShortcutList } from "@/stores/view";
|
|
|
|
interface State {
|
|
showCreateShortcutDrawer: boolean;
|
|
}
|
|
|
|
const Home: React.FC = () => {
|
|
const { t } = useTranslation();
|
|
const loadingState = useLoading();
|
|
const currentUser = useUserStore().getCurrentUser();
|
|
const shortcutStore = useShortcutStore();
|
|
const viewStore = useViewStore();
|
|
const shortcutList = shortcutStore.getShortcutList();
|
|
const [state, setState] = useState<State>({
|
|
showCreateShortcutDrawer: false,
|
|
});
|
|
const filter = viewStore.filter;
|
|
const filteredShortcutList = getFilteredShortcutList(shortcutList, filter, currentUser);
|
|
const orderedShortcutList = getOrderedShortcutList(filteredShortcutList, viewStore.order);
|
|
|
|
useEffect(() => {
|
|
Promise.all([shortcutStore.fetchShortcutList()]).finally(() => {
|
|
loadingState.setFinish();
|
|
});
|
|
}, []);
|
|
|
|
const setShowCreateShortcutDrawer = (show: boolean) => {
|
|
setState({
|
|
...state,
|
|
showCreateShortcutDrawer: show,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="mx-auto max-w-8xl w-full px-4 sm:px-6 md:px-12 pt-4 pb-6 flex flex-col justify-start items-start">
|
|
<ShortcutsNavigator />
|
|
<div className="w-full flex flex-row justify-between items-center mb-4">
|
|
<div className="flex flex-row justify-start items-center">
|
|
<Input
|
|
className="w-32 mr-2"
|
|
type="text"
|
|
size="sm"
|
|
placeholder={t("common.search")}
|
|
startDecorator={<Icon.Search className="w-4 h-auto" />}
|
|
endDecorator={<ViewSetting />}
|
|
value={filter.search}
|
|
onChange={(e) => viewStore.setFilter({ search: e.target.value })}
|
|
/>
|
|
</div>
|
|
<div className="flex flex-row justify-end items-center">
|
|
<Button className="hover:shadow" variant="soft" size="sm" onClick={() => setShowCreateShortcutDrawer(true)}>
|
|
<Icon.Plus className="w-5 h-auto" />
|
|
<span className="ml-0.5">{t("common.create")}</span>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<FilterView />
|
|
{loadingState.isLoading ? (
|
|
<div className="py-12 w-full flex flex-row justify-center items-center opacity-80 dark:text-gray-500">
|
|
<Icon.Loader className="mr-2 w-5 h-auto animate-spin" />
|
|
{t("common.loading")}
|
|
</div>
|
|
) : orderedShortcutList.length === 0 ? (
|
|
<div className="py-16 w-full flex flex-col justify-center items-center text-gray-400">
|
|
<Icon.PackageOpen className="w-16 h-auto" strokeWidth="1" />
|
|
<p className="mt-4">No shortcuts found.</p>
|
|
</div>
|
|
) : (
|
|
<ShortcutsContainer shortcutList={orderedShortcutList} />
|
|
)}
|
|
</div>
|
|
|
|
{state.showCreateShortcutDrawer && (
|
|
<CreateShortcutDrawer onClose={() => setShowCreateShortcutDrawer(false)} onConfirm={() => setShowCreateShortcutDrawer(false)} />
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Home;
|