mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
9a7ebeef1c
refs #7449, refs #7514, refs #7643 - We've had a couple of issues raised, and a few people in #help all report the same error: > Cannot read property 'zone' of undefined When starting Ghost. I'm not sure why this seems to work sometimes, and not others, however it would seem that we should require moment-timezone anywhere we want to use timezone features. This PR fixes the LOC shown in #7449 as the problem line + I searched for any other potential problems
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
// # Date Helper
|
|
// Usage: `{{date format="DD MM, YYYY"}}`, `{{date updated_at format="DD MM, YYYY"}}`
|
|
//
|
|
// Formats a date using moment-timezone.js. Formats published_at by default but will also take a date as a parameter
|
|
|
|
var moment = require('moment-timezone'),
|
|
date,
|
|
timezone;
|
|
|
|
date = function (date, options) {
|
|
if (!options && date.hasOwnProperty('hash')) {
|
|
options = date;
|
|
date = undefined;
|
|
timezone = options.data.blog.timezone;
|
|
|
|
// set to published_at by default, if it's available
|
|
// otherwise, this will print the current date
|
|
if (this.published_at) {
|
|
date = moment(this.published_at).tz(timezone).format();
|
|
}
|
|
}
|
|
|
|
// ensure that context is undefined, not null, as that can cause errors
|
|
date = date === null ? undefined : date;
|
|
|
|
var f = options.hash.format || 'MMM DD, YYYY',
|
|
timeago = options.hash.timeago,
|
|
timeNow = moment().tz(timezone);
|
|
|
|
if (timeago) {
|
|
date = timezone ? moment(date).tz(timezone).from(timeNow) : moment(date).fromNow();
|
|
} else {
|
|
date = timezone ? moment(date).tz(timezone).format(f) : moment(date).format(f);
|
|
}
|
|
|
|
return date;
|
|
};
|
|
|
|
module.exports = date;
|