1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Handlebars/Helpers/DateTime.js

59 lines
1.5 KiB
JavaScript
Raw Normal View History

2013-06-22 09:24:24 +03:00
'use strict';
define(
[
2013-06-25 07:43:16 +03:00
'handlebars',
'moment',
'Shared/FormatHelpers'
], function (Handlebars, Moment, FormatHelpers) {
2013-06-25 07:43:16 +03:00
Handlebars.registerHelper('ShortDate', function (input) {
if (!input) {
return '';
}
var date = Moment(input);
var result = '<span title="' + date.format('LLLL') + '">' + date.format('LL') + '</span>';
return new Handlebars.SafeString(result);
});
Handlebars.registerHelper('NextAiring', function (input) {
if (!input) {
return '';
}
var date = Moment(input);
var result = '<span title="' + date.format('LLLL') + '">' + FormatHelpers.DateHelper(input) + '</span>';
2013-06-25 07:43:16 +03:00
return new Handlebars.SafeString(result);
});
2013-07-17 03:41:04 +03:00
Handlebars.registerHelper('Day', function (input) {
if (!input) {
return '';
}
return Moment(input).format('DD');
2013-07-17 03:41:04 +03:00
});
Handlebars.registerHelper('Month', function (input) {
if (!input) {
return '';
}
return Moment(input).format('MMM');
2013-07-17 03:41:04 +03:00
});
Handlebars.registerHelper('StartTime', function (input) {
if (!input) {
return '';
}
var date = Moment(input);
if (date.format('mm') === '00') {
return date.format('ha');
2013-07-17 03:41:04 +03:00
}
return date.format('h.mma');
2013-07-17 03:41:04 +03:00
});
});