mirror of
https://github.com/flarum/framework.git
synced 2024-12-18 11:03:52 +08:00
Implement notification excerpts
This commit is contained in:
parent
21ad0d8203
commit
d8507f599d
|
@ -1,6 +1,7 @@
|
|||
import Notification from 'flarum/components/Notification';
|
||||
import username from 'flarum/helpers/username';
|
||||
import punctuate from 'flarum/helpers/punctuate';
|
||||
import { truncate } from 'flarum/utils/string';
|
||||
|
||||
export default class PostLikedNotification extends Notification {
|
||||
icon() {
|
||||
|
@ -13,7 +14,6 @@ export default class PostLikedNotification extends Notification {
|
|||
|
||||
content() {
|
||||
const notification = this.props.notification;
|
||||
const post = notification.subject();
|
||||
const user = notification.sender();
|
||||
const auc = notification.additionalUnreadCount();
|
||||
|
||||
|
@ -22,8 +22,11 @@ export default class PostLikedNotification extends Notification {
|
|||
username: auc ? punctuate([
|
||||
username(user),
|
||||
app.trans('likes.others', {count: auc})
|
||||
]) : undefined,
|
||||
number: post.number()
|
||||
]) : undefined
|
||||
});
|
||||
}
|
||||
|
||||
excerpt() {
|
||||
return truncate(this.props.notification.subject().contentPlain(), 100);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
likes:
|
||||
post_liked_notification: "{username} liked your post #{number}"
|
||||
post_liked_notification: "{username} liked your post"
|
||||
post_likes_modal_title: Users Who Like This
|
||||
post_liked_by_self: "{users} like this."
|
||||
post_liked_by:
|
||||
|
|
Loading…
Reference in New Issue
Block a user