mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 23:29:02 +02:00
138 lines
4.3 KiB
TypeScript
138 lines
4.3 KiB
TypeScript
import { ComponentChildren } from "preact";
|
|
import { t } from "../../services/i18n";
|
|
import Button from "../react/Button";
|
|
import { TabContext } from "./ribbon-interface";
|
|
import Dropdown from "../react/Dropdown";
|
|
import ActionButton from "../react/ActionButton";
|
|
import FormTextArea from "../react/FormTextArea";
|
|
import { AttributeType, OptionNames } from "@triliumnext/commons";
|
|
import { removeOwnedAttributesByNameOrType } from "../../services/attributes";
|
|
import { note } from "mermaid/dist/rendering-util/rendering-elements/shapes/note.js";
|
|
import FNote from "../../entities/fnote";
|
|
|
|
interface SearchOption {
|
|
searchOption: string;
|
|
icon: string;
|
|
label: string;
|
|
tooltip?: string;
|
|
}
|
|
|
|
const SEARCH_OPTIONS: SearchOption[] = [
|
|
{
|
|
searchOption: "searchString",
|
|
icon: "bx bx-text",
|
|
label: t("search_definition.search_string")
|
|
},
|
|
{
|
|
searchOption: "searchScript",
|
|
icon: "bx bx-code",
|
|
label: t("search_definition.search_script")
|
|
},
|
|
{
|
|
searchOption: "ancestor",
|
|
icon: "bx bx-filter-alt",
|
|
label: t("search_definition.ancestor")
|
|
},
|
|
{
|
|
searchOption: "fastSearch",
|
|
icon: "bx bx-run",
|
|
label: t("search_definition.fast_search"),
|
|
tooltip: t("search_definition.fast_search_description")
|
|
},
|
|
{
|
|
searchOption: "includeArchivedNotes",
|
|
icon: "bx bx-archive",
|
|
label: t("search_definition.include_archived"),
|
|
tooltip: t("search_definition.include_archived_notes_description")
|
|
},
|
|
{
|
|
searchOption: "orderBy",
|
|
icon: "bx bx-arrow-from-top",
|
|
label: t("search_definition.order_by")
|
|
},
|
|
{
|
|
searchOption: "limit",
|
|
icon: "bx bx-stop",
|
|
label: t("search_definition.limit"),
|
|
tooltip: t("search_definition.limit_description")
|
|
},
|
|
{
|
|
searchOption: "debug",
|
|
icon: "bx bx-bug",
|
|
label: t("search_definition.debug"),
|
|
tooltip: t("search_definition.debug_description")
|
|
}
|
|
];
|
|
|
|
export default function SearchDefinitionTab({ note }: TabContext) {
|
|
return (
|
|
<div className="search-definition-widget">
|
|
<div className="search-settings">
|
|
<table className="search-setting-table">
|
|
<tr>
|
|
<td className="title-column">{t("search_definition.add_search_option")}</td>
|
|
<td colSpan={2} className="add-search-option">
|
|
{SEARCH_OPTIONS.map(({ icon, label, tooltip }) => (
|
|
<Button
|
|
icon={icon}
|
|
text={label}
|
|
title={tooltip}
|
|
/>
|
|
))}
|
|
</td>
|
|
</tr>
|
|
<tbody className="search-options">
|
|
<SearchStringOption />
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function SearchOption({ note, title, children, help, attributeName, attributeType }: {
|
|
note: FNote;
|
|
title: string,
|
|
children: ComponentChildren,
|
|
help: ComponentChildren,
|
|
attributeName: string,
|
|
attributeType: AttributeType
|
|
}) {
|
|
return (
|
|
<tr>
|
|
<td className="title-column">{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)}
|
|
/>
|
|
</td>
|
|
</tr>
|
|
)
|
|
}
|
|
|
|
function SearchStringOption() {
|
|
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>
|
|
</>}
|
|
>
|
|
<FormTextArea
|
|
className="search-string"
|
|
placeholder={t("search_string.placeholder")}
|
|
/>
|
|
</SearchOption>
|
|
} |