1
0
mirror of https://github.com/flarum/core.git synced 2025-07-30 21:20:24 +02:00

Change the way post count metadata is stored

We care about the number of “comment” posts, not the number of posts in
total.
This commit is contained in:
Toby Zerner
2015-01-16 17:10:54 +10:30
parent cfdf01ec70
commit 5e288f55f5
7 changed files with 17 additions and 17 deletions

View File

@@ -0,0 +1,31 @@
import Ember from 'ember';
export default Ember.Handlebars.makeBoundHelper(function(time) {
var m = moment(time);
var datetime = m.format(),
full = m.format('LLLL');
var second = 1e3;
var minute = 6e4;
var hour = 36e5;
var day = 864e5;
var week = 6048e5;
var ago = null;
var diff = Math.abs(m.diff(moment()));
if (diff < 60 * minute) {
ago = moment.duration(diff).minutes()+'m ago';
} else if (diff < 24 * hour) {
ago = moment.duration(diff).hours()+'h ago';
} else if (diff < 30 * day) {
ago = moment.duration(diff).days()+'d ago';
} else if (m.year() == moment().year()) {
ago = m.format('D MMM');
} else {
ago = m.format('MMM \'YY');
}
return new Handlebars.SafeString('<time pubdate datetime="'+datetime+'" title="'+full+'">'+ago+'</time>');
});