-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathtopjava.common.js
More file actions
116 lines (101 loc) · 2.94 KB
/
topjava.common.js
File metadata and controls
116 lines (101 loc) · 2.94 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
let form;
function makeEditable(datatableOpts) {
ctx.datatableApi = $("#datatable").DataTable(
{
...datatableOpts, // https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Operators/Spread_syntax
"ajax": {
"url": ctx.ajaxUrl,
"dataSrc": ""
},
"paging": false,
"info": true
}
);
form = $('#detailsForm');
$(document).ajaxError(function (event, jqXHR, options, jsExc) {
failNoty(jqXHR);
});
// solve problem with cache in IE: https://stackoverflow.com/a/4303862/548473
$.ajaxSetup({cache: false});
var token = $("meta[name='_csrf']").attr("content");
var header = $("meta[name='_csrf_header']").attr("content");
$(document).ajaxSend(function (e, xhr, options) {
xhr.setRequestHeader(header, token);
});
}
function add() {
$("#modalTitle").html(i18n["addTitle"]);
form.find(":input").val("");
$("#editRow").modal();
}
function updateRow(id) {
form.find(":input").val("");
$("#modalTitle").html(i18n["editTitle"]);
$.get(ctx.ajaxUrl + id, function (data) {
$.each(data, function (key, value) {
form.find("input[name='" + key + "']").val(value);
});
$('#editRow').modal();
});
}
function deleteRow(id) {
if (confirm(i18n['common.confirm'])) {
$.ajax({
url: ctx.ajaxUrl + id,
type: "DELETE"
}).done(function () {
ctx.updateTable();
successNoty("common.deleted");
});
}
}
function updateTableByData(data) {
ctx.datatableApi.clear().rows.add(data).draw();
}
function save() {
$.ajax({
type: "POST",
url: ctx.ajaxUrl,
data: form.serialize()
}).done(function () {
$("#editRow").modal("hide");
ctx.updateTable();
successNoty("common.saved");
});
}
let failedNote;
function closeNoty() {
if (failedNote) {
failedNote.close();
failedNote = undefined;
}
}
function successNoty(key) {
closeNoty();
new Noty({
text: `<span class='fa fa-lg fa-check'></span> ${i18n[key]}`,
type: 'success',
layout: "bottomRight",
timeout: 1000
}).show();
}
function renderEditBtn(data, type, row) {
if (type === "display") {
return `<a onclick='updateRow(${row.id});'><span class='fa fa-pencil'></span></a>`;
}
}
function renderDeleteBtn(data, type, row) {
if (type === "display") {
return `<a onclick='deleteRow(${row.id});'><span class='fa fa-remove'></span></a>`;
}
}
function failNoty(jqXHR) {
closeNoty();
var errorInfo = jqXHR.responseJSON;
failedNote = new Noty({
text: `<span class='fa fa-lg fa-exclamation-circle'></span> ${i18n['common.errorStatus']}: ${jqXHR.status}<br>${errorInfo.type}<br>${errorInfo.detail}`,
type: "error",
layout: "bottomRight"
});
failedNote.show()
}