mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 10:55:55 +01:00
feat(call_to_action): filter call to actions
This commit is contained in:
@@ -1,40 +1,48 @@
|
|||||||
import { useMemo, useState } from "preact/hooks";
|
import { useEffect, useMemo, useState } from "preact/hooks";
|
||||||
import Button from "../react/Button";
|
import Button from "../react/Button";
|
||||||
import Modal from "../react/Modal";
|
import Modal from "../react/Modal";
|
||||||
import ReactBasicWidget from "../react/ReactBasicWidget";
|
import ReactBasicWidget from "../react/ReactBasicWidget";
|
||||||
|
import options from "../../services/options";
|
||||||
|
|
||||||
interface CallToAction {
|
interface CallToAction {
|
||||||
title: string;
|
title: string;
|
||||||
message: string;
|
message: string;
|
||||||
|
enabled: () => boolean;
|
||||||
buttons: {
|
buttons: {
|
||||||
text: string;
|
text: string;
|
||||||
}[];
|
}[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isNextTheme() {
|
||||||
|
return [ "next", "next-light", "next-dark" ].includes(options.get("theme"));
|
||||||
|
}
|
||||||
|
|
||||||
const CALL_TO_ACTIONS: CallToAction[] = [
|
const CALL_TO_ACTIONS: CallToAction[] = [
|
||||||
{
|
|
||||||
title: "Background effects are now stable",
|
|
||||||
message: "On Windows devices, background effects are now fully stable. The background effects adds a touch of color to the user interface by blurring the background behind it. This technique is also used in other applications such as Windows Explorer.",
|
|
||||||
buttons: [
|
|
||||||
{ text: "Enable background effects" }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "TriliumNext theme is now stable",
|
title: "TriliumNext theme is now stable",
|
||||||
message: "For a while now, we've been working on a new theme to give the application a more modern look.",
|
message: "For a while now, we've been working on a new theme to give the application a more modern look.",
|
||||||
|
enabled: isNextTheme,
|
||||||
buttons: [
|
buttons: [
|
||||||
{ text: "Switch to the TriliumNext theme"}
|
{ text: "Switch to the TriliumNext theme"}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Background effects are now stable",
|
||||||
|
message: "On Windows devices, background effects are now fully stable. The background effects adds a touch of color to the user interface by blurring the background behind it. This technique is also used in other applications such as Windows Explorer.",
|
||||||
|
enabled: () => isNextTheme() && options.is("backgroundEffects"),
|
||||||
|
buttons: [
|
||||||
|
{ text: "Enable background effects" }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
function CallToActionDialogComponent() {
|
function CallToActionDialogComponent({ activeCallToActions }: { activeCallToActions: CallToAction[] }) {
|
||||||
const [ activeIndex, setActiveIndex ] = useState(0);
|
const [ activeIndex, setActiveIndex ] = useState(0);
|
||||||
const [ shown, setShown ] = useState(true);
|
const [ shown, setShown ] = useState(true);
|
||||||
const activeItem = CALL_TO_ACTIONS[activeIndex];
|
const activeItem = activeCallToActions[activeIndex];
|
||||||
|
|
||||||
function goToNext() {
|
function goToNext() {
|
||||||
if (activeIndex + 1 < CALL_TO_ACTIONS.length) {
|
if (activeIndex + 1 < activeCallToActions.length) {
|
||||||
setActiveIndex(activeIndex + 1);
|
setActiveIndex(activeIndex + 1);
|
||||||
} else {
|
} else {
|
||||||
setShown(false);
|
setShown(false);
|
||||||
@@ -64,7 +72,8 @@ function CallToActionDialogComponent() {
|
|||||||
export class CallToActionDialog extends ReactBasicWidget {
|
export class CallToActionDialog extends ReactBasicWidget {
|
||||||
|
|
||||||
get component() {
|
get component() {
|
||||||
return <CallToActionDialogComponent />
|
const filteredCallToActions = CALL_TO_ACTIONS.filter((callToAction) => callToAction.enabled());
|
||||||
|
return <CallToActionDialogComponent activeCallToActions={filteredCallToActions} />
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user