mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
This commit was originally automatically generated using `tools/lint --only=eslint --fix`. It was then modified by tabbott to contain only changes to a set of files that are unlikely to result in significant merge conflicts with any open pull request, excluding about 20 files. His plan is to merge the remaining changes with more precise care, potentially involving merging parts of conflicting pull requests before running the `eslint --fix` operation. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
165 lines
4.9 KiB
JavaScript
165 lines
4.9 KiB
JavaScript
const render_admin_default_streams_list = require("../templates/admin_default_streams_list.hbs");
|
|
const Dict = require('./dict').Dict;
|
|
|
|
const meta = {
|
|
loaded: false,
|
|
};
|
|
|
|
exports.reset = function () {
|
|
meta.loaded = false;
|
|
};
|
|
|
|
exports.maybe_disable_widgets = function () {
|
|
if (page_params.is_admin) {
|
|
return;
|
|
}
|
|
|
|
$(".organization-box [data-name='default-streams-list']")
|
|
.find("input:not(.search), button, select").attr("disabled", true);
|
|
};
|
|
|
|
exports.build_default_stream_table = function (streams_data) {
|
|
const self = {};
|
|
|
|
self.row_dict = new Dict();
|
|
|
|
const table = $("#admin_default_streams_table").expectOne();
|
|
|
|
const streams_list = list_render.create(table, streams_data, {
|
|
name: "default_streams_list",
|
|
modifier: function (item) {
|
|
const row = $(render_admin_default_streams_list({
|
|
stream: item,
|
|
can_modify: page_params.is_admin,
|
|
}));
|
|
self.row_dict.set(item.stream_id, row);
|
|
return row;
|
|
},
|
|
filter: {
|
|
element: table.closest(".settings-section").find(".search"),
|
|
callback: function (item, value) {
|
|
return item.name.toLowerCase().indexOf(value) >= 0;
|
|
},
|
|
onupdate: function () {
|
|
ui.reset_scrollbar(table);
|
|
},
|
|
},
|
|
parent_container: $("#admin-default-streams-list").expectOne(),
|
|
}).init();
|
|
|
|
streams_list.sort("alphabetic", "name");
|
|
|
|
loading.destroy_indicator($('#admin_page_default_streams_loading_indicator'));
|
|
|
|
self.remove = function (stream_id) {
|
|
if (self.row_dict.has(stream_id)) {
|
|
const row = self.row_dict.get(stream_id);
|
|
row.remove();
|
|
}
|
|
};
|
|
|
|
return self;
|
|
};
|
|
|
|
let default_stream_table;
|
|
|
|
exports.remove_default_stream = function (stream_id) {
|
|
if (default_stream_table) {
|
|
default_stream_table.remove(stream_id);
|
|
}
|
|
};
|
|
|
|
exports.update_default_streams_table = function () {
|
|
if (/#*organization/.test(window.location.hash) ||
|
|
/#*settings/.test(window.location.hash)) {
|
|
$("#admin_default_streams_table").expectOne().find("tr.default_stream_row").remove();
|
|
default_stream_table = exports.build_default_stream_table(
|
|
page_params.realm_default_streams);
|
|
}
|
|
};
|
|
|
|
function make_stream_default(stream_name) {
|
|
const data = {
|
|
stream_name: stream_name,
|
|
};
|
|
const default_stream_status = $("#admin-default-stream-status");
|
|
default_stream_status.hide();
|
|
|
|
channel.post({
|
|
url: '/json/default_streams',
|
|
data: data,
|
|
error: function (xhr) {
|
|
if (xhr.status.toString().charAt(0) === "4") {
|
|
ui_report.error(i18n.t("Failed"), xhr, default_stream_status);
|
|
} else {
|
|
ui_report.error(i18n.t("Failed"), default_stream_status);
|
|
}
|
|
default_stream_status.show();
|
|
},
|
|
});
|
|
}
|
|
|
|
exports.delete_default_stream = function (stream_name, default_stream_row, alert_element) {
|
|
channel.del({
|
|
url: "/json/default_streams" + "?" + $.param({ stream_name: stream_name }),
|
|
error: function (xhr) {
|
|
ui_report.generic_row_button_error(xhr, alert_element);
|
|
},
|
|
success: function () {
|
|
default_stream_row.remove();
|
|
},
|
|
});
|
|
};
|
|
|
|
exports.set_up = function () {
|
|
exports.build_page();
|
|
exports.maybe_disable_widgets();
|
|
};
|
|
|
|
exports.build_page = function () {
|
|
meta.loaded = true;
|
|
|
|
exports.update_default_streams_table();
|
|
|
|
$('.create_default_stream').keypress(function (e) {
|
|
if (e.which === 13) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
const default_stream_input = $(".create_default_stream");
|
|
make_stream_default(default_stream_input.val());
|
|
default_stream_input[0].value = "";
|
|
}
|
|
});
|
|
|
|
$('.create_default_stream').typeahead({
|
|
items: 5,
|
|
fixed: true,
|
|
source: function () {
|
|
return stream_data.get_non_default_stream_names();
|
|
},
|
|
highlighter: function (item) {
|
|
return typeahead_helper.render_typeahead_item({ primary: item });
|
|
},
|
|
updater: function (stream_name) {
|
|
make_stream_default(stream_name);
|
|
},
|
|
});
|
|
|
|
$(".default-stream-form").on("click", "#do_submit_stream", function (e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
const default_stream_input = $(".create_default_stream");
|
|
make_stream_default(default_stream_input.val());
|
|
// Clear value inside input box
|
|
default_stream_input[0].value = "";
|
|
});
|
|
|
|
$("body").on("click", ".default_stream_row .remove-default-stream", function (e) {
|
|
const row = $(this).closest(".default_stream_row");
|
|
const stream_name = row.attr("id");
|
|
exports.delete_default_stream(stream_name, row, $(e.target));
|
|
});
|
|
};
|
|
|
|
window.settings_streams = exports;
|