mirror of
https://github.com/flarum/framework.git
synced 2025-04-02 23:19:04 +08:00
32 lines
881 B
JavaScript
32 lines
881 B
JavaScript
import Component from '../../common/Component';
|
|
import humanTime from '../../common/helpers/humanTime';
|
|
import icon from '../../common/helpers/icon';
|
|
|
|
/**
|
|
* Displays information about a the first or last post in a discussion.
|
|
*
|
|
* ### Props
|
|
*
|
|
* - `discussion`
|
|
* - `lastPost`
|
|
*/
|
|
export default class TerminalPost extends Component {
|
|
view() {
|
|
const discussion = this.props.discussion;
|
|
const lastPost = this.props.lastPost && discussion.replyCount();
|
|
|
|
const user = discussion[lastPost ? 'lastPostedUser' : 'user']();
|
|
const time = discussion[lastPost ? 'lastPostedAt' : 'createdAt']();
|
|
|
|
return (
|
|
<span>
|
|
{lastPost ? icon('fas fa-reply') : ''}{' '}
|
|
{app.translator.trans('core.forum.discussion_list.' + (lastPost ? 'replied' : 'started') + '_text', {
|
|
user,
|
|
ago: humanTime(time)
|
|
})}
|
|
</span>
|
|
);
|
|
}
|
|
}
|