-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathtopjava.users.js
More file actions
86 lines (83 loc) · 2.37 KB
/
topjava.users.js
File metadata and controls
86 lines (83 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const userAjaxUrl = "admin/users/";
// https://stackoverflow.com/a/5064235/548473
const ctx = {
ajaxUrl: userAjaxUrl,
updateTable: function () {
$.get(userAjaxUrl, updateTableByData);
}
}
function enable(chkbox, id) {
const enabled = chkbox.is(":checked");
// https://stackoverflow.com/a/22213543/548473
$.ajax({
url: userAjaxUrl + id,
type: "POST",
data: `enabled=${enabled}`
}).done(function () {
chkbox.closest("tr").attr("data-user-enabled", enabled);
successNoty(enabled ? "common.enabled" : "common.disabled");
}).fail(function () {
$(chkbox).prop("checked", !enabled);
});
}
// $(document).ready(function () {
$(function () {
makeEditable({
"columns": [
{
"data": "name"
},
{
"data": "email",
"render": function (data, type, row) {
if (type === "display") {
return `<a href="mailto:${data}">${data}</a>`;
}
return data;
}
},
{
"data": "roles"
},
{
"data": "enabled",
"render": function (data, type, row) {
if (type === "display") {
return `<input type='checkbox' ${data ? 'checked' : ''} onclick='enable($(this),${row.id});'/>`;
}
return data;
}
},
{
"data": "registered",
"render": function (date, type, row) {
if (type === "display") {
return date.substring(0, 10);
}
return date;
}
},
{
"orderable": false,
"defaultContent": "",
"render": renderEditBtn
},
{
"orderable": false,
"defaultContent": "",
"render": renderDeleteBtn
}
],
"order": [
[
0,
"asc"
]
],
"createdRow": function (row, data, dataIndex) {
if (!data.enabled) {
$(row).attr("data-user-enabled", false);
}
}
});
});