- fixed issue setting dates i ndatepicker;
- fixed styles and filters in tables;
This commit is contained in:
18
src/helpers/createUTCDate.js
Normal file
18
src/helpers/createUTCDate.js
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
*
|
||||
* @param dateObj {Date}
|
||||
* @return {Date}
|
||||
*/
|
||||
const createUTCDate = (dateObj) => {
|
||||
const comps = {
|
||||
year: dateObj.getFullYear(),
|
||||
month: dateObj.getMonth(),
|
||||
day: dateObj.getDate(),
|
||||
hours: dateObj.getHours(),
|
||||
minutes: dateObj.getMinutes(),
|
||||
seconds: dateObj.getSeconds()
|
||||
};
|
||||
return new Date(Date.UTC(comps.year, comps.month, comps.day, 0, 0, 0));
|
||||
}
|
||||
|
||||
export default createUTCDate;
|
||||
13
src/helpers/formatDateString.js
Normal file
13
src/helpers/formatDateString.js
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
*
|
||||
* @param date {Date}
|
||||
* @return {string}
|
||||
*/
|
||||
const formatDateString = (date) => {
|
||||
const year = date.getFullYear();
|
||||
const month = String(date.getMonth() + 1).padStart(2, '0');
|
||||
const day = String(date.getDate()).padStart(2, '0');
|
||||
return `${year}-${month}-${day}T00:00:00`;
|
||||
}
|
||||
|
||||
export default formatDateString;
|
||||
Reference in New Issue
Block a user