mirror of
https://github.com/docmost/docmost.git
synced 2025-11-12 12:42:38 +10:00
* page import feature * make file interceptor common * replace @tiptap/html * update tiptap version * reduce table margin * update tiptap version * switch to upstream drag handle lib (fixes table dragging) * WIP * Page import module and other fixes * working page imports * extract page title from h1 heading * finalize page imports * cleanup unused imports * add menu arrow
86 lines
2.4 KiB
TypeScript
86 lines
2.4 KiB
TypeScript
import { Group, Center, Text } from "@mantine/core";
|
|
import { Spotlight } from "@mantine/spotlight";
|
|
import { IconFileDescription, IconSearch } from "@tabler/icons-react";
|
|
import React, { useState } from "react";
|
|
import { useNavigate } from "react-router-dom";
|
|
import { useDebouncedValue } from "@mantine/hooks";
|
|
import { usePageSearchQuery } from "@/features/search/queries/search-query";
|
|
import { buildPageUrl } from "@/features/page/page.utils.ts";
|
|
|
|
interface SearchSpotlightProps {
|
|
spaceId?: string;
|
|
}
|
|
export function SearchSpotlight({ spaceId }: SearchSpotlightProps) {
|
|
const navigate = useNavigate();
|
|
const [query, setQuery] = useState("");
|
|
const [debouncedSearchQuery] = useDebouncedValue(query, 300);
|
|
|
|
const {
|
|
data: searchResults,
|
|
isLoading,
|
|
error,
|
|
} = usePageSearchQuery({ query: debouncedSearchQuery, spaceId });
|
|
|
|
const pages = (
|
|
searchResults && searchResults.length > 0 ? searchResults : []
|
|
).map((page) => (
|
|
<Spotlight.Action
|
|
key={page.id}
|
|
onClick={() =>
|
|
navigate(buildPageUrl(page.space.slug, page.slugId, page.title))
|
|
}
|
|
>
|
|
<Group wrap="nowrap" w="100%">
|
|
<Center>
|
|
{page?.icon ? (
|
|
<span style={{ fontSize: "20px" }}>{page.icon}</span>
|
|
) : (
|
|
<IconFileDescription size={20} />
|
|
)}
|
|
</Center>
|
|
|
|
<div style={{ flex: 1 }}>
|
|
<Text>{page.title}</Text>
|
|
|
|
{page?.highlight && (
|
|
<Text
|
|
opacity={0.6}
|
|
size="xs"
|
|
dangerouslySetInnerHTML={{ __html: page.highlight }}
|
|
/>
|
|
)}
|
|
</div>
|
|
</Group>
|
|
</Spotlight.Action>
|
|
));
|
|
|
|
return (
|
|
<>
|
|
<Spotlight.Root
|
|
query={query}
|
|
onQueryChange={setQuery}
|
|
scrollable
|
|
overlayProps={{
|
|
backgroundOpacity: 0.55,
|
|
}}
|
|
>
|
|
<Spotlight.Search
|
|
placeholder="Search..."
|
|
leftSection={<IconSearch size={20} stroke={1.5} />}
|
|
/>
|
|
<Spotlight.ActionsList>
|
|
{query.length === 0 && pages.length === 0 && (
|
|
<Spotlight.Empty>Start typing to search...</Spotlight.Empty>
|
|
)}
|
|
|
|
{query.length > 0 && pages.length === 0 && (
|
|
<Spotlight.Empty>No results found...</Spotlight.Empty>
|
|
)}
|
|
|
|
{pages.length > 0 && pages}
|
|
</Spotlight.ActionsList>
|
|
</Spotlight.Root>
|
|
</>
|
|
);
|
|
}
|