-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrontend_dbusers_chart_and_grid.txt
398 lines (347 loc) · 9.08 KB
/
frontend_dbusers_chart_and_grid.txt
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
var allUserData = [];
var months = [
{ id: 1, text: "Ocak" },
{ id: 2, text: "Şubat" },
{ id: 3, text: "Mart" },
{ id: 4, text: "Nisan" },
{ id: 5, text: "Mayıs" },
{ id: 6, text: "Haziran" },
{ id: 7, text: "Temmuz" },
{ id: 8, text: "Ağustos" },
{ id: 9, text: "Eylül" },
{ id: 10, text: "Ekim" },
{ id: 11, text: "Kasım" },
{ id: 12, text: "Aralık" },
];
var usersChartCanvas=null;
function usersReportInit() {
allData = [];
var prdiv = mainContent;
prdiv.innerHTML = "";
var pagecontainer = bcContainerFluid(prdiv, 12);
var pagenamediv = wDiv({
parent: pagecontainer,
id: "pagenamediv",
class: "pagenamedivcss",
text: "Kullanıcı Raporu",
});
var c12 = bcContainerFluid(prdiv, 12);
var row = wDiv({ parent: c12, class: "row" });
var c6 = wDiv({ parent: row, class: "col-md-12" });
var card = bcCard(c6, "Kullanıcı Üyelik Raporu");
card.body.setAttribute("class", "card-body card-body2");
card.body.setAttribute("id", "reportUsersChart");
var col2 = bcContainerFluid(prdiv, 12);
var row = wDiv({ parent: col2, class: "row" });
var col6_2 = wDiv({ parent: row, class: "col-md-12" });
var card2 = bcCard(col6_2, "Kayıtlı Kullanıcılar");
card2.body.setAttribute("class", "card-body card-body2");
card2.body.setAttribute("id", "prdUserGrid");
usersChartCanvas = document.createElement("canvas");
usersChartCanvas.setAttribute("id", "usersChartCanvas");
usersChartCanvas.setAttribute("class", "col col-12 ");
$(card.body).html(usersChartCanvas);
wButton({
parent: card2.header,
id: "excelbtn",
text: "Excel",
class: "btn excel-btn btn-outline-success btn-sm ml-2 float-right",
onclick: "userGridExcel()",
});
$("#excelbtn").append('<i class="far fa-save ml-1"></i>');
var datePicker = wSpan({
parent: card2.header,
class: "btn btn-outline-secondary btn-sm float-right mr-10",
id: "datePicker",
});
datePicker.innerHTML = '<i class="far fa-calendar-alt"></i>';
$("#datePicker").daterangepicker(
{
opens: "center",
linkedCalendars: false,
locale: {
format: "M/DD hh:mm A",
},
},
function (start, end) {
// lastStartDate = start.format("YYYY-MM-DD");
// lastEndDate = end.format("YYYY-MM-DD");
lastStartDate = start.format("MM-DD-YYYY");
lastEndDate = end.format("MM-DD-YYYY");
$("#clrDate").html(
'<i class="fa fa-trash-alt"> ' +
lastStartDate +
" / " +
lastEndDate +
"</i>"
);
$("#clrDate").removeClass("hidden");
usersGridUpdate(lastStartDate, lastEndDate);
}
);
wButton({
parent: card2.header,
id: "clrDate",
text: "xxxx",
class: "btn excel-btn btn-outline-danger hidden btn-sm mr-2 float-right",
onclick: "clearDate()",
});
$("#clrDate").html('<i class="fa fa-trash-alt"></i>');
// date filter clear button red hidden button, its will shows after datepicter apply function
usersChart()
usersGrid();
}
function usersChart(){
$.ajax({
async: false,
type: "GET",
headers: dbHeader,
url:
apiURL + 'dbUsersChart',
dataType: "JSON",
success: function (result) {
let thisMonth = new Date().getMonth()+1;
let firstHalfMonths = months.filter(x=>x.id <= thisMonth).reverse()
let secondHalfMonths = months.filter(x=>x.id > thisMonth).reverse()
let newMonths=[...firstHalfMonths,...secondHalfMonths].reverse()
let countChartData=[]
let chartLabels =newMonths.map(month=>{
return month.text;
})
newMonths.forEach(month=>{
let index =result.findIndex(x=> x.zaman == month.text)
if( index >-1){
countChartData.push(result[index].kullanıcıSayısı)
}else{
countChartData.push(0)
}
})
let countChart = document.getElementById("usersChartCanvas")
new Chart(countChart, {
type: "line",
data: {
labels: chartLabels,
datasets: [
{
label: "Son 12 Aylık Kullanıcı Sayısı",
data: countChartData,
backgroundColor: "#f95d6a",
borderColor: "#ececec",
pointStrokeColor: "#d00043",
responsive: true,
pointRadius: 7,
},
],
},
});
console.log(result)
},
});
}
function usersGrid() {
let parent=$("#prdUserGrid")[0]
parent.innerHTML=""
var gridUsers = wDiv({
parent: $("#prdUserGrid")[0],
class: "userlist",
id: "usersGrid",
});
var productUsageController = {
loadData: function (filter) {
var a = $.ajax({
async: false,
type: "GET",
headers: dbHeader,
url:
apiURL + 'dbUsersDetail',
dataType: "JSON",
success: function (result) {
allUserData = result;
},
});
return a;
},
};
var productUsageFields = [
{
name: "name",
type: "text",
title: "Kullanıcı Adı",
visible: true,
align: "center",
},
{
name: "email",
type: "text",
title: "Email",
visible: true,
align: "center",
},
{
name: "companyName",
type: "text",
title: "Şirket Adı",
visible: true,
align: "center",
},
{
name: "phoneNumber",
type: "text",
title: "Telefon Numarası",
visible: true,
align: "center",
},
{
name: "countryName",
type: "text",
title: "Ülke Adı",
visible: true,
align: "center",
},
{
name: "idCompanyProfile",
type: "text",
title: "Şirket Profili Id",
visible: true,
align: "center",
},
{
name: "registerDate",
type: "text",
title: "Üyelik Tarihi",
visible: true,
align: "center",
},
];
$(gridUsers).jsGrid({
width: "100%",
height: "100%",
filtering: false,
sorting: true,
autoload: true,
editing: false,
inserting: false,
selecting: true,
controller: productUsageController,
fields: productUsageFields,
});
$(".jsgrid-table").attr("id", "dataTable");
}
function usersGridUpdate(start,end) {
let parent=$("#prdUserGrid")[0]
parent.innerHTML=""
var gridUsers = wDiv({
parent: parent,
class: "userlist",
id: "usersGrid",
});
var productUsageController = {
loadData: function (filter) {
var a = $.ajax({
async: false,
type: "GET",
headers: dbHeader,
url:
apiURL + `dbUsers3?startDate=${start}&endDate=${end}`,
dataType: "JSON",
success: function (result) {
allUserData = result;
},
});
return a;
},
};
var productUsageFields = [
{
name: "name",
type: "text",
title: "Kullanıcı Adı",
visible: true,
align: "center",
},
{
name: "email",
type: "text",
title: "Email",
visible: true,
align: "center",
},
{
name: "companyName",
type: "text",
title: "Şirket Adı",
visible: true,
align: "center",
},
{
name: "phoneNumber",
type: "text",
title: "Telefon Numarası",
visible: true,
align: "center",
},
{
name: "countryName",
type: "text",
title: "Ülke Adı",
visible: true,
align: "center",
},
{
name: "registerDate",
type: "text",
title: "Üyelik Tarihi",
visible: true,
align: "center",
},
];
$(gridUsers).jsGrid({
width: "100%",
height: "100%",
filtering: false,
sorting: true,
autoload: true,
editing: false,
inserting: false,
selecting: true,
controller: productUsageController,
fields: productUsageFields,
});
$(".jsgrid-table").attr("id", "dataTable");
}
function userGridExcel() {
// let excelExportData=allUserData.map(item=>{
// let x ={}
// Object.assign(x,item)
// x.registerDate = new Date(x.registerDate).toLocaleDateString('tr')
// return x
// })
let Heading = [
[
"Kullanıcı Adı",
"Email",
"Şirket Adı",
"Telefon Numarası",
"Ülke Adı",
"Şirket Profili Id",
"Üyelik Tarihi"
],
];
JsonExcelExport(allUserData , Heading, "Kullanıcı_Raporu");
}
function clearDate() {
lastStartDate = null;
lastEndDate = null;
usersGrid();
$("#clrDate").addClass("hidden");
$(".cancelBtn").trigger("click");
}
//////////////////////////////////////////////////////////////////////////////
function addSelfUsersReport() {
bcSideMenuItem(
leftMenu,
"Kullanıcılar Raporu",
"fa-sharp fa-solid fa-users",
"usersReportInit();"
);
}