unify date parsing and fall back to raw value if it failed

This commit is contained in:
j 2018-08-05 19:07:31 +01:00
commit 4e4d64febc
3 changed files with 24 additions and 18 deletions

View file

@ -1115,6 +1115,27 @@ pandora.formatDocumentKey = function(key, data, size) {
return value;
}
pandora.formatDate = function(value) {
var ret;
if (!value) {
ret = ''
} else if (Ox.contains(value, ':') && value.split('-').length == 3) {
ret = Ox.formatDate(value,
['', '', '%B %e, %Y %H:%M', '%B %e, %Y %H:%M:%S'][value.split(':').length],
false
);
} else {
ret = Ox.formatDate(value,
['', '%Y', '%B %Y', '%B %e, %Y'][value.split('-').length],
true
);
}
if (ret.trim() == 'NaN') {
ret = value;
}
return ret;
}
pandora.getAllItemsTitle = function(section) {
section = section || pandora.user.ui.section;
return {