scinote-web/app/assets/javascripts/users/settings/teams/show.js

257 lines
6.5 KiB
JavaScript
Raw Normal View History

2016-02-12 23:52:43 +08:00
var usersDatatable = null;
// Initialize edit name modal window
function initEditName() {
2017-01-25 19:12:27 +08:00
var editNameModal = $("#team-name-modal");
2016-02-12 23:52:43 +08:00
var editNameModalBody = editNameModal.find(".modal-body");
var editNameModalSubmitBtn = editNameModal.find("[data-action='submit']");
$(".name-link")
.on("ajax:success", function(ev, data, status) {
var nameLink = $(".name-refresh");
// Set modal body
editNameModalBody.html(data.html);
editNameModalBody.find("form")
.on("ajax:success", function(ev2, data2, status2) {
// Reload page
location.reload();
})
.on("ajax:error", function(ev2, data2, status2) {
// Display errors if needed
editNameModalBody
.find("form")
2017-01-25 19:12:27 +08:00
.renderFormErrors("team", data2.responseJSON);
2016-02-12 23:52:43 +08:00
});
// Show modal
editNameModal.modal("show");
})
.on("ajax:error", function(ev, data, status) {
// TODO
});
editNameModalSubmitBtn.on("click", function() {
// Submit the form inside the modal
editNameModalBody.find("form").submit();
});
editNameModal.on("hidden.bs.modal", function() {
editNameModalBody.find("form").off("ajax:success ajax:error");
editNameModalBody.html("");
});
}
// Initialize edit description modal window
function initEditDescription() {
2017-01-25 19:12:27 +08:00
var editDescriptionModal = $("#team-description-modal");
2016-02-12 23:52:43 +08:00
var editDescriptionModalBody = editDescriptionModal.find(".modal-body");
var editDescriptionModalSubmitBtn = editDescriptionModal.find("[data-action='submit']");
$(".description-link")
.on("ajax:success", function(ev, data, status) {
var descriptionLink = $(".description-refresh");
// Set modal body
editDescriptionModalBody.html(data.html);
editDescriptionModalBody.find("form")
.on("ajax:success", function(ev2, data2, status2) {
// Update module's description in the tab
descriptionLink.html(data2.description_label);
// Close modal
editDescriptionModal.modal("hide");
})
.on("ajax:error", function(ev2, data2, status2) {
// Display errors if needed
editDescriptionModalBody
.find("form")
2017-01-25 19:12:27 +08:00
.renderFormErrors("team", data2.responseJSON);
2016-02-12 23:52:43 +08:00
});
// Show modal
editDescriptionModal.modal("show");
})
.on("ajax:error", function(ev, data, status) {
// TODO
});
editDescriptionModalSubmitBtn.on("click", function() {
// Submit the form inside the modal
editDescriptionModalBody.find("form").submit();
});
editDescriptionModal.on("hidden.bs.modal", function() {
editDescriptionModalBody.find("form").off("ajax:success ajax:error");
editDescriptionModalBody.html("");
});
}
// Initialize users DataTable
function initUsersTable() {
usersDatatable = $("#users-table").DataTable({
order: [[1, "asc"]],
dom: "RBfltpi",
stateSave: true,
buttons: [],
processing: true,
serverSide: true,
ajax: {
url: $("#users-table").data("source"),
type: "POST"
},
colReorder: {
fixedColumnsLeft: 1000000 // Disable reordering
},
columnDefs: [{
2017-01-30 22:55:21 +08:00
targets: [ 0, 1, 2, 3, 4 ],
2016-02-12 23:52:43 +08:00
searchable: true,
orderable: true
}, {
targets: 5,
searchable: false,
orderable: false,
sWidth: "1%"
}],
columns: [
{ data: "0" },
{ data: "1" },
{ data: "2" },
{ data: "3" },
{ data: "4" },
{ data: "5" }
],
oLanguage: {
2018-05-16 20:32:15 +08:00
sSearch: I18n.t('general.filter')
}
2016-02-12 23:52:43 +08:00
});
}
function initUpdateRoles() {
// Bind on click event of various "set role" links in user
// dropdowns.
$(".users-datatable")
.on("click", "[data-action='submit-role']", function() {
var link = $(this);
var form = link
.closest(".dropdown-menu")
.find("form[data-id='update-role-form']");
var hiddenField = form.find("input[data-field='role']");
// Update the hidden field of the parent form
hiddenField.attr("value", link.attr("data-value"));
// Submit the parent form
form.submit();
});
$(document)
.on(
"ajax:success",
"[data-id='update-role-form']",
function (e, data, status, xhr) {
// If user does'n have permission to view the team anymore
// he/she is redirected to teams page
if (data.new_path) {
location.replace(data.new_path);
}
else {
// Reload the whole table
usersDatatable.ajax.reload();
}
2016-02-12 23:52:43 +08:00
}
)
.on(
"ajax:error",
"[data-id='update-role-form']",
function (e, data, status, xhr) {
// TODO
}
);
}
function initRemoveUsers() {
// Bind the "remove user" button in users dropdown
$(document)
.on(
"ajax:success",
2017-01-25 19:12:27 +08:00
"[data-action='destroy-user-team']",
2016-02-12 23:52:43 +08:00
function (e, data, status, xhr) {
// Populate the modal heading & body
2017-01-25 19:12:27 +08:00
var modal = $("#destroy-user-team-modal");
2016-02-12 23:52:43 +08:00
var modalHeading = modal.find(".modal-header").find(".modal-title");
var modalBody = modal.find(".modal-body");
modalHeading.text(data.heading);
modalBody.html(data.html);
// Show the modal
modal.modal("show");
}
)
.on(
"ajax:error",
2017-01-25 19:12:27 +08:00
"[data-action='destroy-user-team']",
2016-02-12 23:52:43 +08:00
function (e, data, status, xhr) {
// TODO
}
);
// Also, bind the click action on the modal
2017-01-25 19:12:27 +08:00
$("#destroy-user-team-modal")
2016-02-12 23:52:43 +08:00
.on("click", "[data-action='submit']", function() {
var btn = $(this);
var form = btn
.closest(".modal")
.find(".modal-body")
2017-01-25 19:12:27 +08:00
.find("form[data-id='destroy-user-team-form']");
2016-02-12 23:52:43 +08:00
// Simply submit the form!
form.submit();
});
// Lastly, bind on the ajax form
$(document)
.on(
"ajax:success",
2017-01-25 19:12:27 +08:00
"[data-id='destroy-user-team-form']",
2016-02-12 23:52:43 +08:00
function (e, data, status, xhr) {
// Hide modal & clear its contents
2017-01-25 19:12:27 +08:00
var modal = $("#destroy-user-team-modal");
2016-02-12 23:52:43 +08:00
var modalHeading = modal.find(".modal-header").find(".modal-title");
var modalBody = modal.find(".modal-body");
modalHeading.text("");
modalBody.html("");
// Hide the modal
modal.modal("hide");
// Reload the whole table
usersDatatable.ajax.reload();
}
)
.on(
"ajax:error",
2017-01-25 19:12:27 +08:00
"[data-id='destroy-user-team-form']",
2016-02-12 23:52:43 +08:00
function (e, data, status, xhr) {
// TODO
}
);
}
function initReloadPageAfterInviteUsers() {
2017-01-25 19:12:27 +08:00
$('[data-id=team-invite-users-modal]')
.on('hidden.bs.modal', function() {
2016-11-08 23:43:25 +08:00
if (!_.isUndefined($(this).attr('data-invited'))) {
// Reload page
location.reload();
}
});
}
2016-02-12 23:52:43 +08:00
initEditName();
initEditDescription();
initUsersTable();
initUpdateRoles();
initRemoveUsers();
initReloadPageAfterInviteUsers();