2020-02-04 14:42:19 +01:00
|
|
|
export default class PlanningEventManager {
|
2020-03-21 17:23:59 +01:00
|
|
|
|
|
|
|
// Regex used to check date string validity
|
|
|
|
static dateRegExp = /^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}$/;
|
|
|
|
|
2020-03-21 18:59:42 +01:00
|
|
|
/**
|
|
|
|
* Gets the current day string representation in the format
|
|
|
|
* YYYY-MM-DD
|
|
|
|
*
|
|
|
|
* @return {string} The string representation
|
|
|
|
*/
|
2020-03-21 20:32:28 +01:00
|
|
|
static getCurrentDateString(): string {
|
2020-03-21 18:59:42 +01:00
|
|
|
return PlanningEventManager.dateToString(new Date());
|
|
|
|
}
|
|
|
|
|
2020-03-21 21:07:39 +01:00
|
|
|
/**
|
2020-03-21 18:46:12 +01:00
|
|
|
* Checks if the given date is before the other.
|
|
|
|
*
|
|
|
|
* @param event1Date Event 1 date in format YYYY-MM-DD HH:MM:SS
|
|
|
|
* @param event2Date Event 2 date in format YYYY-MM-DD HH:MM:SS
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
static isEventBefore(event1Date: ?string, event2Date: ?string) {
|
|
|
|
let date1 = PlanningEventManager.stringToDate(event1Date);
|
|
|
|
let date2 = PlanningEventManager.stringToDate(event2Date);
|
|
|
|
if (date1 !== undefined && date2 !== undefined)
|
|
|
|
return date1 < date2;
|
2020-02-04 14:42:19 +01:00
|
|
|
else
|
2020-03-21 18:46:12 +01:00
|
|
|
return false;
|
2020-02-04 14:42:19 +01:00
|
|
|
}
|
|
|
|
|
2020-03-21 18:46:12 +01:00
|
|
|
/**
|
|
|
|
* Gets only the date part of the given event date string in the format
|
|
|
|
* YYYY-MM-DD HH:MM:SS
|
|
|
|
*
|
|
|
|
* @param dateString The string to get the date from
|
|
|
|
* @return {string|undefined} Date in format YYYY:MM:DD or undefined if given string is invalid
|
|
|
|
*/
|
|
|
|
static getDateOnlyString(dateString: ?string) {
|
2020-03-21 18:59:42 +01:00
|
|
|
if (PlanningEventManager.isEventDateStringFormatValid(dateString))
|
2020-03-21 18:46:12 +01:00
|
|
|
return dateString.split(" ")[0];
|
2020-02-04 14:42:19 +01:00
|
|
|
else
|
2020-03-21 18:46:12 +01:00
|
|
|
return undefined;
|
2020-02-04 14:42:19 +01:00
|
|
|
}
|
2020-03-09 19:00:12 +01:00
|
|
|
|
|
|
|
/**
|
2020-03-21 17:23:59 +01:00
|
|
|
* Checks if the given date string is in the format
|
|
|
|
* YYYY-MM-DD HH:MM:SS
|
|
|
|
*
|
|
|
|
* @param dateString The string to check
|
|
|
|
* @return {boolean}
|
2020-03-09 19:00:12 +01:00
|
|
|
*/
|
2020-03-21 18:59:42 +01:00
|
|
|
static isEventDateStringFormatValid(dateString: ?string) {
|
2020-03-21 17:23:59 +01:00
|
|
|
return dateString !== undefined
|
|
|
|
&& dateString !== null
|
|
|
|
&& PlanningEventManager.dateRegExp.test(dateString);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts the given date string to a date object.<br>
|
|
|
|
* Accepted format: YYYY-MM-DD HH:MM:SS
|
|
|
|
*
|
|
|
|
* @param dateString The string to convert
|
2020-03-21 18:46:12 +01:00
|
|
|
* @return {Date|undefined} The date object or undefined if the given string is invalid
|
2020-03-21 17:23:59 +01:00
|
|
|
*/
|
|
|
|
static stringToDate(dateString: ?string): Date | undefined {
|
2020-03-09 19:00:12 +01:00
|
|
|
let date = new Date();
|
2020-03-21 18:59:42 +01:00
|
|
|
if (PlanningEventManager.isEventDateStringFormatValid(dateString)) {
|
2020-03-21 17:23:59 +01:00
|
|
|
let stringArray = dateString.split(' ');
|
|
|
|
let dateArray = stringArray[0].split('-');
|
|
|
|
let timeArray = stringArray[1].split(':');
|
|
|
|
date.setFullYear(
|
|
|
|
parseInt(dateArray[0]),
|
|
|
|
parseInt(dateArray[1]) - 1, // Month range from 0 to 11
|
|
|
|
parseInt(dateArray[2])
|
|
|
|
);
|
|
|
|
date.setHours(
|
|
|
|
parseInt(timeArray[0]),
|
|
|
|
parseInt(timeArray[1]),
|
|
|
|
parseInt(timeArray[2]),
|
|
|
|
0,
|
|
|
|
);
|
2020-03-09 19:00:12 +01:00
|
|
|
} else
|
|
|
|
date = undefined;
|
2020-03-21 17:23:59 +01:00
|
|
|
|
2020-03-09 19:00:12 +01:00
|
|
|
return date;
|
|
|
|
}
|
|
|
|
|
2020-03-21 18:59:42 +01:00
|
|
|
/**
|
|
|
|
* Converts a date object to a string in the format
|
2020-03-21 20:32:28 +01:00
|
|
|
* YYYY-MM-DD HH-MM-SS
|
2020-03-21 18:59:42 +01:00
|
|
|
*
|
|
|
|
* @param date The date object to convert
|
|
|
|
* @return {string} The converted string
|
|
|
|
*/
|
|
|
|
static dateToString(date: Date) {
|
2020-03-21 20:32:28 +01:00
|
|
|
const day = String(date.getDate()).padStart(2, '0');
|
|
|
|
const month = String(date.getMonth() + 1).padStart(2, '0'); //January is 0!
|
|
|
|
const year = date.getFullYear();
|
|
|
|
const hours = String(date.getHours()).padStart(2, '0');
|
|
|
|
const minutes = String(date.getMinutes()).padStart(2, '0');
|
|
|
|
const seconds = String(date.getSeconds()).padStart(2, '0');
|
|
|
|
return year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds;
|
2020-03-09 19:00:12 +01:00
|
|
|
}
|
|
|
|
|
2020-03-21 17:23:59 +01:00
|
|
|
/**
|
|
|
|
* Returns a string corresponding to the event start and end times in the following format:
|
|
|
|
*
|
|
|
|
* HH:MM - HH:MM
|
|
|
|
*
|
|
|
|
* If the end date is not specified or is equal to start time, only start time will be shown.
|
|
|
|
*
|
2020-03-21 20:32:28 +01:00
|
|
|
* If the end date is not on the same day, 23:59 will be shown as end time
|
2020-03-21 17:23:59 +01:00
|
|
|
*
|
|
|
|
* @param start Start time in YYYY-MM-DD HH:MM:SS format
|
|
|
|
* @param end End time in YYYY-MM-DD HH:MM:SS format
|
|
|
|
* @return {string} Formatted string or "/ - /" on error
|
|
|
|
*/
|
|
|
|
static getFormattedEventTime(start: ?string, end: ?string): string {
|
|
|
|
let formattedStr = '/ - /';
|
|
|
|
let startDate = PlanningEventManager.stringToDate(start);
|
|
|
|
let endDate = PlanningEventManager.stringToDate(end);
|
|
|
|
|
|
|
|
if (startDate !== undefined && endDate !== undefined && startDate.getTime() !== endDate.getTime()) {
|
2020-03-21 20:32:28 +01:00
|
|
|
formattedStr = String(startDate.getHours()).padStart(2, '0') + ':'
|
|
|
|
+ String(startDate.getMinutes()).padStart(2, '0') + ' - ';
|
2020-03-21 17:23:59 +01:00
|
|
|
if (endDate.getFullYear() > startDate.getFullYear()
|
|
|
|
|| endDate.getMonth() > startDate.getMonth()
|
|
|
|
|| endDate.getDate() > startDate.getDate())
|
2020-03-21 20:32:28 +01:00
|
|
|
formattedStr += '23:59';
|
2020-03-21 17:23:59 +01:00
|
|
|
else
|
2020-03-21 20:32:28 +01:00
|
|
|
formattedStr += String(endDate.getHours()).padStart(2, '0') + ':'
|
|
|
|
+ String(endDate.getMinutes()).padStart(2, '0');
|
2020-03-21 17:23:59 +01:00
|
|
|
} else if (startDate !== undefined)
|
|
|
|
formattedStr =
|
2020-03-21 20:32:28 +01:00
|
|
|
String(startDate.getHours()).padStart(2, '0') + ':'
|
|
|
|
+ String(startDate.getMinutes()).padStart(2, '0');
|
2020-03-21 17:23:59 +01:00
|
|
|
|
2020-03-09 19:00:12 +01:00
|
|
|
return formattedStr
|
|
|
|
}
|
|
|
|
|
2020-03-21 17:23:59 +01:00
|
|
|
/**
|
|
|
|
* Checks if the given description can be considered empty.
|
|
|
|
* <br>
|
|
|
|
* An empty description is composed only of whitespace, <b>br</b> or <b>p</b> tags
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param description The text to check
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
static isDescriptionEmpty(description: ?string): boolean {
|
2020-03-20 22:50:28 +01:00
|
|
|
if (description !== undefined && description !== null) {
|
|
|
|
return description
|
2020-03-21 11:24:30 +01:00
|
|
|
.split('<p>').join('') // Equivalent to a replace all
|
|
|
|
.split('</p>').join('')
|
|
|
|
.split('<br>').join('').trim() === '';
|
2020-03-20 22:50:28 +01:00
|
|
|
} else
|
|
|
|
return true;
|
2020-03-11 16:08:02 +01:00
|
|
|
}
|
2020-03-22 10:37:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
static generateEmptyCalendar(numberOfMonths: number) {
|
|
|
|
let end = new Date(new Date().setMonth(new Date().getMonth() + numberOfMonths + 1));
|
|
|
|
let daysOfYear = {};
|
|
|
|
for (let d = new Date(); d <= end; d.setDate(d.getDate() + 1)) {
|
|
|
|
daysOfYear[
|
|
|
|
PlanningEventManager.getDateOnlyString(
|
|
|
|
PlanningEventManager.dateToString(new Date(d))
|
|
|
|
)] = []
|
|
|
|
}
|
|
|
|
return daysOfYear;
|
|
|
|
}
|
|
|
|
|
|
|
|
static generateEventAgenda(eventList: Array<Object>, numberOfMonths: number) {
|
|
|
|
let agendaItems = PlanningEventManager.generateEmptyCalendar(numberOfMonths);
|
|
|
|
for (let i = 0; i < eventList.length; i++) {
|
|
|
|
console.log(PlanningEventManager.getDateOnlyString(eventList[i]["date_begin"]));
|
|
|
|
console.log(eventList[i]["date_begin"]);
|
|
|
|
if (PlanningEventManager.getDateOnlyString(eventList[i]["date_begin"]) !== undefined) {
|
|
|
|
this.pushEventInOrder(agendaItems, eventList[i], PlanningEventManager.getDateOnlyString(eventList[i]["date_begin"]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return agendaItems;
|
|
|
|
}
|
|
|
|
|
|
|
|
static pushEventInOrder(agendaItems: Object, event: Object, startDate: string) {
|
|
|
|
if (agendaItems[startDate].length === 0)
|
|
|
|
agendaItems[startDate].push(event);
|
|
|
|
else {
|
|
|
|
for (let i = 0; i < agendaItems[startDate].length; i++) {
|
|
|
|
if (PlanningEventManager.isEventBefore(event["date_begin"], agendaItems[startDate][i]["date_begin"])) {
|
|
|
|
agendaItems[startDate].splice(i, 0, event);
|
|
|
|
break;
|
|
|
|
} else if (i === agendaItems[startDate].length - 1) {
|
|
|
|
agendaItems[startDate].push(event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-04 14:42:19 +01:00
|
|
|
}
|