mirror of
https://github.com/zadam/trilium.git
synced 2025-11-15 17:55:52 +01:00
feat(touch_bar): basic integration
This commit is contained in:
37
src/public/app/widgets/touch_bar.ts
Normal file
37
src/public/app/widgets/touch_bar.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
import utils from "../services/utils.js";
|
||||
import Component from "../components/component.js";
|
||||
|
||||
export default class TouchBarWidget extends Component {
|
||||
|
||||
remote: typeof import("@electron/remote");
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.remote = utils.dynamicRequire("@electron/remote") as typeof import("@electron/remote");
|
||||
this.#setTouchBar();
|
||||
}
|
||||
|
||||
#setTouchBar() {
|
||||
const touchBarData = this.#buildTouchBar();
|
||||
this.remote.getCurrentWindow().setTouchBar(touchBarData);
|
||||
console.log("Setting touch bar", touchBarData);
|
||||
}
|
||||
|
||||
#buildTouchBar() {
|
||||
const { TouchBarButton } = this.remote.TouchBar;
|
||||
|
||||
const items = [
|
||||
new TouchBarButton({
|
||||
label: "New note",
|
||||
click: () => {
|
||||
console.log("New note pressed.");
|
||||
}
|
||||
})
|
||||
];
|
||||
|
||||
return new this.remote.TouchBar({
|
||||
items
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user