1
0
mirror of https://github.com/flarum/core.git synced 2025-10-15 00:44:40 +02:00

Change notification type components to be like post types

This commit is contained in:
Toby Zerner
2015-05-05 17:30:18 +09:30
parent a822deaa98
commit efeb236feb
2 changed files with 25 additions and 23 deletions

View File

@@ -1,17 +1,24 @@
import Component from 'flarum/component';
import avatar from 'flarum/helpers/avatar';
import icon from 'flarum/helpers/icon';
import humanTime from 'flarum/helpers/human-time';
export default class Notification extends Component {
view() {
view(args) {
var notification = this.props.notification;
return m('div.notification.notification-'+notification.contentType(), {
classNames: !notification.isRead() ? 'unread' : '',
onclick: this.read.bind(this)
}, this.content());
}
content() {
//
}, m('a', {href: args.href, config: args.config}, [
avatar(notification.sender()),
m('h3.notification-title', args.title),
m('div.notification-info', [
icon(args.icon), ' ',
args.content, ' ',
humanTime(notification.time())
])
]));
}
read() {