jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/datetime.js

211 lines
5.9 KiB
JavaScript
Raw Normal View History

2016-04-17 22:58:08 -07:00
define(['globalize'], function (globalize) {
2016-10-03 22:15:39 -07:00
'use strict';
2015-12-30 15:14:34 -07:00
function parseISO8601Date(s, toLocal) {
// parenthese matches:
// year month day hours minutes seconds
// dotmilliseconds
// tzstring plusminus hours minutes
var re = /(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})(\.\d+)?(Z|([+-])(\d{2}):(\d{2}))?/;
var d = s.match(re);
// "2010-12-07T11:00:00.000-09:00" parses to:
// ["2010-12-07T11:00:00.000-09:00", "2010", "12", "07", "11",
// "00", "00", ".000", "-09:00", "-", "09", "00"]
// "2010-12-07T11:00:00.000Z" parses to:
// ["2010-12-07T11:00:00.000Z", "2010", "12", "07", "11",
// "00", "00", ".000", "Z", undefined, undefined, undefined]
if (!d) {
throw "Couldn't parse ISO 8601 date string '" + s + "'";
}
// parse strings, leading zeros into proper ints
var a = [1, 2, 3, 4, 5, 6, 10, 11];
for (var i in a) {
d[a[i]] = parseInt(d[a[i]], 10);
}
d[7] = parseFloat(d[7]);
// Date.UTC(year, month[, date[, hrs[, min[, sec[, ms]]]]])
// note that month is 0-11, not 1-12
// see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/UTC
var ms = Date.UTC(d[1], d[2] - 1, d[3], d[4], d[5], d[6]);
// if there are milliseconds, add them
if (d[7] > 0) {
ms += Math.round(d[7] * 1000);
}
// if there's a timezone, calculate it
2016-10-03 22:15:39 -07:00
if (d[8] !== "Z" && d[10]) {
2015-12-30 15:14:34 -07:00
var offset = d[10] * 60 * 60 * 1000;
if (d[11]) {
offset += d[11] * 60 * 1000;
}
2016-10-03 22:15:39 -07:00
if (d[9] === "-") {
2015-12-30 15:14:34 -07:00
ms -= offset;
} else {
ms += offset;
}
} else if (toLocal === false) {
ms += new Date().getTimezoneOffset() * 60000;
}
return new Date(ms);
}
function getDisplayRunningTime(ticks) {
var ticksPerHour = 36000000000;
var ticksPerMinute = 600000000;
var ticksPerSecond = 10000000;
var parts = [];
var hours = ticks / ticksPerHour;
hours = Math.floor(hours);
if (hours) {
parts.push(hours);
}
ticks -= (hours * ticksPerHour);
var minutes = ticks / ticksPerMinute;
minutes = Math.floor(minutes);
ticks -= (minutes * ticksPerMinute);
if (minutes < 10 && hours) {
minutes = '0' + minutes;
}
parts.push(minutes);
var seconds = ticks / ticksPerSecond;
seconds = Math.floor(seconds);
if (seconds < 10) {
seconds = '0' + seconds;
}
parts.push(seconds);
return parts.join(':');
}
2016-04-17 22:58:08 -07:00
var toLocaleTimeStringSupportsLocales = function toLocaleTimeStringSupportsLocales() {
try {
new Date().toLocaleTimeString('i');
} catch (e) {
return e.name === 'RangeError';
}
return false;
}();
2016-09-13 10:49:13 -07:00
function getCurrentLocale() {
var locale = globalize.getCurrentLocale();
return locale;
}
2016-09-15 23:32:40 -07:00
function toLocaleString(date, options) {
2016-09-13 10:49:13 -07:00
var currentLocale = getCurrentLocale();
2016-09-04 22:39:14 -07:00
return currentLocale && toLocaleTimeStringSupportsLocales ?
2016-09-15 23:32:40 -07:00
date.toLocaleString(currentLocale, options || {}) :
2016-09-04 22:39:14 -07:00
date.toLocaleString();
}
2016-09-15 23:32:40 -07:00
function toLocaleDateString(date, options) {
2016-08-24 21:53:12 -07:00
2016-09-13 10:49:13 -07:00
var currentLocale = getCurrentLocale();
2016-05-05 18:02:24 -07:00
return currentLocale && toLocaleTimeStringSupportsLocales ?
2016-09-15 23:32:40 -07:00
date.toLocaleDateString(currentLocale, options || {}) :
2016-05-05 18:02:24 -07:00
date.toLocaleDateString();
}
2016-09-15 23:32:40 -07:00
function toLocaleTimeString(date, options) {
2016-08-27 18:05:32 -07:00
2016-09-13 10:49:13 -07:00
var currentLocale = getCurrentLocale();
2016-08-27 18:05:32 -07:00
return currentLocale && toLocaleTimeStringSupportsLocales ?
2016-10-02 23:28:45 -07:00
date.toLocaleTimeString(currentLocale, options || {}).toLowerCase() :
date.toLocaleTimeString().toLowerCase();
2016-08-27 18:05:32 -07:00
}
2016-04-03 10:36:47 -07:00
function getDisplayTime(date) {
2016-05-05 19:55:15 -07:00
if ((typeof date).toString().toLowerCase() === 'string') {
try {
date = parseISO8601Date(date, true);
} catch (err) {
return date;
}
}
2016-10-17 22:06:48 -07:00
if (toLocaleTimeStringSupportsLocales) {
return toLocaleTimeString(date, {
2016-04-17 22:58:08 -07:00
2016-10-17 22:06:48 -07:00
hour: 'numeric',
minute: '2-digit'
2016-04-17 22:58:08 -07:00
2016-10-17 22:06:48 -07:00
});
}
var time = toLocaleTimeString(date);
var timeLower = time.toLowerCase();
if (timeLower.indexOf('am') !== -1 || timeLower.indexOf('pm') !== -1) {
time = timeLower;
var hour = date.getHours() % 12;
var suffix = date.getHours() > 11 ? 'pm' : 'am';
if (!hour) {
hour = 12;
}
var minutes = date.getMinutes();
if (minutes < 10) {
minutes = '0' + minutes;
}
minutes = ':' + minutes;
time = hour + minutes + suffix;
} else {
var timeParts = time.split(':');
// Trim off seconds
if (timeParts.length > 2) {
timeParts.length -= 1;
time = timeParts.join(':');
}
}
return time;
2016-04-03 10:36:47 -07:00
}
2016-08-24 21:53:12 -07:00
function isRelativeDay(date, offsetInDays) {
var yesterday = new Date();
var day = yesterday.getDate() + offsetInDays;
yesterday.setDate(day); // automatically adjusts month/year appropriately
2016-10-03 22:15:39 -07:00
return date.getFullYear() === yesterday.getFullYear() && date.getMonth() === yesterday.getMonth() && date.getDate() === day;
2016-08-24 21:53:12 -07:00
}
2015-12-30 15:14:34 -07:00
return {
parseISO8601Date: parseISO8601Date,
2016-04-03 10:36:47 -07:00
getDisplayRunningTime: getDisplayRunningTime,
2016-05-05 18:02:24 -07:00
toLocaleDateString: toLocaleDateString,
2016-09-04 22:39:14 -07:00
toLocaleString: toLocaleString,
2016-08-24 21:53:12 -07:00
getDisplayTime: getDisplayTime,
2016-09-15 23:32:40 -07:00
isRelativeDay: isRelativeDay
2015-12-30 15:14:34 -07:00
};
});