e74e2e039e
no issue - switch `jscs` and `jshint` inline config to `eslint` config - fix eslint errors, predominantly in tests where the config now the main app config more closely
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
const parseDateFormats = [
|
|
'DD MMM YY @ HH:mm', 'DD MMM YY HH:mm',
|
|
'D MMM YY @ HH:mm', 'D MMM YY HH:mm',
|
|
'DD MMM YYYY @ HH:mm', 'DD MMM YYYY HH:mm',
|
|
'D MMM YYYY @ HH:mm', 'D MMM YYYY HH:mm',
|
|
'DD/MM/YY @ HH:mm', 'DD/MM/YY HH:mm',
|
|
'DD/MM/YYYY @ HH:mm', 'DD/MM/YYYY HH:mm',
|
|
'DD-MM-YY @ HH:mm', 'DD-MM-YY HH:mm',
|
|
'DD-MM-YYYY @ HH:mm', 'DD-MM-YYYY HH:mm',
|
|
'YYYY-MM-DD @ HH:mm', 'YYYY-MM-DD HH:mm',
|
|
'DD MMM @ HH:mm', 'DD MMM HH:mm',
|
|
'D MMM @ HH:mm', 'D MMM HH:mm'
|
|
];
|
|
|
|
const displayDateFormat = 'DD MMM YY @ HH:mm';
|
|
|
|
// Add missing timestamps
|
|
function verifyTimeStamp(dateString) {
|
|
if (dateString && !dateString.slice(-5).match(/\d+:\d\d/)) {
|
|
dateString += ' 12:00';
|
|
}
|
|
return dateString;
|
|
}
|
|
|
|
// Parses a string to a Moment
|
|
function parseDateString(value, timezone) {
|
|
// We need the timezone here, otherwise the date will be parsed
|
|
// in UTC timezone
|
|
moment.tz.setDefault(timezone);
|
|
|
|
return value ? moment(verifyTimeStamp(value), parseDateFormats, true) : undefined;
|
|
}
|
|
|
|
// Formats a Date or Moment
|
|
function formatDate(value, timezone) {
|
|
// we output the date adjusted to the blog timezone selected in settings
|
|
return verifyTimeStamp(value ? moment(value).tz(timezone).format(displayDateFormat) : '');
|
|
}
|
|
|
|
export {
|
|
parseDateString,
|
|
formatDate
|
|
};
|