Newer
Older
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { Router } from '@angular/router';
import { TranslateService } from '@ngx-translate/core';
import { LatinisePipe } from 'ngx-pipes';
import { of } from 'rxjs';
import { catchError, tap } from 'rxjs/operators';
import { NotificationService } from './notification.service';
@Injectable({
providedIn: 'root'
})
export class FunctionsService {
constructor(
public translate: TranslateService,
private latinisePipe: LatinisePipe,
private router: Router,
private http: HttpClient,
private notify: NotificationService,
) { }
empty(value: any) {
if (value === null || value === undefined || value === false) {
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
return true;
} else if (Array.isArray(value)) {
if (value.length > 0) {
return false;
} else {
return true;
}
} else if (String(value) !== '') {
return false;
} else {
return true;
}
}
isDate(value: any) {
return value instanceof Date && !isNaN(value.valueOf());
}
formatFrenchDateToTechnicalDate(date: string) {
if (!this.empty(date)) {
let arrDate = date.split('-');
arrDate = arrDate.concat(arrDate[arrDate.length - 1].split(' '));
arrDate.splice(2, 1);
if (this.empty(arrDate[3])) {
arrDate[3] = '00:00:00';
}
const formatDate = `${arrDate[2]}-${arrDate[1]}-${arrDate[0]} ${arrDate[3]}`;
return formatDate;
} else {
return date;
}
}
formatFrenchDateToObjectDate(date: string, delimiter: string = '-') {
if (!this.empty(date)) {
let arrDate = date.split(delimiter);
arrDate = arrDate.concat(arrDate[arrDate.length - 1].split(' '));
arrDate.splice(2, 1);
if (this.empty(arrDate[3])) {
arrDate[3] = '00:00:00';
}
const formatDate = `${arrDate[2]}-${arrDate[1]}-${arrDate[0]} ${arrDate[3]}`;
return new Date(formatDate);
} else {
return date;
}
}
formatDateObjectToDateString(date: Date, limitMode: boolean = false, format: string = 'dd-mm-yyyy') {
if (date !== null) {
const formatDate: any[] = [];
format.split('-').forEach((element: any) => {
if (element === 'dd') {
let day: any = date.getDate();
day = ('00' + day).slice(-2);
formatDate.push(day);
} else if (element === 'mm') {
let month: any = date.getMonth() + 1;
month = ('00' + month).slice(-2);
formatDate.push(month);
} else if (element === 'yyyy') {
const year: any = date.getFullYear();
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
formatDate.push(year);
}
});
let limit = '';
if (limitMode) {
limit = ' 23:59:59';
}
return `${formatDate.join('-')}${limit}`;
} else {
return date;
}
}
formatSerializedDateToDateString(date: string) {
return this.formatDateObjectToDateString(new Date(date));
}
listSortingDataAccessor(data: any, sortHeaderId: any) {
if (typeof data[sortHeaderId] === 'string') {
return data[sortHeaderId].toLowerCase();
}
return data[sortHeaderId];
}
filterUnSensitive(template: any, filter: string, filteredColumns: any) {
let filterReturn = false;
filter = this.latinisePipe.transform(filter);
filteredColumns.forEach((column: any) => {
let val = template[column];
if (typeof template[column] !== 'string') {
val = val === undefined || null ? '' : JSON.stringify(val);
}
filterReturn = filterReturn || this.latinisePipe.transform(val.toLowerCase()).includes(filter);
});
return filterReturn;
}
formatBytes(bytes: number, decimals = 2) {
if (typeof bytes === 'number') {
if (bytes === 0) {
return '0 Octet';
}
const k = 1024;
const dm = decimals < 0 ? 0 : decimals;
const sizes = ['Octets', 'KO', 'MO', 'GO', 'TO', 'PO', 'EO', 'ZO', 'YO'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i];
} else {
return bytes;
}
}
getBaseUrl() {
const baseUrl = window.location.href.replace(this.router.url, '');
return baseUrl;
}
getDayOfWeekString(id: number) {
const mapDayOfWeek = {
1: this.translate.instant('lang.monday'),
2: this.translate.instant('lang.tuesday'),
3: this.translate.instant('lang.wednesday'),
4: this.translate.instant('lang.thursday'),
5: this.translate.instant('lang.friday'),
6: this.translate.instant('lang.saturday'),
7: this.translate.instant('lang.sunday'),
};
return mapDayOfWeek[id];
}
getMonthString(id: number) {
const mapMonths = {
1: this.translate.instant('lang.january'),
2: this.translate.instant('lang.february'),
3: this.translate.instant('lang.march'),
4: this.translate.instant('lang.april'),
5: this.translate.instant('lang.may'),
6: this.translate.instant('lang.june'),
7: this.translate.instant('lang.july'),
8: this.translate.instant('lang.august'),
9: this.translate.instant('lang.september'),
10: this.translate.instant('lang.october'),
11: this.translate.instant('lang.november'),
12: this.translate.instant('lang.december'),
};
return mapMonths[id];
}
getPictureById(id: string) {
return new Promise((resolve) => {
this.http.get(`assets/${id}.png`, { responseType: 'blob' }).pipe(
tap((response: any) => {
const reader = new FileReader();
reader.readAsDataURL(response);
reader.onloadend = () => {
resolve(reader.result as any);
};
}),
catchError((err: any) => {
this.notify.handleErrors(err);
return of(false);
})
).subscribe();
});
}
isValidUrl(value: string): boolean {
const pattern = /^(?:http(s)?:\/\/)?[\w.-]+(?:\.[\w\.-]+)+[\w\-\._~:/?#[\]@!\$&'\(\)\*\+,;=.]+$/;
return pattern.test(value);
}