2014-03-04 23:37:29 +01:00
|
|
|
var alert_words_ui = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2017-06-07 21:46:11 +02:00
|
|
|
exports.render_alert_words_ui = function () {
|
2017-06-11 15:21:11 +02:00
|
|
|
var words = alert_words.words;
|
2017-06-07 21:46:11 +02:00
|
|
|
var word_list = $('#alert_words_list');
|
|
|
|
|
|
|
|
word_list.find('.alert-word-item').remove();
|
2017-06-11 15:21:11 +02:00
|
|
|
_.each(words, function (alert_word) {
|
2017-06-07 21:46:11 +02:00
|
|
|
var rendered_alert_word = templates.render('alert_word_settings_item',
|
|
|
|
{word: alert_word, editing: false});
|
|
|
|
word_list.append(rendered_alert_word);
|
|
|
|
});
|
|
|
|
var new_alert_word_form = templates.render('alert_word_settings_item',
|
|
|
|
{word: '', editing: true});
|
|
|
|
word_list.append(new_alert_word_form);
|
|
|
|
|
|
|
|
// Focus new alert word name text box.
|
|
|
|
$('#create_alert_word_name').focus();
|
|
|
|
};
|
|
|
|
|
2017-06-07 21:16:02 +02:00
|
|
|
function update_alert_word_status(status_text, is_error) {
|
|
|
|
var alert_word_status = $('#alert_word_status');
|
|
|
|
if (is_error) {
|
|
|
|
alert_word_status.removeClass('alert-success').addClass('alert-danger');
|
|
|
|
} else {
|
|
|
|
alert_word_status.removeClass('alert-danger').addClass('alert-success');
|
|
|
|
}
|
|
|
|
alert_word_status.find('.alert_word_status_text').text(status_text);
|
|
|
|
alert_word_status.show();
|
|
|
|
}
|
|
|
|
|
2017-06-11 20:30:09 +02:00
|
|
|
function add_alert_word(alert_word) {
|
2017-06-11 21:30:06 +02:00
|
|
|
alert_word = $.trim(alert_word);
|
|
|
|
if (alert_word === '') {
|
2017-06-11 20:30:09 +02:00
|
|
|
update_alert_word_status(i18n.t("Alert word can't be empty!"), true);
|
2014-03-04 23:37:29 +01:00
|
|
|
return;
|
2017-06-11 21:30:06 +02:00
|
|
|
} else if (alert_words.words.indexOf(alert_word) !== -1) {
|
|
|
|
update_alert_word_status(i18n.t("Alert word already exists!"), true);
|
|
|
|
return;
|
2013-09-09 17:49:39 +02:00
|
|
|
}
|
2014-03-04 23:37:29 +01:00
|
|
|
|
2017-06-11 20:30:09 +02:00
|
|
|
var words_to_be_added = [alert_word];
|
2013-09-09 17:49:39 +02:00
|
|
|
|
2018-05-06 21:43:17 +02:00
|
|
|
channel.post({
|
2017-06-11 20:30:09 +02:00
|
|
|
url: '/json/users/me/alert_words',
|
|
|
|
data: {alert_words: JSON.stringify(words_to_be_added)},
|
|
|
|
success: function () {
|
|
|
|
update_alert_word_status(i18n.t("Alert word added successfully!"), false);
|
|
|
|
},
|
|
|
|
error: function () {
|
|
|
|
update_alert_word_status(i18n.t("Error adding alert word!"), true);
|
|
|
|
},
|
|
|
|
});
|
2014-03-04 23:37:29 +01:00
|
|
|
}
|
2013-09-09 17:49:39 +02:00
|
|
|
|
2017-06-07 21:36:43 +02:00
|
|
|
function remove_alert_word(alert_word) {
|
|
|
|
var words_to_be_removed = [alert_word];
|
|
|
|
|
|
|
|
channel.del({
|
|
|
|
url: '/json/users/me/alert_words',
|
|
|
|
data: {alert_words: JSON.stringify(words_to_be_removed)},
|
|
|
|
success: function () {
|
|
|
|
update_alert_word_status(i18n.t("Alert word removed successfully!"), false);
|
|
|
|
},
|
|
|
|
error: function () {
|
|
|
|
update_alert_word_status(i18n.t("Error removing alert word!"), true);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-03-04 23:37:29 +01:00
|
|
|
exports.set_up_alert_words = function () {
|
|
|
|
// The settings page must be rendered before this function gets called.
|
2013-09-09 17:49:39 +02:00
|
|
|
|
2017-06-07 21:46:11 +02:00
|
|
|
exports.render_alert_words_ui();
|
2013-09-09 17:49:39 +02:00
|
|
|
|
2017-06-11 20:30:09 +02:00
|
|
|
$('#alert_words_list').on('click', '#create_alert_word_button', function () {
|
2016-06-24 01:53:49 +02:00
|
|
|
var word = $('#create_alert_word_name').val();
|
2017-06-11 20:30:09 +02:00
|
|
|
add_alert_word(word);
|
2013-09-09 17:49:39 +02:00
|
|
|
});
|
|
|
|
|
2016-06-24 01:53:49 +02:00
|
|
|
$('#alert_words_list').on('click', '.remove-alert-word', function (event) {
|
2017-06-07 21:36:43 +02:00
|
|
|
var word = $(event.currentTarget).parents('li').find('.value').text();
|
|
|
|
remove_alert_word(word);
|
2013-09-09 17:49:39 +02:00
|
|
|
});
|
|
|
|
|
2016-06-24 01:53:49 +02:00
|
|
|
$('#alert_words_list').on('keypress', '#create_alert_word_name', function (event) {
|
2013-09-09 17:49:39 +02:00
|
|
|
var key = event.which;
|
2013-11-06 15:12:28 +01:00
|
|
|
// Handle enter (13) as "add".
|
|
|
|
if (key === 13) {
|
2013-09-09 17:49:39 +02:00
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
var word = $(event.target).val();
|
2017-06-11 20:30:09 +02:00
|
|
|
add_alert_word(word);
|
2013-09-09 17:49:39 +02:00
|
|
|
}
|
|
|
|
});
|
2016-07-14 01:32:25 +02:00
|
|
|
|
2017-06-07 21:16:02 +02:00
|
|
|
$('#alert-word-settings').on('click', '.close-alert-word-status', function (event) {
|
2016-07-14 01:32:25 +02:00
|
|
|
event.preventDefault();
|
|
|
|
var alert = $(event.currentTarget).parents('.alert');
|
|
|
|
alert.hide();
|
|
|
|
});
|
2014-03-04 23:37:29 +01:00
|
|
|
};
|
2013-09-09 17:49:39 +02:00
|
|
|
|
2014-03-04 23:37:29 +01:00
|
|
|
return exports;
|
|
|
|
}());
|
2016-12-04 08:59:56 +01:00
|
|
|
|
|
|
|
if (typeof module !== 'undefined') {
|
|
|
|
module.exports = alert_words_ui;
|
|
|
|
}
|