-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap-script.html
263 lines (229 loc) · 8.79 KB
/
bootstrap-script.html
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
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous">
</script>
<!-- dataTables -->
<script src="https://cdn.datatables.net/1.10.23/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.23/js/dataTables.bootstrap4.min.js"></script>
<script src="https://cdn.datatables.net/responsive/2.2.9/js/dataTables.responsive.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script src="https://cdn.datatables.net/1.10.25/js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.23/css/dataTables.bootstrap4.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.25/css/jquery.dataTables.min.css">
<!-- dataTables responsive-->
<link rel="stylesheet" type="text/css"
href="https://cdn.datatables.net/responsive/2.2.9/css/responsive.dataTables.min.css">
<script>
const k = console.log.bind(document);
function spinner(elemId, text = 'Іде пошук...') {
document.getElementById(elemId).innerHTML = `<div class=\"d-flex justify-content-center\"><div class=\"spinner-border text-danger mb-4 mt-2\" role=\"status\"><span class=\"visually-hidden\"></span></div>${text}</div>`;
}
function afterDropDownReturned(arrayOfArrays, datalist) {
let selectorDatalist = document.getElementById(datalist);
if (selectorDatalist) {
selectorDatalist.innerHTML = null;
arrayOfArrays.forEach((r) => {
const selectorOption = document.createElement('option');
selectorOption.textContent = r;
selectorDatalist.appendChild(selectorOption)
});
}
}
//автоскрытие разворачивающегося меню
$(function () {
var navMain = $(".navbar-collapse");
navMain.on("click", "a:not([data-toggle])", null, function () {
navMain.collapse('hide');
});
});
function hideBtnBuh() {
searchMobileNot(() => $('#btnBuh').hide(1000)
);
}
function showBtnBuh() {
$('#btnBuh').show(500)
}
// остановка скриипта, если не выбраны критерии поиска в инпутах
function searchStop(dataArr) {
let evalRows = [];
dataArr.forEach(elem => {
if (elem === '' || elem === false) {
evalRows.push('no')
} else {
evalRows.push('yes')
}
})
if (evalRows.indexOf('yes') === -1) {
return true
}
}
// текст в дату
function strongToDate(st) {
const pattern = /(\d{2})\.(\d{2})\.(\d{4})/;
return new Date(st.replace(pattern, '$3-$2-$1'));
}
//форматирование даты в вид гггг-mm-dd
function formatDateYYYYtireMMtireDD(date) {
return date.getFullYear() + '-'
+ ((date.getMonth() + 1) < 10 ? '0' : '') + (date.getMonth() + 1) + '-'
+ ((date.getDate()) < 10 ? '0' : '') + (date.getDate());
}
//форматирование даты в вид dd-mm-гггг
function formatDateDDtireMMtireYYYY(date) {
return ((date.getDate()) < 10 ? '0' : '') + (date.getDate()) + '-'
+ ((date.getMonth() + 1) < 10 ? '0' : '') + (date.getMonth() + 1) + '-'
+ date.getFullYear();
}
//форматирование даты в вид dd.mm.гггг
function formatDateDDpointMMpointYYYY(date) {
return ((date.getDate()) < 10 ? '0' : '') + (date.getDate()) + '.'
+ ((date.getMonth() + 1) < 10 ? '0' : '') + (date.getMonth() + 1) + '.'
+ date.getFullYear();
}
// універсальне форматування дати і часу
const formatDateTime = (date, repay, dayW = 1) => {
let dateTime = new Date(date);
const year = dateTime.getFullYear();
const month = dateTime.getMonth() + 1;
const day = dateTime.getDate();
const hour = dateTime.getHours();
const min = dateTime.getMinutes();
const sec = dateTime.getSeconds();
const yearGood = year.toString().padStart(4, "0");
const monthGood = month.toString().padStart(2, "0");
const dayGood = day.toString().padStart(2, "0");
const hourGood = hour.toString().padStart(2, "0");
const minGood = min.toString().padStart(2, "0");
const secGood = sec.toString().padStart(2, "0");
switch (repay) {
case 'dd.mm.yyyy':
return dayW ? `${dayGood}.${monthGood}.${yearGood}, ${DayDate(date)}` : `${dayGood}.${monthGood}.${yearGood}`;
break;
case 'hh:mm:ss':
return `${hourGood}:${minGood}:${secGood}`;
break;
case 'hh:mm':
return `${hourGood}:${minGood}`;
break;
}
//return `${yearGood}/${monthGood}/${dayGood} ${hourGood}:${minGood}:${secGood}`;
}
// формування дня тижня
function DayDate(d) {
const days = {
0: "нд",
1: "пн",
2: "вт",
3: "ср",
4: "чт",
5: "пт",
6: "сб",
};
if (d == undefined) d = new Date();
return days[d.getDay()]
}
/* // функция поиска по таблице
$(document).ready(readyTable);
function readyTable() {
$(".input-search").keyup(function () {
var value = this.value.toLowerCase().trim();
$("table tr").each(function (index) {
if (!index) return;
$(this).find("td").each(function () {
var id = $(this).text().toLowerCase().trim();
var not_found = (id.indexOf(value) == -1);
$(this).closest('tr').toggle(!not_found);
return not_found;
});
});
});
}
*/
// функция поиска по таблице
$(document).ready(readyTable);
function readyTable() {
$('.input-search').on('keyup mouseup', function () {
_this = this;
$.each($(this.getAttribute('somethingSearch')), function () {
if ($(this).text().toLowerCase().indexOf($(_this).val().toLowerCase()) === -1) {
$(this).hide();
} else {
$(this).show();
}
});
});
};
//строка в число
function strongToNumber(str) {
const replaceSpace = str.replace(/\s+/g, ''); // удаляем пробелы
const replacePoint = replaceSpace.replace(/,/, '.'); // запятую на точку
const parsFlo = parseFloat(replacePoint); // строка в число
const toFixTwu = parsFlo.toFixed(2); // округляем до 2 знаков после запятой
return toFixTwu
}
// функция проверяет устройство и срабатывает, если не мобильное
function searchMobile(func) {
if (!navigator.userAgent.toLowerCase().match(/mobile/i)) {
func();
} else {
return;
}
}
// функция проверяет устройство и срабатывает, если мобильное
function searchMobileNot(func) {
if (navigator.userAgent.toLowerCase().match(/mobile/i)) {
func();
} else {
return;
}
}
//полосы в таблице
function tableLineSelection() {
$(".table-line-selection tr").click(function () {
if (this.style.background != "rgb(255, 228, 225)") {
$(this).css("background", "#FFE4E1"); //apply the new color
} else {
$(this).css("background", 'transparent');
}
});
}
// обработка кнопок Edit для перекидки данных в инпуты
function editReestrFinance(data, col) {
switch (+col) {
case 1:
ClearRecordReestr();
$('.input-paste-reestr').val(data);
$('#data-table_filter input').val(data);
$('#nav-reestr-tab')[0].click();
break;
case 2:
ClearRecordFin()
$('.input-paste-finance').val(data);
$('#nav-fin-tab')[0].click();
break;
};
};
//обрабатывает клик и тап на таблице для возврата текста из ячейки
function clickTables(sel, fun) {
const el = document.querySelector(sel);
if (el) {
el.addEventListener("click", fun);
el.addEventListener('touchcancel', fun);
};
}
// достаем текст из набора TD
function getDataFromTd(tdArr) {
return tdArr.map(item => item.textContent);
}
// достаем все числа с концы строки
function numEndStrong(string) {
const res = string.match(/\d+$/);
return res[0];
}
// эмуляция отпускания кнопки, при щелчке Пошук по таблиці (автопоиск при открытии)
function autoSearchOnOpen(selektor) {
$(selektor).triggerHandler('keyup');
}
</script>