mirror of
https://github.com/zadam/trilium.git
synced 2025-10-21 07:38:53 +02:00
feat(react/ribbon): port script tab
This commit is contained in:
parent
01e4cd2e78
commit
c3eca3b626
@ -1024,6 +1024,10 @@ class FNote {
|
|||||||
return this.mime === "text/x-sqlite;schema=trilium";
|
return this.mime === "text/x-sqlite;schema=trilium";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
isTriliumScript() {
|
||||||
|
return this.mime.startsWith("application/javascript");
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides note's date metadata.
|
* Provides note's date metadata.
|
||||||
*/
|
*/
|
||||||
|
@ -2,6 +2,7 @@ import type { RefObject } from "preact";
|
|||||||
import type { CSSProperties } from "preact/compat";
|
import type { CSSProperties } from "preact/compat";
|
||||||
import { useRef, useMemo } from "preact/hooks";
|
import { useRef, useMemo } from "preact/hooks";
|
||||||
import { memo } from "preact/compat";
|
import { memo } from "preact/compat";
|
||||||
|
import { CommandNames } from "../../components/app_context";
|
||||||
|
|
||||||
interface ButtonProps {
|
interface ButtonProps {
|
||||||
name?: string;
|
name?: string;
|
||||||
@ -17,9 +18,10 @@ interface ButtonProps {
|
|||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
size?: "normal" | "small" | "micro";
|
size?: "normal" | "small" | "micro";
|
||||||
style?: CSSProperties;
|
style?: CSSProperties;
|
||||||
|
triggerCommand?: CommandNames;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Button = memo(({ name, buttonRef: _buttonRef, className, text, onClick, keyboardShortcut, icon, primary, disabled, size, style }: ButtonProps) => {
|
const Button = memo(({ name, buttonRef: _buttonRef, className, text, onClick, keyboardShortcut, icon, primary, disabled, size, style, triggerCommand }: ButtonProps) => {
|
||||||
// Memoize classes array to prevent recreation
|
// Memoize classes array to prevent recreation
|
||||||
const classes = useMemo(() => {
|
const classes = useMemo(() => {
|
||||||
const classList: string[] = ["btn"];
|
const classList: string[] = ["btn"];
|
||||||
@ -57,11 +59,12 @@ const Button = memo(({ name, buttonRef: _buttonRef, className, text, onClick, ke
|
|||||||
<button
|
<button
|
||||||
name={name}
|
name={name}
|
||||||
className={classes}
|
className={classes}
|
||||||
type={onClick ? "button" : "submit"}
|
type={onClick || triggerCommand ? "button" : "submit"}
|
||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
ref={buttonRef}
|
ref={buttonRef}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
style={style}
|
style={style}
|
||||||
|
data-trigger-command={triggerCommand}
|
||||||
>
|
>
|
||||||
{icon && <span className={`bx ${icon}`}></span>}
|
{icon && <span className={`bx ${icon}`}></span>}
|
||||||
{text} {shortcutElements}
|
{text} {shortcutElements}
|
||||||
|
@ -10,6 +10,7 @@ import { TabContext } from "./ribbon-interface";
|
|||||||
import options from "../../services/options";
|
import options from "../../services/options";
|
||||||
import { CommandNames } from "../../components/app_context";
|
import { CommandNames } from "../../components/app_context";
|
||||||
import FNote from "../../entities/fnote";
|
import FNote from "../../entities/fnote";
|
||||||
|
import ScriptTab from "./ScriptTab";
|
||||||
|
|
||||||
interface TitleContext {
|
interface TitleContext {
|
||||||
note: FNote | null | undefined;
|
note: FNote | null | undefined;
|
||||||
@ -22,6 +23,7 @@ interface TabConfiguration {
|
|||||||
content?: (context: TabContext) => VNode;
|
content?: (context: TabContext) => VNode;
|
||||||
show?: (context: TitleContext) => boolean;
|
show?: (context: TitleContext) => boolean;
|
||||||
toggleCommand?: CommandNames;
|
toggleCommand?: CommandNames;
|
||||||
|
activate?: boolean;
|
||||||
/**
|
/**
|
||||||
* By default the tab content will not be rendered unless the tab is active (i.e. selected by the user). Setting to `true` will ensure that the tab is rendered even when inactive, for cases where the tab needs to be accessible at all times (e.g. for the detached editor toolbar).
|
* By default the tab content will not be rendered unless the tab is active (i.e. selected by the user). Setting to `true` will ensure that the tab is rendered even when inactive, for cases where the tab needs to be accessible at all times (e.g. for the detached editor toolbar).
|
||||||
*/
|
*/
|
||||||
@ -39,8 +41,12 @@ const TAB_CONFIGURATION = numberObjectsInPlace<TabConfiguration>([
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: ({ note }) => note?.isTriliumSqlite() ? t("script_executor.query") : t("script_executor.script"),
|
title: ({ note }) => note?.isTriliumSqlite() ? t("script_executor.query") : t("script_executor.script"),
|
||||||
icon: "bx bx-play"
|
icon: "bx bx-play",
|
||||||
// ScriptExecutorWidget
|
content: ScriptTab,
|
||||||
|
activate: true,
|
||||||
|
show: ({ note }) => !!note &&
|
||||||
|
(note.isTriliumScript() || note.isTriliumSqlite()) &&
|
||||||
|
(note.hasLabel("executeDescription") || note.hasLabel("executeButton"))
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// SearchDefinitionWidget
|
// SearchDefinitionWidget
|
||||||
|
28
apps/client/src/widgets/ribbon/ScriptTab.tsx
Normal file
28
apps/client/src/widgets/ribbon/ScriptTab.tsx
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
import { t } from "../../services/i18n";
|
||||||
|
import Button from "../react/Button";
|
||||||
|
import { useNoteLabel } from "../react/hooks";
|
||||||
|
import { TabContext } from "./ribbon-interface";
|
||||||
|
|
||||||
|
export default function ScriptTab({ note }: TabContext) {
|
||||||
|
const [ executeDescription ] = useNoteLabel(note, "executeDescription");
|
||||||
|
const executeTitle = useNoteLabel(note, "executeTitle")[0] ||
|
||||||
|
(note?.isTriliumSqlite() ? t("script_executor.execute_query") : t("script_executor.execute_script"));
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div class="script-runner-widget">
|
||||||
|
{executeDescription && (
|
||||||
|
<div class="execute-description">
|
||||||
|
{executeDescription}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div style={{ display: "flex", justifyContent: "space-around"}}>
|
||||||
|
<Button
|
||||||
|
triggerCommand="runActiveNote"
|
||||||
|
className="execute-button"
|
||||||
|
text={executeTitle}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
@ -148,3 +148,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* #endregion */
|
/* #endregion */
|
||||||
|
|
||||||
|
/* #region Script Tab */
|
||||||
|
.script-runner-widget {
|
||||||
|
padding: 12px;
|
||||||
|
color: var(--muted-text-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.execute-description {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
/* #endregion */
|
@ -1,70 +0,0 @@
|
|||||||
import NoteContextAwareWidget from "../note_context_aware_widget.js";
|
|
||||||
import keyboardActionService from "../../services/keyboard_actions.js";
|
|
||||||
import { t } from "../../services/i18n.js";
|
|
||||||
import type FNote from "../../entities/fnote.js";
|
|
||||||
|
|
||||||
const TPL = /*html*/`
|
|
||||||
<div class="script-runner-widget">
|
|
||||||
<style>
|
|
||||||
.script-runner-widget {
|
|
||||||
padding: 12px;
|
|
||||||
color: var(--muted-text-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.execute-description {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<div class="execute-description"></div>
|
|
||||||
|
|
||||||
<div style="display: flex; justify-content: space-around">
|
|
||||||
<button data-trigger-command="runActiveNote" class="execute-button btn btn-sm"></button>
|
|
||||||
</div>
|
|
||||||
</div>`;
|
|
||||||
|
|
||||||
export default class ScriptExecutorWidget extends NoteContextAwareWidget {
|
|
||||||
|
|
||||||
private $executeButton!: JQuery<HTMLElement>;
|
|
||||||
private $executeDescription!: JQuery<HTMLElement>;
|
|
||||||
|
|
||||||
isEnabled() {
|
|
||||||
return (
|
|
||||||
super.isEnabled() &&
|
|
||||||
this.note &&
|
|
||||||
(this.note.mime.startsWith("application/javascript") || this.isTriliumSqlite()) &&
|
|
||||||
(this.note.hasLabel("executeDescription") || this.note.hasLabel("executeButton"))
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
getTitle() {
|
|
||||||
return {
|
|
||||||
show: this.isEnabled(),
|
|
||||||
activate: true
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
doRender() {
|
|
||||||
this.$widget = $(TPL);
|
|
||||||
this.contentSized();
|
|
||||||
|
|
||||||
this.$executeButton = this.$widget.find(".execute-button");
|
|
||||||
this.$executeDescription = this.$widget.find(".execute-description");
|
|
||||||
}
|
|
||||||
|
|
||||||
async refreshWithNote(note: FNote) {
|
|
||||||
const executeTitle = note.getLabelValue("executeButton") || (this.isTriliumSqlite() ? t("script_executor.execute_query") : t("script_executor.execute_script"));
|
|
||||||
|
|
||||||
this.$executeButton.text(executeTitle);
|
|
||||||
this.$executeButton.attr("title", executeTitle);
|
|
||||||
keyboardActionService.updateDisplayedShortcuts(this.$widget);
|
|
||||||
|
|
||||||
const executeDescription = note.getLabelValue("executeDescription");
|
|
||||||
|
|
||||||
if (executeDescription) {
|
|
||||||
this.$executeDescription.show().html(executeDescription);
|
|
||||||
} else {
|
|
||||||
this.$executeDescription.empty().hide();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user