mirror of
https://github.com/zadam/trilium.git
synced 2025-12-16 21:29:56 +01:00
109 lines
4.3 KiB
TypeScript
109 lines
4.3 KiB
TypeScript
import "./NoteBadges.css";
|
|
|
|
import { copyTextWithToast } from "../../services/clipboard_ext";
|
|
import { t } from "../../services/i18n";
|
|
import { goToLinkExt } from "../../services/link";
|
|
import { Badge, BadgeWithDropdown } from "../react/Badge";
|
|
import { FormDropdownDivider, FormListItem } from "../react/FormList";
|
|
import { useIsNoteReadOnly, useNoteContext, useNoteLabel, useNoteLabelBoolean } from "../react/hooks";
|
|
import { useShareState } from "../ribbon/BasicPropertiesTab";
|
|
import { useShareInfo } from "../shared_info";
|
|
|
|
export default function NoteBadges() {
|
|
return (
|
|
<div className="note-badges">
|
|
<ReadOnlyBadge />
|
|
<ShareBadge />
|
|
<ClippedNoteBadge />
|
|
<ExecuteBadge />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ReadOnlyBadge() {
|
|
const { note, noteContext } = useNoteContext();
|
|
const { isReadOnly, enableEditing } = useIsNoteReadOnly(note, noteContext);
|
|
const isExplicitReadOnly = note?.isLabelTruthy("readOnly");
|
|
const isTemporarilyEditable = noteContext?.ntxId !== "_popup-editor" && noteContext?.viewScope?.readOnlyTemporarilyDisabled;
|
|
|
|
if (isTemporarilyEditable) {
|
|
return <Badge
|
|
icon="bx bx-lock-open-alt"
|
|
text={t("breadcrumb_badges.read_only_temporarily_disabled")}
|
|
tooltip={t("breadcrumb_badges.read_only_temporarily_disabled_description")}
|
|
className="temporarily-editable-badge"
|
|
onClick={() => enableEditing(false)}
|
|
/>;
|
|
} else if (isReadOnly) {
|
|
return <Badge
|
|
icon="bx bx-lock-alt"
|
|
text={isExplicitReadOnly ? t("breadcrumb_badges.read_only_explicit") : t("breadcrumb_badges.read_only_auto")}
|
|
tooltip={isExplicitReadOnly ? t("breadcrumb_badges.read_only_explicit_description") : t("breadcrumb_badges.read_only_auto_description")}
|
|
className="read-only-badge"
|
|
onClick={() => enableEditing()}
|
|
/>;
|
|
}
|
|
}
|
|
|
|
function ShareBadge() {
|
|
const { note } = useNoteContext();
|
|
const [ , switchShareState ] = useShareState(note);
|
|
const { isSharedExternally, linkHref } = useShareInfo(note);
|
|
|
|
return (linkHref &&
|
|
<BadgeWithDropdown
|
|
icon={isSharedExternally ? "bx bx-world" : "bx bx-share-alt"}
|
|
text={isSharedExternally ? t("breadcrumb_badges.shared_publicly") : t("breadcrumb_badges.shared_locally")}
|
|
className="share-badge"
|
|
>
|
|
<FormListItem
|
|
icon="bx bx-copy"
|
|
onClick={() => copyTextWithToast(linkHref)}
|
|
>{t("breadcrumb_badges.shared_copy_to_clipboard")}</FormListItem>
|
|
<FormListItem
|
|
icon="bx bx-link-external"
|
|
onClick={(e) => goToLinkExt(e, linkHref)}
|
|
>{t("breadcrumb_badges.shared_open_in_browser")}</FormListItem>
|
|
<FormDropdownDivider />
|
|
<FormListItem
|
|
icon="bx bx-unlink"
|
|
onClick={() => switchShareState(false)}
|
|
>{t("breadcrumb_badges.shared_unshare")}</FormListItem>
|
|
</BadgeWithDropdown>
|
|
);
|
|
}
|
|
|
|
function ClippedNoteBadge() {
|
|
const { note } = useNoteContext();
|
|
const [ pageUrl ] = useNoteLabel(note, "pageUrl");
|
|
|
|
return (pageUrl &&
|
|
<Badge
|
|
className="clipped-note-badge"
|
|
icon="bx bx-globe"
|
|
text={t("breadcrumb_badges.clipped_note")}
|
|
tooltip={t("breadcrumb_badges.clipped_note_description", { url: pageUrl })}
|
|
href={pageUrl}
|
|
/>
|
|
);
|
|
}
|
|
|
|
function ExecuteBadge() {
|
|
const { note, parentComponent } = useNoteContext();
|
|
const isScript = note?.isTriliumScript();
|
|
const isSql = note?.isTriliumSqlite();
|
|
const isExecutable = isScript || isSql;
|
|
const [ executeDescription ] = useNoteLabel(note, "executeDescription");
|
|
const [ executeButton ] = useNoteLabelBoolean(note, "executeButton");
|
|
|
|
return (note && isExecutable && (executeDescription || executeButton) &&
|
|
<Badge
|
|
className="execute-badge"
|
|
icon="bx bx-play"
|
|
text={isScript ? t("breadcrumb_badges.execute_script") : t("breadcrumb_badges.execute_sql")}
|
|
tooltip={executeDescription || (isScript ? t("breadcrumb_badges.execute_script_description") : t("breadcrumb_badges.execute_sql_description"))}
|
|
onClick={() => parentComponent.triggerCommand("runActiveNote")}
|
|
/>
|
|
);
|
|
}
|