mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
// components
|
|
import { ViewListLoader } from "components/ui";
|
|
import { GlobalViewListItem } from "components/workspace";
|
|
// store hooks
|
|
import { useGlobalView } from "hooks/store";
|
|
|
|
type Props = {
|
|
searchQuery: string;
|
|
};
|
|
|
|
export const GlobalViewsList: React.FC<Props> = observer((props) => {
|
|
const { searchQuery } = props;
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
// store hooks
|
|
const { fetchAllGlobalViews, currentWorkspaceViews, getSearchedViews } = useGlobalView();
|
|
|
|
useSWR(
|
|
workspaceSlug ? `GLOBAL_VIEWS_LIST_${workspaceSlug.toString()}` : null,
|
|
workspaceSlug ? () => fetchAllGlobalViews(workspaceSlug.toString()) : null
|
|
);
|
|
|
|
if (!currentWorkspaceViews) return <ViewListLoader />;
|
|
|
|
const filteredViewsList = getSearchedViews(searchQuery);
|
|
|
|
return <>{filteredViewsList?.map((viewId) => <GlobalViewListItem key={viewId} viewId={viewId} />)}</>;
|
|
});
|