mirror of
https://github.com/flarum/framework.git
synced 2024-11-28 20:16:08 +08:00
ab6c03c0cc
- Use JSX for templates - Docblock/comment everything - Mostly passes ESLint (still some work to do) - Lots of renaming, refactoring, etc. CSS hasn't been updated yet.
20 lines
534 B
JavaScript
20 lines
534 B
JavaScript
import humanTimeUtil from 'flarum/utils/humanTime';
|
|
|
|
/**
|
|
* The `humanTime` helper displays a time in a human-friendly time-ago format
|
|
* (e.g. '12 days ago'), wrapped in a <time> tag with other information about
|
|
* the time.
|
|
*
|
|
* @param {Date} time
|
|
* @return {Object}
|
|
*/
|
|
export default function humanTime(time) {
|
|
const mo = moment(time);
|
|
|
|
const datetime = mo.format();
|
|
const full = mo.format('LLLL');
|
|
const ago = humanTimeUtil(time);
|
|
|
|
return <time pubdate datetime={datetime} title={full} data-humantime>{ago}</time>;
|
|
}
|