traxxx/assets/js/get-date-range.js

34 lines
699 B
JavaScript
Raw Normal View History

import utc from 'dayjs/plugin/utc';
import dayjs from 'dayjs';
dayjs.extend(utc);
const dateRanges = {
latest: () => ({
2020-09-11 00:29:14 +00:00
after: '1900-01-01',
before: dayjs.utc().toDate(),
orderBy: ['DATE_DESC', 'CREATED_AT_DESC'],
}),
upcoming: () => ({
2020-09-11 00:29:14 +00:00
after: dayjs.utc().toDate(),
before: '2100-01-01',
orderBy: ['DATE_ASC', 'CREATED_AT_ASC'],
}),
new: () => ({
2020-08-19 19:48:55 +00:00
after: '1900-01-01 00:00:00',
2020-09-11 00:29:14 +00:00
before: '2100-01-01',
2020-08-19 19:48:55 +00:00
orderBy: ['CREATED_AT_DESC', 'DATE_ASC'],
}),
all: () => ({
2020-09-11 00:29:14 +00:00
after: '1900-01-01',
before: '2100-01-01',
orderBy: ['DATE_DESC', 'CREATED_AT_DESC'],
}),
};
function getDateRange(range) {
2020-05-26 23:40:10 +00:00
return (dateRanges[range] || dateRanges.all)();
}
export default getDateRange;