mirror of
https://github.com/zadam/trilium.git
synced 2025-10-29 17:26:38 +01:00
refactor(share_settings): get rid of save() method
there's no need to execute PUT requests for *all* Share Settings, when any option changes moved the code to inside the "change" event handlers
This commit is contained in:
@@ -61,9 +61,10 @@ export default class ShareSettingsOptions extends OptionsWidget {
|
|||||||
this.$shareRootCheck = this.$widget.find(".share-root-check");
|
this.$shareRootCheck = this.$widget.find(".share-root-check");
|
||||||
this.$shareRootStatus = this.$widget.find(".share-root-status");
|
this.$shareRootStatus = this.$widget.find(".share-root-status");
|
||||||
|
|
||||||
this.$redirectBareDomain.on('change', () => {
|
this.$redirectBareDomain.on('change', async () => {
|
||||||
|
|
||||||
const redirectBareDomain = this.$redirectBareDomain.is(":checked");
|
const redirectBareDomain = this.$redirectBareDomain.is(":checked");
|
||||||
this.save();
|
await this.updateOption<"redirectBareDomain">("redirectBareDomain", redirectBareDomain.toString());
|
||||||
|
|
||||||
// Show/hide share root status section based on redirectBareDomain checkbox
|
// Show/hide share root status section based on redirectBareDomain checkbox
|
||||||
this.$shareRootCheck.toggle(redirectBareDomain);
|
this.$shareRootCheck.toggle(redirectBareDomain);
|
||||||
@@ -72,14 +73,14 @@ export default class ShareSettingsOptions extends OptionsWidget {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$showLoginInShareTheme.on('change', () => {
|
this.$showLoginInShareTheme.on('change', async () => {
|
||||||
const showLoginInShareTheme = this.$showLoginInShareTheme.is(":checked");
|
const showLoginInShareTheme = this.$showLoginInShareTheme.is(":checked");
|
||||||
this.save();
|
await this.updateOption<"showLoginInShareTheme">("showLoginInShareTheme", showLoginInShareTheme.toString());
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$useCleanUrls.on('change', () => {
|
this.$useCleanUrls.on('change', async () => {
|
||||||
const useCleanUrls = this.$useCleanUrls.is(":checked");
|
const useCleanUrls = this.$useCleanUrls.is(":checked");
|
||||||
this.save();
|
await this.updateOption<"useCleanUrls">("useCleanUrls", useCleanUrls.toString());
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$sharePath.on('change', async () => {
|
this.$sharePath.on('change', async () => {
|
||||||
@@ -131,22 +132,4 @@ export default class ShareSettingsOptions extends OptionsWidget {
|
|||||||
$button.prop("disabled", false);
|
$button.prop("disabled", false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async save() {
|
|
||||||
const redirectBareDomain = this.$redirectBareDomain.is(":checked");
|
|
||||||
await this.updateOption<"redirectBareDomain">("redirectBareDomain", redirectBareDomain.toString());
|
|
||||||
|
|
||||||
const showLoginInShareTheme = this.$showLoginInShareTheme.is(":checked");
|
|
||||||
await this.updateOption<"showLoginInShareTheme">("showLoginInShareTheme", showLoginInShareTheme.toString());
|
|
||||||
|
|
||||||
const useCleanUrls = this.$useCleanUrls.is(":checked");
|
|
||||||
await this.updateOption<"useCleanUrls">("useCleanUrls", useCleanUrls.toString());
|
|
||||||
|
|
||||||
// Ensure sharePath always starts with a slash
|
|
||||||
let sharePath = this.$sharePath.val() as string;
|
|
||||||
if (sharePath && !sharePath.startsWith('/')) {
|
|
||||||
sharePath = '/' + sharePath;
|
|
||||||
}
|
|
||||||
await this.updateOption<"sharePath">("sharePath", sharePath);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user