2015-12-01 02:11:04 +08:00
|
|
|
/*
|
2016-01-07 12:06:39 +08:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-12-01 02:11:04 +08:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-05-19 05:00:44 +08:00
|
|
|
import UserSettingsStore from './UserSettingsStore';
|
|
|
|
const days = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
|
|
|
|
const months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
|
|
|
|
let time;
|
2015-12-01 02:11:04 +08:00
|
|
|
|
2017-05-15 07:25:12 +08:00
|
|
|
function pad(n) {
|
|
|
|
return (n < 10 ? '0' : '') + n;
|
|
|
|
}
|
|
|
|
|
2017-05-19 05:00:44 +08:00
|
|
|
function twentyfourhour(date) {
|
|
|
|
let hours = date.getHours();
|
|
|
|
let minutes = date.getMinutes();
|
|
|
|
let ampm = hours >= 12 ? 'PM' : 'AM';
|
|
|
|
hours = hours % 12;
|
|
|
|
hours = hours ? hours : 12;
|
|
|
|
minutes = minutes < 10 ? '0'+minutes : minutes;
|
|
|
|
var strTime = hours + ':' + minutes + ' ' + ampm;
|
|
|
|
return strTime;
|
|
|
|
}
|
|
|
|
|
2015-12-01 02:11:04 +08:00
|
|
|
module.exports = {
|
|
|
|
formatDate: function(date) {
|
|
|
|
var now = new Date();
|
|
|
|
if (date.toDateString() === now.toDateString()) {
|
2017-05-19 05:00:44 +08:00
|
|
|
return this.formatTime(date);
|
2015-12-01 02:11:04 +08:00
|
|
|
}
|
|
|
|
else if (now.getTime() - date.getTime() < 6 * 24 * 60 * 60 * 1000) {
|
2017-05-19 05:00:44 +08:00
|
|
|
return days[date.getDay()] + " " + this.formatTime(date);
|
2015-12-01 02:11:04 +08:00
|
|
|
}
|
2017-05-15 07:25:12 +08:00
|
|
|
else if (now.getFullYear() === date.getFullYear()) {
|
2017-05-19 05:00:44 +08:00
|
|
|
return days[date.getDay()] + ", " + months[date.getMonth()] + " " + date.getDate() + " " + this.formatTime(date);
|
2015-12-01 02:11:04 +08:00
|
|
|
}
|
|
|
|
else {
|
2017-05-15 07:25:12 +08:00
|
|
|
return this.formatFullDate(date);
|
2015-12-01 02:11:04 +08:00
|
|
|
}
|
2017-05-15 07:25:12 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
formatFullDate: function(date) {
|
2017-05-19 05:00:44 +08:00
|
|
|
return days[date.getDay()] + ", " + months[date.getMonth()] + " " + date.getDate() + " " + date.getFullYear() + " " + this.formatTime(date);
|
2016-08-16 22:01:01 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
formatTime: function(date) {
|
2017-05-19 05:00:44 +08:00
|
|
|
if (UserSettingsStore.getSyncedSetting('showTwelveHourTimestamps')) {
|
|
|
|
return twentyfourhour(date);
|
|
|
|
}
|
2017-05-15 07:25:12 +08:00
|
|
|
return pad(date.getHours()) + ':' + pad(date.getMinutes());
|
2017-05-19 05:00:44 +08:00
|
|
|
},
|
2017-01-20 22:22:27 +08:00
|
|
|
};
|