mirror of
https://github.com/flarum/framework.git
synced 2024-12-03 07:33:36 +08:00
c28307903b
HTMLBars goodness! Since there was some breakage and a lot of fiddling around to get some things working, I took this opportunity to do a big cleanup of the whole Ember app. I accidentally worked on some new features too :3 Note that the app is still broken right now, pending on https://github.com/emberjs/ember.js/issues/10401 Cleanup: - Restructuring of components - Consolidation of some stuff into mixins, cleanup of some APIs that will be public - Change all instances of .property() / .observes() / .on() to Ember.computed() / Ember.observer() / Ember.on() respectively (I think it is more readable) - More comments - Start conforming to a code style (2 spaces for indentation) New features: - Post hiding/restoring - Mark individual discussions as read by clicking - Clicking on a read discussion jumps to the end - Mark all discussions as read - Progressively mark the discussion as read as the page is scrolled - Unordered list post formatting - Post permalink popup Demo once that Ember regression is fixed!
148 lines
3.4 KiB
JavaScript
148 lines
3.4 KiB
JavaScript
import Ember from 'ember';
|
|
|
|
import humanTime from 'flarum/utils/human-time';
|
|
|
|
var $ = Ember.$;
|
|
|
|
export default {
|
|
name: 'human-time-updater',
|
|
initialize: function(container) {
|
|
|
|
// Livestamp.js / v1.1.2 / (c) 2012 Matt Bradley / MIT License
|
|
// @todo rewrite this to be simpler and cleaner
|
|
(function($, moment) {
|
|
var updateInterval = 1e3,
|
|
paused = false,
|
|
$livestamps = $([]),
|
|
|
|
init = function() {
|
|
livestampGlobal.resume();
|
|
},
|
|
|
|
prep = function($el, timestamp) {
|
|
var oldData = $el.data('livestampdata');
|
|
if (typeof timestamp == 'number')
|
|
timestamp *= 1e3;
|
|
|
|
$el.removeAttr('data-livestamp')
|
|
.removeData('livestamp');
|
|
|
|
timestamp = moment(timestamp);
|
|
if (timestamp.diff(moment(new Date())) < 60 * 60) {
|
|
return;
|
|
}
|
|
if (moment.isMoment(timestamp) && !isNaN(+timestamp)) {
|
|
var newData = $.extend({ }, { 'original': $el.contents() }, oldData);
|
|
newData.moment = moment(timestamp);
|
|
|
|
$el.data('livestampdata', newData).empty();
|
|
$livestamps.push($el[0]);
|
|
}
|
|
},
|
|
|
|
run = function() {
|
|
if (paused) return;
|
|
livestampGlobal.update();
|
|
setTimeout(run, updateInterval);
|
|
},
|
|
|
|
livestampGlobal = {
|
|
update: function() {
|
|
$('[data-humantime]').each(function() {
|
|
var $this = $(this);
|
|
prep($this, $this.attr('datetime'));
|
|
});
|
|
|
|
var toRemove = [];
|
|
$livestamps.each(function() {
|
|
var $this = $(this),
|
|
data = $this.data('livestampdata');
|
|
|
|
if (data === undefined)
|
|
toRemove.push(this);
|
|
else if (moment.isMoment(data.moment)) {
|
|
var from = $this.html(),
|
|
to = humanTime(data.moment);
|
|
// to = data.moment.fromNow();
|
|
|
|
if (from != to) {
|
|
var e = $.Event('change.livestamp');
|
|
$this.trigger(e, [from, to]);
|
|
if (!e.isDefaultPrevented())
|
|
$this.html(to);
|
|
}
|
|
}
|
|
});
|
|
|
|
$livestamps = $livestamps.not(toRemove);
|
|
},
|
|
|
|
pause: function() {
|
|
paused = true;
|
|
},
|
|
|
|
resume: function() {
|
|
paused = false;
|
|
run();
|
|
},
|
|
|
|
interval: function(interval) {
|
|
if (interval === undefined)
|
|
return updateInterval;
|
|
updateInterval = interval;
|
|
}
|
|
},
|
|
|
|
livestampLocal = {
|
|
add: function($el, timestamp) {
|
|
if (typeof timestamp == 'number')
|
|
timestamp *= 1e3;
|
|
timestamp = moment(timestamp);
|
|
|
|
if (moment.isMoment(timestamp) && !isNaN(+timestamp)) {
|
|
$el.each(function() {
|
|
prep($(this), timestamp);
|
|
});
|
|
livestampGlobal.update();
|
|
}
|
|
|
|
return $el;
|
|
},
|
|
|
|
destroy: function($el) {
|
|
$livestamps = $livestamps.not($el);
|
|
$el.each(function() {
|
|
var $this = $(this),
|
|
data = $this.data('livestampdata');
|
|
|
|
if (data === undefined)
|
|
return $el;
|
|
|
|
$this
|
|
.html(data.original ? data.original : '')
|
|
.removeData('livestampdata');
|
|
});
|
|
|
|
return $el;
|
|
},
|
|
|
|
isLivestamp: function($el) {
|
|
return $el.data('livestampdata') !== undefined;
|
|
}
|
|
};
|
|
|
|
$.livestamp = livestampGlobal;
|
|
$(init);
|
|
$.fn.livestamp = function(method, options) {
|
|
if (!livestampLocal[method]) {
|
|
options = method;
|
|
method = 'add';
|
|
}
|
|
|
|
return livestampLocal[method](this, options);
|
|
};
|
|
})(jQuery, moment);
|
|
|
|
}
|
|
};
|