2021-02-28 01:15:45 +01:00
|
|
|
import * as channel from "./channel";
|
2021-02-28 01:18:00 +01:00
|
|
|
import * as settings_account from "./settings_account";
|
2021-02-28 01:15:45 +01:00
|
|
|
import * as upload_widget from "./upload_widget";
|
2020-08-01 03:43:15 +02:00
|
|
|
|
2021-02-28 01:15:45 +01:00
|
|
|
export function build_bot_create_widget() {
|
2013-07-29 20:39:38 +02:00
|
|
|
// We have to do strange gyrations with the file input to clear it,
|
|
|
|
// where we replace it wholesale, so we generalize the file input with
|
|
|
|
// a callback function.
|
2019-11-02 00:06:25 +01:00
|
|
|
const get_file_input = function () {
|
2020-07-15 01:29:15 +02:00
|
|
|
return $("#bot_avatar_file_input");
|
2013-07-29 20:39:38 +02:00
|
|
|
};
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const file_name_field = $("#bot_avatar_file");
|
|
|
|
const input_error = $("#bot_avatar_file_input_error");
|
|
|
|
const clear_button = $("#bot_avatar_clear_button");
|
|
|
|
const upload_button = $("#bot_avatar_upload_button");
|
2013-07-29 21:17:34 +02:00
|
|
|
|
2017-02-21 03:15:22 +01:00
|
|
|
return upload_widget.build_widget(
|
2013-07-29 21:31:21 +02:00
|
|
|
get_file_input,
|
|
|
|
file_name_field,
|
|
|
|
input_error,
|
|
|
|
clear_button,
|
2020-07-02 02:16:03 +02:00
|
|
|
upload_button,
|
2013-07-29 21:31:21 +02:00
|
|
|
);
|
2021-02-28 01:15:45 +01:00
|
|
|
}
|
2013-07-29 21:31:21 +02:00
|
|
|
|
2021-02-28 01:15:45 +01:00
|
|
|
export function build_bot_edit_widget(target) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const get_file_input = function () {
|
2020-07-15 01:29:15 +02:00
|
|
|
return target.find(".edit_bot_avatar_file_input");
|
2013-07-29 16:27:18 +02:00
|
|
|
};
|
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const file_name_field = target.find(".edit_bot_avatar_file");
|
|
|
|
const input_error = target.find(".edit_bot_avatar_error");
|
|
|
|
const clear_button = target.find(".edit_bot_avatar_clear_button");
|
|
|
|
const upload_button = target.find(".edit_bot_avatar_upload_button");
|
2013-07-29 16:27:18 +02:00
|
|
|
|
2017-02-21 03:15:22 +01:00
|
|
|
return upload_widget.build_widget(
|
2013-07-29 16:27:18 +02:00
|
|
|
get_file_input,
|
|
|
|
file_name_field,
|
|
|
|
input_error,
|
|
|
|
clear_button,
|
2020-07-02 02:16:03 +02:00
|
|
|
upload_button,
|
2013-07-29 16:27:18 +02:00
|
|
|
);
|
2021-02-28 01:15:45 +01:00
|
|
|
}
|
2013-07-29 16:27:18 +02:00
|
|
|
|
2021-02-28 01:15:45 +01:00
|
|
|
export function build_user_avatar_widget(upload_function) {
|
2019-11-02 00:06:25 +01:00
|
|
|
const get_file_input = function () {
|
2020-07-15 01:29:15 +02:00
|
|
|
return $("#user-avatar-upload-widget .image_file_input").expectOne();
|
2013-10-28 15:49:38 +01:00
|
|
|
};
|
|
|
|
|
2020-07-15 21:14:31 +02:00
|
|
|
if (page_params.avatar_source === "G") {
|
2020-07-15 20:58:34 +02:00
|
|
|
$("#user-avatar-upload-widget .image-delete-button").hide();
|
2018-03-02 18:33:20 +01:00
|
|
|
$("#user-avatar-source").show();
|
|
|
|
} else {
|
|
|
|
$("#user-avatar-source").hide();
|
2016-12-21 18:34:03 +01:00
|
|
|
}
|
2018-03-02 18:33:20 +01:00
|
|
|
|
2020-07-15 21:14:31 +02:00
|
|
|
$("#user-avatar-upload-widget .image-delete-button").on("click keydown", (e) => {
|
2016-12-21 18:34:03 +01:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
channel.del({
|
2020-07-15 01:29:15 +02:00
|
|
|
url: "/json/users/me/avatar",
|
2020-07-15 21:14:31 +02:00
|
|
|
success() {
|
2020-07-15 20:58:34 +02:00
|
|
|
$("#user-avatar-upload-widget .image-delete-button").hide();
|
2018-05-06 21:43:17 +02:00
|
|
|
$("#user-avatar-source").show();
|
|
|
|
// Need to clear input because of a small edge case
|
|
|
|
// where you try to upload the same image you just deleted.
|
2020-07-15 01:29:15 +02:00
|
|
|
get_file_input().val("");
|
2018-10-18 10:04:43 +02:00
|
|
|
// Rest of the work is done via the user_events -> avatar_url event we will get
|
2017-01-12 00:17:43 +01:00
|
|
|
},
|
2016-12-21 18:34:03 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-04-02 09:55:16 +02:00
|
|
|
if (settings_account.user_can_change_avatar()) {
|
|
|
|
return upload_widget.build_direct_upload_widget(
|
|
|
|
get_file_input,
|
2020-06-15 08:28:41 +02:00
|
|
|
$("#user-avatar-upload-widget .image_file_input_error").expectOne(),
|
2020-06-13 06:27:28 +02:00
|
|
|
$("#user-avatar-upload-widget .image_upload_button").expectOne(),
|
2020-04-02 09:55:16 +02:00
|
|
|
upload_function,
|
2020-07-02 02:16:03 +02:00
|
|
|
page_params.max_avatar_file_size_mib,
|
2020-04-02 09:55:16 +02:00
|
|
|
);
|
|
|
|
}
|
2020-09-24 07:50:36 +02:00
|
|
|
|
|
|
|
return undefined;
|
2021-02-28 01:15:45 +01:00
|
|
|
}
|