import { observer } from "mobx-react"; import { useParams } from "next/navigation"; 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 = observer((props) => { const { searchQuery } = props; // router const { workspaceSlug } = useParams(); // store hooks const { fetchAllGlobalViews, currentWorkspaceViews, getSearchedViews } = useGlobalView(); useSWR( workspaceSlug ? `GLOBAL_VIEWS_LIST_${workspaceSlug.toString()}` : null, workspaceSlug ? () => fetchAllGlobalViews(workspaceSlug.toString()) : null ); if (!currentWorkspaceViews) return ; const filteredViewsList = getSearchedViews(searchQuery); return ( <> {filteredViewsList?.map((viewId) => ( ))} ); });