mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00

- use CSS contain wherever possible to reduce subtrees of forced reflows - reduced dependency between note and note_contents updates which will reduce number of updates to components - optimization of "many rows" querying
69 lines
2.1 KiB
JavaScript
69 lines
2.1 KiB
JavaScript
import BasicWidget from "./basic_widget.js";
|
|
import options from "../services/options.js";
|
|
import utils from "../services/utils.js";
|
|
|
|
const TPL = `
|
|
<div class="title-bar-buttons">
|
|
<style>
|
|
.title-bar-buttons {
|
|
margin-top: 4px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.title-bar-buttons button {
|
|
border: none !important;
|
|
background: none !important;
|
|
font-size: 150%;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.title-bar-buttons button:hover {
|
|
background-color: var(--accented-background-color) !important;
|
|
}
|
|
</style>
|
|
|
|
<button class="btn icon-action bx bx-minus minimize-btn"></button>
|
|
<button class="btn icon-action bx bx-checkbox maximize-btn"></button>
|
|
<button class="btn icon-action bx bx-x close-btn"></button>
|
|
</div>`;
|
|
|
|
export default class TitleBarButtonsWidget extends BasicWidget {
|
|
doRender() {
|
|
if (!utils.isElectron() || options.is('nativeTitleBarVisible')) {
|
|
return this.$widget = $('<div>');
|
|
}
|
|
|
|
this.$widget = $(TPL);
|
|
this.contentSized();
|
|
|
|
const $minimizeBtn = this.$widget.find(".minimize-btn");
|
|
const $maximizeBtn = this.$widget.find(".maximize-btn");
|
|
const $closeBtn = this.$widget.find(".close-btn");
|
|
|
|
$minimizeBtn.on('click', () => {
|
|
$minimizeBtn.trigger('blur');
|
|
const {remote} = utils.dynamicRequire('electron');
|
|
remote.BrowserWindow.getFocusedWindow().minimize();
|
|
});
|
|
|
|
$maximizeBtn.on('click', () => {
|
|
$maximizeBtn.trigger('blur');
|
|
const {remote} = utils.dynamicRequire('electron');
|
|
const focusedWindow = remote.BrowserWindow.getFocusedWindow();
|
|
|
|
if (focusedWindow.isMaximized()) {
|
|
focusedWindow.unmaximize();
|
|
} else {
|
|
focusedWindow.maximize();
|
|
}
|
|
});
|
|
|
|
$closeBtn.on('click', () => {
|
|
$closeBtn.trigger('blur');
|
|
const {remote} = utils.dynamicRequire('electron');
|
|
remote.BrowserWindow.getFocusedWindow().close();
|
|
});
|
|
}
|
|
}
|