-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
105 lines (87 loc) · 2.47 KB
/
main.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
////////////////////////////////
// GLOBAL SINGLETON VARIABLES
////////////////////////////////
const downloadDiv = document.getElementById("download-div");
const preloader = document.getElementById("preloader");
const lineSplitCount = document.getElementById("line-slice-count");
const fileInput = document.getElementById("file-input");
let lines = undefined;
let fileName = undefined;
let header = undefined;
let sliceCount = undefined;
let newData = undefined;
////////////////////////////////
// FUNCTIONS
////////////////////////////////
const everyNth = (arr, nth) => arr.filter((e, i) => i % nth === nth - 1);
function handleContent(contents) {
lines = contents.split("\n");
[header] = lines;
lines.shift();
if (lines[lines.length - 1] == "") {
lines.pop();
}
// SOME JOB HERE
newData = [header, ...everyNth(lines, sliceCount)];
hidePreloader();
showDownloadStuff();
}
function mainHandler() {
const file = fileInput.files[0];
if (!sliceCount || sliceCount <= 0) {
alert("Введенное число строк некорректно");
return;
}
if (!file) {
alert("Файл не выбран");
return;
}
hideDownloadStuff();
showPreloader();
fileName = file.name;
const reader = new FileReader();
reader.onload = (e) => {
const contents = e.target.result;
handleContent(contents);
};
reader.readAsText(file);
}
function saveFile(filename, data) {
const blob = new Blob([data], { type: "text/csv" });
if (window.navigator.msSaveOrOpenBlob) {
window.navigator.msSaveBlob(blob, filename);
} else {
const elem = window.document.createElement("a");
elem.href = window.URL.createObjectURL(blob);
elem.download = filename;
document.body.appendChild(elem);
elem.click();
document.body.removeChild(elem);
}
}
function downloadHandler() {
const [fileNameWithoutExt] = fileName.split(".");
const CsvFile = fileNameWithoutExt + ".csv";
saveFile(CsvFile, newData.join("\n"));
}
function showDownloadStuff() {
downloadDiv.style.visibility = "visible";
}
function hideDownloadStuff() {
downloadDiv.style.visibility = "hidden";
}
function showPreloader() {
preloader.style.display = "block";
}
function hidePreloader() {
preloader.style.display = "none";
}
/////////////////////////
// MAIN
/////////////////////////
lineSplitCount.addEventListener("change", (e) => {
sliceCount = Number(e.target.value);
console.log(sliceCount);
});
hideDownloadStuff();
hidePreloader();