-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
523 lines (489 loc) · 16.5 KB
/
index.js
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
window.addEventListener("load", function (event) {
const { createApp } = Vue;
createApp({
data() {
return {
message: "Hello Vue!",
table: "table iss null",
genders: "",
};
},
methods: {
getJson() {
console.log("get data");
fetch("./csvjson.json")
.then((response) => {
if (!response.ok) {
throw new Error("Network response was not ok");
}
return response.json();
})
.then((jsonData) => {
// Function to count unique values
//console.log(jsonData);
this.table = jsonData;
this.getSalaries();
this.getExp();
this.getPositions();
this.getTitles();
this.getCompanyLoc();
this.getCompanyCityIfTurkey();
this.getRemoteOrHybrid();
this.getBenefits();
this.getEmployeeCount();
this.getGenders();
this.getTechs();
this.getCurrencyType();
this.getIncreaseSalaryCount();
this.getIncreaseSalaryRatio();
this.getDailyFoodPrice();
this.runDataGrid();
})
.catch((error) => {
console.error("There was a problem fetching the data:", error);
});
},
getGenders() {
const groupedCounts = _.groupBy(this.table, "Cinsiyet");
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(result, "Kadın / Erkek Oranı", "pie");
},
getSalaries() {
const groupedCounts = _.groupBy(
this.table,
'Maaş / Aylık Türk Lirası cinsinden (Ortalama "NET" ücret)'
);
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(result, "Maaş Aralıkları", "bar");
},
//yan haklar problemli. bakılcak.
getBenefits() {
const groupedCounts = _.groupBy(this.table, "Yan haklarınız");
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(result, "Yan Haklarınız", "bar", "y");
},
getExp() {
const groupedCounts = _.groupBy(this.table, "Deneyim");
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(result, "Deneyim Aralığı", "bar");
},
getCompanyLoc() {
const groupedCounts = _.groupBy(
this.table,
"Şirketiniz hangi lokasyon merkezli?"
);
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(result, "Şirketiniz hangi lokasyon merkezli?", "bar");
},
getCompanyCityIfTurkey() {
const groupedCounts = _.groupBy(
this.table,
"Şirketiniz hangi şehirde? (Eğer Türkiye ise)"
);
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(
result,
"Şirketiniz hangi şehirde? (Eğer Türkiye ise)",
"bar"
);
},
getRemoteOrHybrid() {
const groupedCounts = _.groupBy(this.table, "Çalışma şekliniz nedir?");
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(result, "Çalışma şekliniz nedir?", "bar");
},
getEmployeeCount() {
const groupedCounts = _.groupBy(
this.table,
"Şirketinizin çalışan sayısı nedir?"
);
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(result, "Şirketinizin çalışan sayısı nedir?", "bar");
},
getPositions() {
const groupedCounts = _.groupBy(
this.table,
"Hangi pozisyonda çalışıyorsunuz?"
);
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(
result,
"Hangi pozisyonda çalışıyorsunuz?",
"bar",
"y"
);
},
getTitles() {
const groupedCounts = _.groupBy(
this.table,
"Çalıştığınız şirketteki unvanınız nedir?"
);
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(
result,
"Çalıştığınız şirketteki unvanınız nedir?",
"bar",
"y"
);
},
getTechs() {
const groupedCounts = _.groupBy(
this.table,
"Ağırlıklı olarak hangi teknolojileri / dilleri kullanıyorsunuz?"
);
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(
result,
"Ağırlıklı olarak hangi teknolojileri / dilleri kullanıyorsunuz?",
"bar",
"y"
);
},
getCurrencyType() {
const groupedCounts = _.groupBy(
this.table,
"Kazancınız hangi para biriminde?"
);
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(result, "Kazancınız hangi para biriminde?", "pie");
},
getIncreaseSalaryCount() {
const groupedCounts = _.groupBy(
this.table,
"Senede kaç kez zam alıyorsunuz?"
);
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(result, "Senede kaç kez zam alıyorsunuz?", "pie", "x");
},
getIncreaseSalaryRatio() {
const groupedCounts = _.groupBy(
this.table,
"Ara zam / iyileştirme oranınız hangi aralıkta?"
);
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(
result,
"Ara zam / iyileştirme oranınız hangi aralıkta?",
"bar",
"x"
);
},
getDailyFoodPrice() {
const groupedCounts = _.groupBy(
this.table,
"Yemek kartınız varsa günlük güncel miktar nedir?"
);
const result = _.map(groupedCounts, (value, key) => [
key,
value.length,
]);
this.createChart(
result,
"Yemek kartınız varsa günlük güncel miktar nedir?",
"bar",
"x"
);
},
createChart(dataGrouped, title, chartType, indexAxis) {
if (chartType == null) {
_chartType = "pie";
} else {
_chartType = chartType;
}
if (indexAxis == null) {
_indexAxis = "x";
} else {
_indexAxis = indexAxis;
}
// Function to generate a random number between 0 and 1000
function getRandomNumber() {
return Math.floor(Math.random() * 1001); // Generates random number between 0 and 1000 (inclusive)
}
// Example usage
var canvasId;
do {
var randomNumber = getRandomNumber();
canvasId = "myChart" + randomNumber;
} while (document.getElementById(canvasId)); // Check if element with ID exists
// Function to generate a random number between 0 and 1000
function getRandomNumber() {
return Math.floor(Math.random() * 1001); // Generates random number between 0 and 1000 (inclusive)
}
// Example usage
var canvasId;
do {
var randomNumber = getRandomNumber();
canvasId = "myChart" + randomNumber;
} while (document.getElementById(canvasId)); // Check if element with ID exists
// Now, canvasId contains the unique ID for the canvas
var chartDiv = document.createElement("div");
chartDiv.className = "col-12";
// Create and append the title
var titleElement = document.createElement("h2");
titleElement.textContent = title; // You can set the title here
chartDiv.appendChild(titleElement);
var canvas = document.createElement("canvas");
canvas.id = canvasId;
chartDiv.appendChild(canvas);
document.getElementById("charts").appendChild(chartDiv);
// Now you can create the chart using the canvas ID (canvasId)
// You would need to define data, title, and chartType accordingly
// createChart(data, title, chartType);
// Now you can create the chart using the canvas ID (canvasId)
// You would need to define data, title, and chartType accordingly
// createChart(data, title, chartType);
var ctx = document.getElementById(canvasId).getContext("2d");
console.log("datagroup", dataGrouped);
console.log("data ungroup", this.genders);
/*
for vue data this.genders
var labels = this.genders.map(entry => entry[0]);
var data = this.genders.map(entry => entry[1]);
*/
var labels = dataGrouped.map((entry) => entry[0]);
var data = dataGrouped.map((entry) => entry[1]);
var backgroundColors = dataGrouped.map(() => this.getRandomColor());
var myChart = new Chart(ctx, {
type: _chartType,
data: {
labels: labels,
datasets: [
{
label: title,
data: data,
fill: false,
backgroundColor: backgroundColors,
},
],
},
scales: {
y: {
beginAtZero: true,
},
},
options: {
responsive: true,
indexAxis: _indexAxis,
maintainAspectRatio: true,
title: {
display: true,
text: title,
},
},
});
},
getRandomColor() {
// Define a range of blue tones
var minBlue = 100; // Minimum blue value
var maxBlue = 255; // Maximum blue value
var blue =
Math.floor(Math.random() * (maxBlue - minBlue + 1)) + minBlue;
// Generate random values for red and green to create different shades of blue
var red = Math.floor(Math.random() * blue);
var green = Math.floor(Math.random() * blue);
// Convert the RGB values to hexadecimal format
var redHex = red.toString(16).padStart(2, "0");
var greenHex = green.toString(16).padStart(2, "0");
var blueHex = blue.toString(16).padStart(2, "0");
// Construct the hexadecimal color code
var color = "#" + redHex + greenHex + blueHex;
return color;
},
runDataGrid() {
//create Tabulator on DOM element with id "example-table"
var table = new Tabulator("#example-table", {
height: 400, // set height of table (in CSS or here), this enables the Virtual DOM and improves render speed dramatically (can be any valid css height value)
pagination: true,
layout: "fitDataStretch",
// fit columns to width of table (optional)
data: this.table, // assign data to table
rowHeight: 30,
columns: [
// Define Table Columns
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Submission Date",
field: "Submission Date",
hozAlign: "center",
sorter: "date",
sorterParams: { format: "MMM D, YYYY" },
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Cinsiyet",
field: "Cinsiyet",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Yan haklarınız",
field: "Yan haklarınız",
hozAlign: "left",
formatter: "textarea",
width: 150,
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Şirketiniz hangi lokasyon merkezli?",
field: "Şirketiniz hangi lokasyon merkezli?",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Şirketiniz hangi ülke merkezli?",
field: "Şirketiniz hangi ülke merkezli?",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Şirketiniz hangi şehirde?",
field: "Şirketiniz hangi şehirde? (Eğer Türkiye ise)",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Çalışma şekliniz nedir?",
field: "Çalışma şekliniz nedir?",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Şirketinizin çalışan sayısı nedir?",
field: "Şirketinizin çalışan sayısı nedir?",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Hangi pozisyonda çalışıyorsunuz?",
field: "Hangi pozisyonda çalışıyorsunuz?",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Çalıştığınız şirketteki unvanınız nedir?",
field: "Çalıştığınız şirketteki unvanınız nedir?",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Deneyim",
field: "Deneyim",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title:
"Ağırlıklı olarak hangi teknolojileri / dilleri kullanıyorsunuz?",
field:
"Ağırlıklı olarak hangi teknolojileri / dilleri kullanıyorsunuz?",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Kazancınız hangi para biriminde?",
field: "Kazancınız hangi para biriminde?",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Maaş tipi",
field: "Maaş tipi",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Senede kaç kez zam alıyorsunuz?",
field: "Senede kaç kez zam alıyorsunuz?",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Ara zam / iyileştirme oranınız hangi aralıkta?",
field: "Ara zam / iyileştirme oranınız hangi aralıkta?",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title: "Yemek kartınız varsa günlük güncel miktar nedir?",
field: "Yemek kartınız varsa günlük güncel miktar nedir?",
hozAlign: "center",
},
{
headerFilter: true,
headerFilterPlaceholder: "Search",
title:
'Maaş / Aylık Türk Lirası cinsinden (Ortalama "NET" ücret)',
field:
'Maaş / Aylık Türk Lirası cinsinden (Ortalama "NET" ücret)',
hozAlign: "center",
},
],
headerFilter: true,
});
},
},
mounted() {
this.getJson();
},
created() {},
}).mount("#app");
});