2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
|
|
|
|
2021-04-13 06:51:54 +02:00
|
|
|
import {$t, $t_html} from "./i18n";
|
2021-02-28 00:36:14 +01:00
|
|
|
import * as loading from "./loading";
|
2021-02-28 00:58:55 +01:00
|
|
|
import * as ui_report from "./ui_report";
|
2021-02-28 00:36:14 +01:00
|
|
|
|
2021-02-10 17:09:37 +01:00
|
|
|
export function display_checkmark($elem) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const check_mark = document.createElement("img");
|
2018-04-12 19:55:17 +02:00
|
|
|
check_mark.src = "/static/images/checkbox-green.svg";
|
2018-03-05 03:13:29 +01:00
|
|
|
$elem.prepend(check_mark);
|
2018-04-12 19:55:17 +02:00
|
|
|
$(check_mark).css("width", "13px");
|
2021-02-10 17:09:37 +01:00
|
|
|
}
|
2018-03-05 03:13:29 +01:00
|
|
|
|
2021-02-10 17:09:37 +01:00
|
|
|
export const strings = {
|
2021-04-13 05:18:25 +02:00
|
|
|
success_html: $t_html({defaultMessage: "Saved"}),
|
|
|
|
failure_html: $t_html({defaultMessage: "Save failed"}),
|
2021-04-13 06:51:54 +02:00
|
|
|
saving: $t({defaultMessage: "Saving"}),
|
2018-03-05 03:23:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// Generic function for informing users about changes to the settings
|
|
|
|
// UI. Intended to replace the old system that was built around
|
|
|
|
// direct calls to `ui_report`.
|
2021-03-24 21:44:43 +01:00
|
|
|
export function do_settings_change(
|
|
|
|
request_method,
|
|
|
|
url,
|
|
|
|
data,
|
|
|
|
status_element,
|
|
|
|
{
|
2021-04-13 05:18:25 +02:00
|
|
|
success_msg_html = strings.success_html,
|
2021-04-20 16:41:39 +02:00
|
|
|
failure_msg_html = strings.failure_html,
|
2021-03-24 21:44:43 +01:00
|
|
|
success_continuation,
|
|
|
|
error_continuation,
|
|
|
|
sticky = false,
|
|
|
|
error_msg_element,
|
|
|
|
} = {},
|
|
|
|
) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const spinner = $(status_element).expectOne();
|
2018-03-29 02:02:01 +02:00
|
|
|
spinner.fadeTo(0, 1);
|
2021-02-10 17:09:37 +01:00
|
|
|
loading.make_indicator(spinner, {text: strings.saving});
|
2021-09-14 20:58:05 +02:00
|
|
|
const remove_after = sticky ? undefined : 1000;
|
2019-11-02 00:06:25 +01:00
|
|
|
const appear_after = 500;
|
2018-03-30 02:31:11 +02:00
|
|
|
|
2018-03-11 10:47:36 +01:00
|
|
|
request_method({
|
2020-07-20 22:18:43 +02:00
|
|
|
url,
|
|
|
|
data,
|
|
|
|
success(reponse_data) {
|
2020-07-02 01:45:54 +02:00
|
|
|
setTimeout(() => {
|
2021-04-13 05:18:25 +02:00
|
|
|
ui_report.success(success_msg_html, spinner, remove_after);
|
2021-02-10 17:09:37 +01:00
|
|
|
display_checkmark(spinner);
|
2018-03-30 02:31:11 +02:00
|
|
|
}, appear_after);
|
2018-03-23 15:23:31 +01:00
|
|
|
if (success_continuation !== undefined) {
|
2021-03-24 21:44:43 +01:00
|
|
|
success_continuation(reponse_data);
|
2018-03-23 15:23:31 +01:00
|
|
|
}
|
|
|
|
},
|
2020-07-20 22:18:43 +02:00
|
|
|
error(xhr) {
|
2021-03-24 21:44:43 +01:00
|
|
|
if (error_msg_element) {
|
2019-07-10 19:17:26 +02:00
|
|
|
loading.destroy_indicator(spinner);
|
2021-04-20 16:41:39 +02:00
|
|
|
ui_report.error(failure_msg_html, xhr, error_msg_element);
|
2019-07-10 19:17:26 +02:00
|
|
|
} else {
|
2021-04-20 16:41:39 +02:00
|
|
|
ui_report.error(failure_msg_html, xhr, spinner);
|
2019-07-10 19:17:26 +02:00
|
|
|
}
|
2018-03-23 15:23:31 +01:00
|
|
|
if (error_continuation !== undefined) {
|
|
|
|
error_continuation(xhr);
|
|
|
|
}
|
|
|
|
},
|
2018-03-05 03:23:38 +01:00
|
|
|
});
|
2021-02-10 17:09:37 +01:00
|
|
|
}
|
2018-03-05 03:23:38 +01:00
|
|
|
|
2018-03-03 05:44:58 +01:00
|
|
|
// This function is used to disable sub-setting when main setting is checked or unchecked
|
|
|
|
// or two settings are inter-dependent on their values values.
|
|
|
|
// * is_checked is boolean, shows if the main setting is checked or not.
|
|
|
|
// * sub_setting_id is sub setting or setting which depend on main setting,
|
|
|
|
// string id of setting.
|
|
|
|
// * disable_on_uncheck is boolean, true if sub setting should be disabled
|
|
|
|
// when main setting unchecked.
|
2021-07-18 19:13:27 +02:00
|
|
|
export function disable_sub_setting_onchange(
|
|
|
|
is_checked,
|
|
|
|
sub_setting_id,
|
|
|
|
disable_on_uncheck,
|
|
|
|
include_label,
|
|
|
|
) {
|
2020-07-15 00:34:28 +02:00
|
|
|
if ((is_checked && disable_on_uncheck) || (!is_checked && !disable_on_uncheck)) {
|
2021-02-03 23:23:32 +01:00
|
|
|
$(`#${CSS.escape(sub_setting_id)}`).prop("disabled", false);
|
2021-07-18 19:13:27 +02:00
|
|
|
if (include_label) {
|
|
|
|
$(`#${CSS.escape(sub_setting_id)}_label`)
|
|
|
|
.parent()
|
|
|
|
.removeClass("control-label-disabled");
|
|
|
|
}
|
2020-07-15 00:34:28 +02:00
|
|
|
} else if ((is_checked && !disable_on_uncheck) || (!is_checked && disable_on_uncheck)) {
|
2021-02-03 23:23:32 +01:00
|
|
|
$(`#${CSS.escape(sub_setting_id)}`).prop("disabled", true);
|
2021-07-18 19:13:27 +02:00
|
|
|
if (include_label) {
|
|
|
|
$(`#${CSS.escape(sub_setting_id)}_label`)
|
|
|
|
.parent()
|
|
|
|
.addClass("control-label-disabled");
|
|
|
|
}
|
2018-03-03 05:44:58 +01:00
|
|
|
}
|
2021-02-10 17:09:37 +01:00
|
|
|
}
|