|
| 1 | +SUSPEND_ACTION = "suspend" |
| 2 | +SUSPEND_BTN_CSS = "btn-danger" |
| 3 | +ACTIVATE_ACTION = "activate" |
| 4 | +ACTIVATE_APPROVE_BTN_CSS = "btn-success" |
| 5 | +APPROVE_ACTION = "approve" |
| 6 | + |
| 7 | +$(document).ready -> |
| 8 | + $(document).on("click", ".waiting-for-approval-users .action.approve", {action : APPROVE_ACTION }, act_on_user) |
| 9 | + $(document).on("click", ".approved-users .action.suspend", {action : SUSPEND_ACTION }, act_on_user) |
| 10 | + $(document).on("click", ".approved-users .action.activate", {action : ACTIVATE_ACTION }, act_on_user) |
| 11 | + $(document).on("click", ".admin input[type='checkbox']", {}, toggelAdminOnUser) |
| 12 | + return |
| 13 | + |
| 14 | +act_on_user = (obj)-> |
| 15 | + $el = $(this) |
| 16 | + $row = $el.closest("tr") |
| 17 | + |
| 18 | + user_id = $row.data("user-id") |
| 19 | + action_taken = obj.data.action |
| 20 | + |
| 21 | + request = $.post '/admin/update_user', |
| 22 | + user_id: user_id |
| 23 | + action_taken: action_taken |
| 24 | + |
| 25 | + request.success (data) -> |
| 26 | + # We will set the new and old css actions depending on the action that was taken because this method |
| 27 | + # is used by 3 different buttons |
| 28 | + if action_taken == SUSPEND_ACTION |
| 29 | + old_btn_class = SUSPEND_ACTION |
| 30 | + old_css_class = SUSPEND_BTN_CSS |
| 31 | + new_btn_class = ACTIVATE_APPROVE_BTN_CSS |
| 32 | + new_css_class = ACTIVATE_ACTION |
| 33 | + else |
| 34 | + # Approve and activate will be almost the same except for the original css class |
| 35 | + if action_taken == ACTIVATE_ACTION |
| 36 | + old_css_class = ACTIVATE_ACTION |
| 37 | + else |
| 38 | + old_css_class = APPROVE_ACTION |
| 39 | + |
| 40 | + old_btn_class = ACTIVATE_APPROVE_BTN_CSS |
| 41 | + new_btn_class = SUSPEND_BTN_CSS |
| 42 | + new_css_class = SUSPEND_ACTION |
| 43 | + |
| 44 | + btn_text = _.str.titleize(new_css_class) |
| 45 | + |
| 46 | + $row.find("td.status").text(_.str.titleize(data.status)) |
| 47 | + |
| 48 | + # Change the look of the buttons by removing and adding classes |
| 49 | + $el.text(btn_text).removeClass("#{old_btn_class} #{old_css_class}").addClass("#{new_btn_class} #{new_css_class}") |
| 50 | + |
| 51 | + # Check if the user was an approval. If so, move the user out of the waiting for approval table and add it to the approved table |
| 52 | + if action_taken == APPROVE_ACTION |
| 53 | + $row.remove() |
| 54 | + $(".approved-users table").show().append($row) |
| 55 | + |
| 56 | + toggleTableIfNeeded $(".waiting-for-approval-users") |
| 57 | + toggleTableIfNeeded $(".approved-users") |
| 58 | + |
| 59 | + # Show the admin row that is hidden on the waiting for approval users table |
| 60 | + $row.find("td.admin").show() |
| 61 | + |
| 62 | + return |
| 63 | + |
| 64 | + request.error (data, textStatus, jqXHR) -> |
| 65 | + alert('Something went wrong while trying to get change user status') |
| 66 | + |
| 67 | + return |
| 68 | + |
| 69 | +toggelAdminOnUser = ()-> |
| 70 | + $el = $(this) |
| 71 | + $row = $el.closest("tr") |
| 72 | + |
| 73 | + user_id = $row.data("user-id") |
| 74 | + |
| 75 | + checked = $el.prop("checked"); |
| 76 | + |
| 77 | + full_name = $row.data("full-name") |
| 78 | + |
| 79 | + # Generate the message based on the check of the user admin flag |
| 80 | + message = if checked then "make #{full_name} an administrator?" else "remove #{full_name} from the administrators?" |
| 81 | + message = "Are you sure " + message |
| 82 | + |
| 83 | + # If the user didnt confirm then put the check back and return |
| 84 | + if(confirm(message) != true) |
| 85 | + $el.prop("checked", !checked); |
| 86 | + return |
| 87 | + |
| 88 | + request = $.post '/admin/toggle_admin', |
| 89 | + user_id: user_id |
| 90 | + |
| 91 | + request.success (data) -> |
| 92 | + alert("#{full_name} is now an administrator") |
| 93 | + return |
| 94 | + |
| 95 | + request.error (data, textStatus, jqXHR) -> |
| 96 | + alert("Something went wrong while trying to make #{full_name} an administrator") |
| 97 | + $el.prop("checked", !checked); |
| 98 | + return |
| 99 | + |
| 100 | +# Toggles a table and the container that says there are no users if needed |
| 101 | +toggleTableIfNeeded = ($container)-> |
| 102 | + $table = $container.find("table") |
| 103 | + $no_user_el = $container.find(".js-no-users") |
| 104 | + |
| 105 | + if $table.find("tbody tr").length == 0 |
| 106 | + $table.hide() |
| 107 | + $no_user_el.show() |
| 108 | + else |
| 109 | + $table.show() |
| 110 | + $no_user_el.hide() |
| 111 | + |
| 112 | + return |
0 commit comments