2019-10-06 21:35:26 +02:00
|
|
|
import optionsService from "../../services/options.js";
|
|
|
|
import server from "../../services/server.js";
|
2019-10-20 10:00:18 +02:00
|
|
|
import toastService from "../../services/toast.js";
|
2019-10-06 21:35:26 +02:00
|
|
|
|
|
|
|
export default class ProtectedSessionOptions {
|
|
|
|
constructor() {
|
|
|
|
this.$spellCheckEnabled = $("#spell-check-enabled");
|
|
|
|
this.$spellCheckLanguageCode = $("#spell-check-language-code");
|
|
|
|
|
|
|
|
this.$protectedSessionTimeout = $("#protected-session-timeout-in-seconds");
|
|
|
|
this.$noteRevisionsTimeInterval = $("#note-revision-snapshot-time-interval-in-seconds");
|
|
|
|
|
|
|
|
this.$spellCheckEnabled.change(() => {
|
|
|
|
const opts = { 'spellCheckEnabled': this.$spellCheckEnabled.is(":checked") ? "true" : "false" };
|
2019-10-20 10:00:18 +02:00
|
|
|
server.put('options', opts).then(() => toastService.showMessage("Options change have been saved."));
|
2019-10-06 21:35:26 +02:00
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$spellCheckLanguageCode.change(() => {
|
|
|
|
const opts = { 'spellCheckLanguageCode': this.$spellCheckLanguageCode.val() };
|
2019-10-20 10:00:18 +02:00
|
|
|
server.put('options', opts).then(() => toastService.showMessage("Options change have been saved."));
|
2019-10-06 21:35:26 +02:00
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$protectedSessionTimeout.change(() => {
|
|
|
|
const protectedSessionTimeout = this.$protectedSessionTimeout.val();
|
|
|
|
|
|
|
|
server.put('options', { 'protectedSessionTimeout': protectedSessionTimeout }).then(() => {
|
|
|
|
optionsService.reloadOptions();
|
|
|
|
|
2019-10-20 10:00:18 +02:00
|
|
|
toastService.showMessage("Options change have been saved.");
|
2019-10-06 21:35:26 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$noteRevisionsTimeInterval.change(() => {
|
|
|
|
const opts = { 'noteRevisionSnapshotTimeInterval': this.$noteRevisionsTimeInterval.val() };
|
2019-10-20 10:00:18 +02:00
|
|
|
server.put('options', opts).then(() => toastService.showMessage("Options change have been saved."));
|
2019-10-06 21:35:26 +02:00
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
optionsLoaded(options) {
|
|
|
|
this.$spellCheckEnabled.prop("checked", options['spellCheckEnabled'] === 'true');
|
|
|
|
this.$spellCheckLanguageCode.val(options['spellCheckLanguageCode']);
|
|
|
|
|
|
|
|
this.$protectedSessionTimeout.val(options['protectedSessionTimeout']);
|
|
|
|
this.$noteRevisionsTimeInterval.val(options['noteRevisionSnapshotTimeInterval']);
|
|
|
|
}
|
|
|
|
}
|