mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 03:16:11 +01:00
refactor(react/ribbon): split into two files
This commit is contained in:
364
apps/client/src/widgets/ribbon/SearchDefinitionOptions.tsx
Normal file
364
apps/client/src/widgets/ribbon/SearchDefinitionOptions.tsx
Normal file
@@ -0,0 +1,364 @@
|
|||||||
|
import Dropdown from "../react/Dropdown";
|
||||||
|
import ActionButton from "../react/ActionButton";
|
||||||
|
import FormTextArea from "../react/FormTextArea";
|
||||||
|
import NoteAutocomplete from "../react/NoteAutocomplete";
|
||||||
|
import FormSelect from "../react/FormSelect";
|
||||||
|
import Icon from "../react/Icon";
|
||||||
|
import FormTextBox from "../react/FormTextBox";
|
||||||
|
import { ComponentChildren, VNode } from "preact";
|
||||||
|
import FNote from "../../entities/fnote";
|
||||||
|
import { removeOwnedAttributesByNameOrType } from "../../services/attributes";
|
||||||
|
import { AttributeType } from "@triliumnext/commons";
|
||||||
|
import { useNoteLabel, useNoteRelation, useSpacedUpdate, useTooltip } from "../react/hooks";
|
||||||
|
import { t } from "../../services/i18n";
|
||||||
|
import { useEffect, useMemo, useRef } from "preact/hooks";
|
||||||
|
import appContext from "../../components/app_context";
|
||||||
|
import server from "../../services/server";
|
||||||
|
|
||||||
|
export interface SearchOption {
|
||||||
|
attributeName: string;
|
||||||
|
attributeType: "label" | "relation";
|
||||||
|
icon: string;
|
||||||
|
label: string;
|
||||||
|
tooltip?: string;
|
||||||
|
component?: (props: SearchOptionProps) => VNode;
|
||||||
|
defaultValue?: string;
|
||||||
|
additionalAttributesToDelete?: { type: "label" | "relation", name: string }[];
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SearchOptionProps {
|
||||||
|
note: FNote;
|
||||||
|
refreshResults: () => void;
|
||||||
|
attributeName: string;
|
||||||
|
attributeType: "label" | "relation";
|
||||||
|
additionalAttributesToDelete?: { type: "label" | "relation", name: string }[];
|
||||||
|
defaultValue?: string;
|
||||||
|
error?: { message: string };
|
||||||
|
}
|
||||||
|
|
||||||
|
export const SEARCH_OPTIONS: SearchOption[] = [
|
||||||
|
{
|
||||||
|
attributeName: "searchString",
|
||||||
|
attributeType: "label",
|
||||||
|
icon: "bx bx-text",
|
||||||
|
label: t("search_definition.search_string"),
|
||||||
|
component: SearchStringOption
|
||||||
|
},
|
||||||
|
{
|
||||||
|
attributeName: "searchScript",
|
||||||
|
attributeType: "relation",
|
||||||
|
defaultValue: "root",
|
||||||
|
icon: "bx bx-code",
|
||||||
|
label: t("search_definition.search_script"),
|
||||||
|
component: SearchScriptOption
|
||||||
|
},
|
||||||
|
{
|
||||||
|
attributeName: "ancestor",
|
||||||
|
attributeType: "relation",
|
||||||
|
defaultValue: "root",
|
||||||
|
icon: "bx bx-filter-alt",
|
||||||
|
label: t("search_definition.ancestor"),
|
||||||
|
component: AncestorOption,
|
||||||
|
additionalAttributesToDelete: [ { type: "label", name: "ancestorDepth" } ]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
attributeName: "fastSearch",
|
||||||
|
attributeType: "label",
|
||||||
|
icon: "bx bx-run",
|
||||||
|
label: t("search_definition.fast_search"),
|
||||||
|
tooltip: t("search_definition.fast_search_description"),
|
||||||
|
component: FastSearchOption
|
||||||
|
},
|
||||||
|
{
|
||||||
|
attributeName: "includeArchivedNotes",
|
||||||
|
attributeType: "label",
|
||||||
|
icon: "bx bx-archive",
|
||||||
|
label: t("search_definition.include_archived"),
|
||||||
|
tooltip: t("search_definition.include_archived_notes_description"),
|
||||||
|
component: IncludeArchivedNotesOption
|
||||||
|
},
|
||||||
|
{
|
||||||
|
attributeName: "orderBy",
|
||||||
|
attributeType: "label",
|
||||||
|
defaultValue: "relevancy",
|
||||||
|
icon: "bx bx-arrow-from-top",
|
||||||
|
label: t("search_definition.order_by"),
|
||||||
|
component: OrderByOption,
|
||||||
|
additionalAttributesToDelete: [ { type: "label", name: "orderDirection" } ]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
attributeName: "limit",
|
||||||
|
attributeType: "label",
|
||||||
|
defaultValue: "10",
|
||||||
|
icon: "bx bx-stop",
|
||||||
|
label: t("search_definition.limit"),
|
||||||
|
tooltip: t("search_definition.limit_description"),
|
||||||
|
component: LimitOption
|
||||||
|
},
|
||||||
|
{
|
||||||
|
attributeName: "debug",
|
||||||
|
attributeType: "label",
|
||||||
|
icon: "bx bx-bug",
|
||||||
|
label: t("search_definition.debug"),
|
||||||
|
tooltip: t("search_definition.debug_description"),
|
||||||
|
component: DebugOption
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
function SearchOption({ note, title, titleIcon, children, help, attributeName, attributeType, additionalAttributesToDelete }: {
|
||||||
|
note: FNote;
|
||||||
|
title: string,
|
||||||
|
titleIcon: string,
|
||||||
|
children?: ComponentChildren,
|
||||||
|
help: ComponentChildren,
|
||||||
|
attributeName: string,
|
||||||
|
attributeType: AttributeType,
|
||||||
|
additionalAttributesToDelete: { type: "label" | "relation", name: string }[]
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<tr>
|
||||||
|
<td className="title-column">
|
||||||
|
{titleIcon && <><Icon icon={titleIcon} />{" "}</>}
|
||||||
|
{title}
|
||||||
|
</td>
|
||||||
|
<td>{children}</td>
|
||||||
|
<td className="button-column">
|
||||||
|
{help && <Dropdown buttonClassName="bx bx-help-circle icon-action" hideToggleArrow>{help}</Dropdown>}
|
||||||
|
<ActionButton
|
||||||
|
icon="bx bx-x"
|
||||||
|
className="search-option-del"
|
||||||
|
onClick={() => {
|
||||||
|
removeOwnedAttributesByNameOrType(note, attributeType, attributeName);
|
||||||
|
if (additionalAttributesToDelete) {
|
||||||
|
for (const { type, name } of additionalAttributesToDelete) {
|
||||||
|
removeOwnedAttributesByNameOrType(note, type, name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function SearchStringOption({ note, refreshResults, error, ...restProps }: SearchOptionProps) {
|
||||||
|
const [ searchString, setSearchString ] = useNoteLabel(note, "searchString");
|
||||||
|
const inputRef = useRef<HTMLTextAreaElement>(null);
|
||||||
|
const currentValue = useRef(searchString ?? "");
|
||||||
|
const spacedUpdate = useSpacedUpdate(async () => {
|
||||||
|
const searchString = currentValue.current;
|
||||||
|
appContext.lastSearchString = searchString;
|
||||||
|
setSearchString(searchString);
|
||||||
|
|
||||||
|
if (note.title.startsWith(t("search_string.search_prefix"))) {
|
||||||
|
await server.put(`notes/${note.noteId}/title`, {
|
||||||
|
title: `${t("search_string.search_prefix")} ${searchString.length < 30 ? searchString : `${searchString.substr(0, 30)}…`}`
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, 1000);
|
||||||
|
|
||||||
|
// React to errors
|
||||||
|
const { showTooltip, hideTooltip } = useTooltip(inputRef, {
|
||||||
|
trigger: "manual",
|
||||||
|
title: `${t("search_string.error", { error: error?.message })}`,
|
||||||
|
html: true,
|
||||||
|
placement: "bottom"
|
||||||
|
});
|
||||||
|
|
||||||
|
// Auto-focus.
|
||||||
|
useEffect(() => inputRef.current?.focus(), []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (error) {
|
||||||
|
showTooltip();
|
||||||
|
setTimeout(() => hideTooltip(), 4000);
|
||||||
|
} else {
|
||||||
|
hideTooltip();
|
||||||
|
}
|
||||||
|
}, [ error ]);
|
||||||
|
|
||||||
|
return <SearchOption
|
||||||
|
title={t("search_string.title_column")}
|
||||||
|
help={<>
|
||||||
|
<strong>{t("search_string.search_syntax")}</strong> - {t("search_string.also_see")} <a href="#" data-help-page="search.html">{t("search_string.complete_help")}</a>
|
||||||
|
<ul style="marigin-bottom: 0;">
|
||||||
|
<li>{t("search_string.full_text_search")}</li>
|
||||||
|
<li><code>#abc</code> - {t("search_string.label_abc")}</li>
|
||||||
|
<li><code>#year = 2019</code> - {t("search_string.label_year")}</li>
|
||||||
|
<li><code>#rock #pop</code> - {t("search_string.label_rock_pop")}</li>
|
||||||
|
<li><code>#rock or #pop</code> - {t("search_string.label_rock_or_pop")}</li>
|
||||||
|
<li><code>#year <= 2000</code> - {t("search_string.label_year_comparison")}</li>
|
||||||
|
<li><code>note.dateCreated >= MONTH-1</code> - {t("search_string.label_date_created")}</li>
|
||||||
|
</ul>
|
||||||
|
</>}
|
||||||
|
note={note} {...restProps}
|
||||||
|
>
|
||||||
|
<FormTextArea
|
||||||
|
inputRef={inputRef}
|
||||||
|
className="search-string"
|
||||||
|
placeholder={t("search_string.placeholder")}
|
||||||
|
currentValue={searchString ?? ""}
|
||||||
|
onChange={text => {
|
||||||
|
currentValue.current = text;
|
||||||
|
spacedUpdate.scheduleUpdate();
|
||||||
|
}}
|
||||||
|
onKeyDown={async (e) => {
|
||||||
|
if (e.key === "Enter") {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
// this also in effect disallows new lines in query string.
|
||||||
|
// on one hand, this makes sense since search string is a label
|
||||||
|
// on the other hand, it could be nice for structuring long search string. It's probably a niche case though.
|
||||||
|
await spacedUpdate.updateNowIfNecessary();
|
||||||
|
refreshResults();
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</SearchOption>
|
||||||
|
}
|
||||||
|
|
||||||
|
function SearchScriptOption({ note, ...restProps }: SearchOptionProps) {
|
||||||
|
const [ searchScript, setSearchScript ] = useNoteRelation(note, "searchScript");
|
||||||
|
|
||||||
|
return <SearchOption
|
||||||
|
title={t("search_script.title")}
|
||||||
|
help={<>
|
||||||
|
<p>{t("search_script.description1")}</p>
|
||||||
|
<p>{t("search_script.description2")}</p>
|
||||||
|
<p>{t("search_script.example_title")}</p>
|
||||||
|
<pre>{t("search_script.example_code")}</pre>
|
||||||
|
{t("search_script.note")}
|
||||||
|
</>}
|
||||||
|
note={note} {...restProps}
|
||||||
|
>
|
||||||
|
<NoteAutocomplete
|
||||||
|
noteId={searchScript !== "root" ? searchScript ?? undefined : undefined}
|
||||||
|
noteIdChanged={noteId => setSearchScript(noteId ?? "root")}
|
||||||
|
placeholder={t("search_script.placeholder")}
|
||||||
|
/>
|
||||||
|
</SearchOption>
|
||||||
|
}
|
||||||
|
|
||||||
|
function AncestorOption({ note, ...restProps}: SearchOptionProps) {
|
||||||
|
const [ ancestor, setAncestor ] = useNoteRelation(note, "ancestor");
|
||||||
|
const [ depth, setDepth ] = useNoteLabel(note, "ancestorDepth");
|
||||||
|
|
||||||
|
const options = useMemo(() => {
|
||||||
|
const options: { value: string | undefined; label: string }[] = [
|
||||||
|
{ value: "", label: t("ancestor.depth_doesnt_matter") },
|
||||||
|
{ value: "eq1", label: `${t("ancestor.depth_eq", { count: 1 })} (${t("ancestor.direct_children")})` }
|
||||||
|
];
|
||||||
|
|
||||||
|
for (let i=2; i<=9; i++) options.push({ value: "eq" + i, label: t("ancestor.depth_eq", { count: i }) });
|
||||||
|
for (let i=0; i<=9; i++) options.push({ value: "gt" + i, label: t("ancestor.depth_gt", { count: i }) });
|
||||||
|
for (let i=2; i<=9; i++) options.push({ value: "lt" + i, label: t("ancestor.depth_lt", { count: i }) });
|
||||||
|
|
||||||
|
return options;
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return <SearchOption
|
||||||
|
title={t("ancestor.label")}
|
||||||
|
note={note} {...restProps}
|
||||||
|
>
|
||||||
|
<div style={{display: "flex", alignItems: "center"}}>
|
||||||
|
<NoteAutocomplete
|
||||||
|
noteId={ancestor !== "root" ? ancestor ?? undefined : undefined}
|
||||||
|
noteIdChanged={noteId => setAncestor(noteId ?? "root")}
|
||||||
|
placeholder={t("ancestor.placeholder")}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div style="margin-left: 10px; margin-right: 10px">{t("ancestor.depth_label")}:</div>
|
||||||
|
<FormSelect
|
||||||
|
values={options}
|
||||||
|
keyProperty="value" titleProperty="label"
|
||||||
|
currentValue={depth ?? ""} onChange={(value) => setDepth(value ? value : null)}
|
||||||
|
style={{ flexShrink: 3 }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</SearchOption>;
|
||||||
|
}
|
||||||
|
|
||||||
|
function FastSearchOption({ ...restProps }: SearchOptionProps) {
|
||||||
|
return <SearchOption
|
||||||
|
titleIcon="bx bx-run" title={t("fast_search.fast_search")}
|
||||||
|
help={t("fast_search.description")}
|
||||||
|
{...restProps}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
|
||||||
|
function DebugOption({ ...restProps }: SearchOptionProps) {
|
||||||
|
return <SearchOption
|
||||||
|
titleIcon="bx bx-bug" title={t("debug.debug")}
|
||||||
|
help={<>
|
||||||
|
<p>{t("debug.debug_info")}</p>
|
||||||
|
{t("debug.access_info")}
|
||||||
|
</>}
|
||||||
|
{...restProps}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
|
||||||
|
function IncludeArchivedNotesOption({ ...restProps }: SearchOptionProps) {
|
||||||
|
return <SearchOption
|
||||||
|
titleIcon="bx bx-archive" title={t("include_archived_notes.include_archived_notes")}
|
||||||
|
{...restProps}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
|
||||||
|
function OrderByOption({ note, ...restProps }: SearchOptionProps) {
|
||||||
|
const [ orderBy, setOrderBy ] = useNoteLabel(note, "orderBy");
|
||||||
|
const [ orderDirection, setOrderDirection ] = useNoteLabel(note, "orderDirection");
|
||||||
|
|
||||||
|
return <SearchOption
|
||||||
|
titleIcon="bx bx-arrow-from-top"
|
||||||
|
title={t("order_by.order_by")}
|
||||||
|
note={note} {...restProps}
|
||||||
|
>
|
||||||
|
<FormSelect
|
||||||
|
className="w-auto d-inline"
|
||||||
|
currentValue={orderBy ?? "relevancy"} onChange={setOrderBy}
|
||||||
|
keyProperty="value" titleProperty="title"
|
||||||
|
values={[
|
||||||
|
{ value: "relevancy", title: t("order_by.relevancy") },
|
||||||
|
{ value: "title", title: t("order_by.title") },
|
||||||
|
{ value: "dateCreated", title: t("order_by.date_created") },
|
||||||
|
{ value: "dateModified", title: t("order_by.date_modified") },
|
||||||
|
{ value: "contentSize", title: t("order_by.content_size") },
|
||||||
|
{ value: "contentAndAttachmentsSize", title: t("order_by.content_and_attachments_size") },
|
||||||
|
{ value: "contentAndAttachmentsAndRevisionsSize", title: t("order_by.content_and_attachments_and_revisions_size") },
|
||||||
|
{ value: "revisionCount", title: t("order_by.revision_count") },
|
||||||
|
{ value: "childrenCount", title: t("order_by.children_count") },
|
||||||
|
{ value: "parentCount", title: t("order_by.parent_count") },
|
||||||
|
{ value: "ownedLabelCount", title: t("order_by.owned_label_count") },
|
||||||
|
{ value: "ownedRelationCount", title: t("order_by.owned_relation_count") },
|
||||||
|
{ value: "targetRelationCount", title: t("order_by.target_relation_count") },
|
||||||
|
{ value: "random", title: t("order_by.random") }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
{" "}
|
||||||
|
<FormSelect
|
||||||
|
className="w-auto d-inline"
|
||||||
|
currentValue={orderDirection ?? "asc"} onChange={setOrderDirection}
|
||||||
|
keyProperty="value" titleProperty="title"
|
||||||
|
values={[
|
||||||
|
{ value: "asc", title: t("order_by.asc") },
|
||||||
|
{ value: "desc", title: t("order_by.desc") }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</SearchOption>
|
||||||
|
}
|
||||||
|
|
||||||
|
function LimitOption({ note, defaultValue, ...restProps }: SearchOptionProps) {
|
||||||
|
const [ limit, setLimit ] = useNoteLabel(note, "limit");
|
||||||
|
|
||||||
|
return <SearchOption
|
||||||
|
titleIcon="bx bx-stop"
|
||||||
|
title={t("limit.limit")}
|
||||||
|
help={t("limit.take_first_x_results")}
|
||||||
|
note={note} {...restProps}
|
||||||
|
>
|
||||||
|
<FormTextBox
|
||||||
|
type="number" min="1" step="1"
|
||||||
|
currentValue={limit ?? defaultValue} onChange={setLimit}
|
||||||
|
/>
|
||||||
|
</SearchOption>
|
||||||
|
}
|
||||||
@@ -1,117 +1,20 @@
|
|||||||
import { ComponentChildren, VNode } from "preact";
|
import { VNode } from "preact";
|
||||||
import { t } from "../../services/i18n";
|
import { t } from "../../services/i18n";
|
||||||
import Button from "../react/Button";
|
import Button from "../react/Button";
|
||||||
import { TabContext } from "./ribbon-interface";
|
import { TabContext } from "./ribbon-interface";
|
||||||
import Dropdown from "../react/Dropdown";
|
import { SaveSearchNoteResponse } from "@triliumnext/commons";
|
||||||
import ActionButton from "../react/ActionButton";
|
import attributes from "../../services/attributes";
|
||||||
import FormTextArea from "../react/FormTextArea";
|
|
||||||
import { AttributeType, SaveSearchNoteResponse } from "@triliumnext/commons";
|
|
||||||
import attributes, { removeOwnedAttributesByNameOrType } from "../../services/attributes";
|
|
||||||
import FNote from "../../entities/fnote";
|
import FNote from "../../entities/fnote";
|
||||||
import toast from "../../services/toast";
|
import toast from "../../services/toast";
|
||||||
import froca from "../../services/froca";
|
import froca from "../../services/froca";
|
||||||
import { useContext, useEffect, useMemo, useRef, useState } from "preact/hooks";
|
import { useContext, useEffect, useState } from "preact/hooks";
|
||||||
import { ParentComponent } from "../react/react_utils";
|
import { ParentComponent } from "../react/react_utils";
|
||||||
import { useNoteLabel, useNoteRelation, useSpacedUpdate, useTooltip, useTriliumEventBeta } from "../react/hooks";
|
import { useTriliumEventBeta } from "../react/hooks";
|
||||||
import appContext from "../../components/app_context";
|
import appContext from "../../components/app_context";
|
||||||
import server from "../../services/server";
|
import server from "../../services/server";
|
||||||
import ws from "../../services/ws";
|
import ws from "../../services/ws";
|
||||||
import tree from "../../services/tree";
|
import tree from "../../services/tree";
|
||||||
import NoteAutocomplete from "../react/NoteAutocomplete";
|
import { SEARCH_OPTIONS, SearchOption } from "./SearchDefinitionOptions";
|
||||||
import FormSelect from "../react/FormSelect";
|
|
||||||
import Icon from "../react/Icon";
|
|
||||||
import FormTextBox from "../react/FormTextBox";
|
|
||||||
|
|
||||||
interface SearchOption {
|
|
||||||
attributeName: string;
|
|
||||||
attributeType: "label" | "relation";
|
|
||||||
icon: string;
|
|
||||||
label: string;
|
|
||||||
tooltip?: string;
|
|
||||||
// TODO: Make mandatory once all components are ported.
|
|
||||||
component?: (props: SearchOptionProps) => VNode;
|
|
||||||
defaultValue?: string;
|
|
||||||
additionalAttributesToDelete?: { type: "label" | "relation", name: string }[];
|
|
||||||
}
|
|
||||||
|
|
||||||
interface SearchOptionProps {
|
|
||||||
note: FNote;
|
|
||||||
refreshResults: () => void;
|
|
||||||
attributeName: string;
|
|
||||||
attributeType: "label" | "relation";
|
|
||||||
additionalAttributesToDelete?: { type: "label" | "relation", name: string }[];
|
|
||||||
defaultValue?: string;
|
|
||||||
error?: { message: string };
|
|
||||||
}
|
|
||||||
|
|
||||||
const SEARCH_OPTIONS: SearchOption[] = [
|
|
||||||
{
|
|
||||||
attributeName: "searchString",
|
|
||||||
attributeType: "label",
|
|
||||||
icon: "bx bx-text",
|
|
||||||
label: t("search_definition.search_string"),
|
|
||||||
component: SearchStringOption
|
|
||||||
},
|
|
||||||
{
|
|
||||||
attributeName: "searchScript",
|
|
||||||
attributeType: "relation",
|
|
||||||
defaultValue: "root",
|
|
||||||
icon: "bx bx-code",
|
|
||||||
label: t("search_definition.search_script"),
|
|
||||||
component: SearchScriptOption
|
|
||||||
},
|
|
||||||
{
|
|
||||||
attributeName: "ancestor",
|
|
||||||
attributeType: "relation",
|
|
||||||
defaultValue: "root",
|
|
||||||
icon: "bx bx-filter-alt",
|
|
||||||
label: t("search_definition.ancestor"),
|
|
||||||
component: AncestorOption,
|
|
||||||
additionalAttributesToDelete: [ { type: "label", name: "ancestorDepth" } ]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
attributeName: "fastSearch",
|
|
||||||
attributeType: "label",
|
|
||||||
icon: "bx bx-run",
|
|
||||||
label: t("search_definition.fast_search"),
|
|
||||||
tooltip: t("search_definition.fast_search_description"),
|
|
||||||
component: FastSearchOption
|
|
||||||
},
|
|
||||||
{
|
|
||||||
attributeName: "includeArchivedNotes",
|
|
||||||
attributeType: "label",
|
|
||||||
icon: "bx bx-archive",
|
|
||||||
label: t("search_definition.include_archived"),
|
|
||||||
tooltip: t("search_definition.include_archived_notes_description"),
|
|
||||||
component: IncludeArchivedNotesOption
|
|
||||||
},
|
|
||||||
{
|
|
||||||
attributeName: "orderBy",
|
|
||||||
attributeType: "label",
|
|
||||||
defaultValue: "relevancy",
|
|
||||||
icon: "bx bx-arrow-from-top",
|
|
||||||
label: t("search_definition.order_by"),
|
|
||||||
component: OrderByOption,
|
|
||||||
additionalAttributesToDelete: [ { type: "label", name: "orderDirection" } ]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
attributeName: "limit",
|
|
||||||
attributeType: "label",
|
|
||||||
defaultValue: "10",
|
|
||||||
icon: "bx bx-stop",
|
|
||||||
label: t("search_definition.limit"),
|
|
||||||
tooltip: t("search_definition.limit_description"),
|
|
||||||
component: LimitOption
|
|
||||||
},
|
|
||||||
{
|
|
||||||
attributeName: "debug",
|
|
||||||
attributeType: "label",
|
|
||||||
icon: "bx bx-bug",
|
|
||||||
label: t("search_definition.debug"),
|
|
||||||
tooltip: t("search_definition.debug_description"),
|
|
||||||
component: DebugOption
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
export default function SearchDefinitionTab({ note, ntxId }: TabContext) {
|
export default function SearchDefinitionTab({ note, ntxId }: TabContext) {
|
||||||
const parentComponent = useContext(ParentComponent);
|
const parentComponent = useContext(ParentComponent);
|
||||||
@@ -247,260 +150,3 @@ export default function SearchDefinitionTab({ note, ntxId }: TabContext) {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
function SearchOption({ note, title, titleIcon, children, help, attributeName, attributeType, additionalAttributesToDelete }: {
|
|
||||||
note: FNote;
|
|
||||||
title: string,
|
|
||||||
titleIcon: string,
|
|
||||||
children?: ComponentChildren,
|
|
||||||
help: ComponentChildren,
|
|
||||||
attributeName: string,
|
|
||||||
attributeType: AttributeType,
|
|
||||||
additionalAttributesToDelete: { type: "label" | "relation", name: string }[]
|
|
||||||
}) {
|
|
||||||
return (
|
|
||||||
<tr>
|
|
||||||
<td className="title-column">
|
|
||||||
{titleIcon && <><Icon icon={titleIcon} />{" "}</>}
|
|
||||||
{title}
|
|
||||||
</td>
|
|
||||||
<td>{children}</td>
|
|
||||||
<td className="button-column">
|
|
||||||
{help && <Dropdown buttonClassName="bx bx-help-circle icon-action" hideToggleArrow>{help}</Dropdown>}
|
|
||||||
<ActionButton
|
|
||||||
icon="bx bx-x"
|
|
||||||
className="search-option-del"
|
|
||||||
onClick={() => {
|
|
||||||
removeOwnedAttributesByNameOrType(note, attributeType, attributeName);
|
|
||||||
if (additionalAttributesToDelete) {
|
|
||||||
for (const { type, name } of additionalAttributesToDelete) {
|
|
||||||
removeOwnedAttributesByNameOrType(note, type, name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function SearchStringOption({ note, refreshResults, error, ...restProps }: SearchOptionProps) {
|
|
||||||
const [ searchString, setSearchString ] = useNoteLabel(note, "searchString");
|
|
||||||
const inputRef = useRef<HTMLTextAreaElement>(null);
|
|
||||||
const currentValue = useRef(searchString ?? "");
|
|
||||||
const spacedUpdate = useSpacedUpdate(async () => {
|
|
||||||
const searchString = currentValue.current;
|
|
||||||
appContext.lastSearchString = searchString;
|
|
||||||
setSearchString(searchString);
|
|
||||||
|
|
||||||
if (note.title.startsWith(t("search_string.search_prefix"))) {
|
|
||||||
await server.put(`notes/${note.noteId}/title`, {
|
|
||||||
title: `${t("search_string.search_prefix")} ${searchString.length < 30 ? searchString : `${searchString.substr(0, 30)}…`}`
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}, 1000);
|
|
||||||
|
|
||||||
// React to errors
|
|
||||||
const { showTooltip, hideTooltip } = useTooltip(inputRef, {
|
|
||||||
trigger: "manual",
|
|
||||||
title: `${t("search_string.error", { error: error?.message })}`,
|
|
||||||
html: true,
|
|
||||||
placement: "bottom"
|
|
||||||
});
|
|
||||||
|
|
||||||
// Auto-focus.
|
|
||||||
useEffect(() => inputRef.current?.focus(), []);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (error) {
|
|
||||||
showTooltip();
|
|
||||||
setTimeout(() => hideTooltip(), 4000);
|
|
||||||
} else {
|
|
||||||
hideTooltip();
|
|
||||||
}
|
|
||||||
}, [ error ]);
|
|
||||||
|
|
||||||
return <SearchOption
|
|
||||||
title={t("search_string.title_column")}
|
|
||||||
help={<>
|
|
||||||
<strong>{t("search_string.search_syntax")}</strong> - {t("search_string.also_see")} <a href="#" data-help-page="search.html">{t("search_string.complete_help")}</a>
|
|
||||||
<ul style="marigin-bottom: 0;">
|
|
||||||
<li>{t("search_string.full_text_search")}</li>
|
|
||||||
<li><code>#abc</code> - {t("search_string.label_abc")}</li>
|
|
||||||
<li><code>#year = 2019</code> - {t("search_string.label_year")}</li>
|
|
||||||
<li><code>#rock #pop</code> - {t("search_string.label_rock_pop")}</li>
|
|
||||||
<li><code>#rock or #pop</code> - {t("search_string.label_rock_or_pop")}</li>
|
|
||||||
<li><code>#year <= 2000</code> - {t("search_string.label_year_comparison")}</li>
|
|
||||||
<li><code>note.dateCreated >= MONTH-1</code> - {t("search_string.label_date_created")}</li>
|
|
||||||
</ul>
|
|
||||||
</>}
|
|
||||||
note={note} {...restProps}
|
|
||||||
>
|
|
||||||
<FormTextArea
|
|
||||||
inputRef={inputRef}
|
|
||||||
className="search-string"
|
|
||||||
placeholder={t("search_string.placeholder")}
|
|
||||||
currentValue={searchString ?? ""}
|
|
||||||
onChange={text => {
|
|
||||||
currentValue.current = text;
|
|
||||||
spacedUpdate.scheduleUpdate();
|
|
||||||
}}
|
|
||||||
onKeyDown={async (e) => {
|
|
||||||
if (e.key === "Enter") {
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
// this also in effect disallows new lines in query string.
|
|
||||||
// on one hand, this makes sense since search string is a label
|
|
||||||
// on the other hand, it could be nice for structuring long search string. It's probably a niche case though.
|
|
||||||
await spacedUpdate.updateNowIfNecessary();
|
|
||||||
refreshResults();
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</SearchOption>
|
|
||||||
}
|
|
||||||
|
|
||||||
function SearchScriptOption({ note, ...restProps }: SearchOptionProps) {
|
|
||||||
const [ searchScript, setSearchScript ] = useNoteRelation(note, "searchScript");
|
|
||||||
|
|
||||||
return <SearchOption
|
|
||||||
title={t("search_script.title")}
|
|
||||||
help={<>
|
|
||||||
<p>{t("search_script.description1")}</p>
|
|
||||||
<p>{t("search_script.description2")}</p>
|
|
||||||
<p>{t("search_script.example_title")}</p>
|
|
||||||
<pre>{t("search_script.example_code")}</pre>
|
|
||||||
{t("search_script.note")}
|
|
||||||
</>}
|
|
||||||
note={note} {...restProps}
|
|
||||||
>
|
|
||||||
<NoteAutocomplete
|
|
||||||
noteId={searchScript !== "root" ? searchScript ?? undefined : undefined}
|
|
||||||
noteIdChanged={noteId => setSearchScript(noteId ?? "root")}
|
|
||||||
placeholder={t("search_script.placeholder")}
|
|
||||||
/>
|
|
||||||
</SearchOption>
|
|
||||||
}
|
|
||||||
|
|
||||||
function AncestorOption({ note, ...restProps}: SearchOptionProps) {
|
|
||||||
const [ ancestor, setAncestor ] = useNoteRelation(note, "ancestor");
|
|
||||||
const [ depth, setDepth ] = useNoteLabel(note, "ancestorDepth");
|
|
||||||
|
|
||||||
const options = useMemo(() => {
|
|
||||||
const options: { value: string | undefined; label: string }[] = [
|
|
||||||
{ value: "", label: t("ancestor.depth_doesnt_matter") },
|
|
||||||
{ value: "eq1", label: `${t("ancestor.depth_eq", { count: 1 })} (${t("ancestor.direct_children")})` }
|
|
||||||
];
|
|
||||||
|
|
||||||
for (let i=2; i<=9; i++) options.push({ value: "eq" + i, label: t("ancestor.depth_eq", { count: i }) });
|
|
||||||
for (let i=0; i<=9; i++) options.push({ value: "gt" + i, label: t("ancestor.depth_gt", { count: i }) });
|
|
||||||
for (let i=2; i<=9; i++) options.push({ value: "lt" + i, label: t("ancestor.depth_lt", { count: i }) });
|
|
||||||
|
|
||||||
return options;
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return <SearchOption
|
|
||||||
title={t("ancestor.label")}
|
|
||||||
note={note} {...restProps}
|
|
||||||
>
|
|
||||||
<div style={{display: "flex", alignItems: "center"}}>
|
|
||||||
<NoteAutocomplete
|
|
||||||
noteId={ancestor !== "root" ? ancestor ?? undefined : undefined}
|
|
||||||
noteIdChanged={noteId => setAncestor(noteId ?? "root")}
|
|
||||||
placeholder={t("ancestor.placeholder")}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<div style="margin-left: 10px; margin-right: 10px">{t("ancestor.depth_label")}:</div>
|
|
||||||
<FormSelect
|
|
||||||
values={options}
|
|
||||||
keyProperty="value" titleProperty="label"
|
|
||||||
currentValue={depth ?? ""} onChange={(value) => setDepth(value ? value : null)}
|
|
||||||
style={{ flexShrink: 3 }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</SearchOption>;
|
|
||||||
}
|
|
||||||
|
|
||||||
function FastSearchOption({ ...restProps }: SearchOptionProps) {
|
|
||||||
return <SearchOption
|
|
||||||
titleIcon="bx bx-run" title={t("fast_search.fast_search")}
|
|
||||||
help={t("fast_search.description")}
|
|
||||||
{...restProps}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
|
|
||||||
function DebugOption({ ...restProps }: SearchOptionProps) {
|
|
||||||
return <SearchOption
|
|
||||||
titleIcon="bx bx-bug" title={t("debug.debug")}
|
|
||||||
help={<>
|
|
||||||
<p>{t("debug.debug_info")}</p>
|
|
||||||
{t("debug.access_info")}
|
|
||||||
</>}
|
|
||||||
{...restProps}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
|
|
||||||
function IncludeArchivedNotesOption({ ...restProps }: SearchOptionProps) {
|
|
||||||
return <SearchOption
|
|
||||||
titleIcon="bx bx-archive" title={t("include_archived_notes.include_archived_notes")}
|
|
||||||
{...restProps}
|
|
||||||
/>
|
|
||||||
}
|
|
||||||
|
|
||||||
function OrderByOption({ note, ...restProps }: SearchOptionProps) {
|
|
||||||
const [ orderBy, setOrderBy ] = useNoteLabel(note, "orderBy");
|
|
||||||
const [ orderDirection, setOrderDirection ] = useNoteLabel(note, "orderDirection");
|
|
||||||
|
|
||||||
return <SearchOption
|
|
||||||
titleIcon="bx bx-arrow-from-top"
|
|
||||||
title={t("order_by.order_by")}
|
|
||||||
note={note} {...restProps}
|
|
||||||
>
|
|
||||||
<FormSelect
|
|
||||||
className="w-auto d-inline"
|
|
||||||
currentValue={orderBy ?? "relevancy"} onChange={setOrderBy}
|
|
||||||
keyProperty="value" titleProperty="title"
|
|
||||||
values={[
|
|
||||||
{ value: "relevancy", title: t("order_by.relevancy") },
|
|
||||||
{ value: "title", title: t("order_by.title") },
|
|
||||||
{ value: "dateCreated", title: t("order_by.date_created") },
|
|
||||||
{ value: "dateModified", title: t("order_by.date_modified") },
|
|
||||||
{ value: "contentSize", title: t("order_by.content_size") },
|
|
||||||
{ value: "contentAndAttachmentsSize", title: t("order_by.content_and_attachments_size") },
|
|
||||||
{ value: "contentAndAttachmentsAndRevisionsSize", title: t("order_by.content_and_attachments_and_revisions_size") },
|
|
||||||
{ value: "revisionCount", title: t("order_by.revision_count") },
|
|
||||||
{ value: "childrenCount", title: t("order_by.children_count") },
|
|
||||||
{ value: "parentCount", title: t("order_by.parent_count") },
|
|
||||||
{ value: "ownedLabelCount", title: t("order_by.owned_label_count") },
|
|
||||||
{ value: "ownedRelationCount", title: t("order_by.owned_relation_count") },
|
|
||||||
{ value: "targetRelationCount", title: t("order_by.target_relation_count") },
|
|
||||||
{ value: "random", title: t("order_by.random") }
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
{" "}
|
|
||||||
<FormSelect
|
|
||||||
className="w-auto d-inline"
|
|
||||||
currentValue={orderDirection ?? "asc"} onChange={setOrderDirection}
|
|
||||||
keyProperty="value" titleProperty="title"
|
|
||||||
values={[
|
|
||||||
{ value: "asc", title: t("order_by.asc") },
|
|
||||||
{ value: "desc", title: t("order_by.desc") }
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</SearchOption>
|
|
||||||
}
|
|
||||||
|
|
||||||
function LimitOption({ note, defaultValue, ...restProps }: SearchOptionProps) {
|
|
||||||
const [ limit, setLimit ] = useNoteLabel(note, "limit");
|
|
||||||
|
|
||||||
return <SearchOption
|
|
||||||
titleIcon="bx bx-stop"
|
|
||||||
title={t("limit.limit")}
|
|
||||||
help={t("limit.take_first_x_results")}
|
|
||||||
note={note} {...restProps}
|
|
||||||
>
|
|
||||||
<FormTextBox
|
|
||||||
type="number" min="1" step="1"
|
|
||||||
currentValue={limit ?? defaultValue} onChange={setLimit}
|
|
||||||
/>
|
|
||||||
</SearchOption>
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user