| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- 'use strict';
- const moment = require('moment-timezone');
- const isMoment = moment.isMoment;
- const isDate = require('lodash/isDate');
- function getMoment(date, lang, timezone) {
- if (date == null) date = moment();
- if (!isMoment(date)) date = moment(isDate(date) ? date : new Date(date));
- if (lang) date = date.locale(lang);
- if (timezone) date = date.tz(timezone);
- return date;
- }
- function toISOString(date) {
- if (date == null) {
- return new Date().toISOString();
- }
- if (date instanceof Date || isMoment(date)) {
- return date.toISOString();
- }
- return new Date(date).toISOString();
- }
- function dateHelper(date, format) {
- const config = this.config;
- const moment = getMoment(date, getLanguage(this), config.timezone);
- return moment.format(format || config.date_format);
- }
- function timeHelper(date, format) {
- const config = this.config;
- const moment = getMoment(date, getLanguage(this), config.timezone);
- return moment.format(format || config.time_format);
- }
- function fullDateHelper(date, format) {
- if (format) {
- const moment = getMoment(date, getLanguage(this), this.config.timezone);
- return moment.format(format);
- }
- return `${this.date(date)} ${this.time(date)}`;
- }
- function relativeDateHelper(date) {
- const config = this.config;
- const moment = getMoment(date, getLanguage(this), config.timezone);
- return moment.fromNow();
- }
- function timeTagHelper(date, format) {
- const config = this.config;
- return `<time datetime="${toISOString(date)}">${this.date(date, format, getLanguage(this), config.timezone)}</time>`;
- }
- function getLanguage(ctx) {
- return ctx.page.lang || ctx.page.language || ctx.config.language;
- }
- exports.date = dateHelper;
- exports.date_xml = toISOString;
- exports.time = timeHelper;
- exports.full_date = fullDateHelper;
- exports.relative_date = relativeDateHelper;
- exports.time_tag = timeTagHelper;
- exports.moment = moment;
|