mastodon/app/javascript/glitch/components/notification/index.js

83 lines
1.8 KiB
JavaScript
Raw Normal View History

// Package imports //
import React from 'react';
2016-11-20 19:39:18 +01:00
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';
2016-11-20 19:39:18 +01:00
// Mastodon imports //
// Our imports //
2017-07-13 12:36:12 +02:00
import StatusContainer from '../status/container';
2017-07-14 20:13:02 +02:00
import NotificationFollow from './follow';
export default class Notification extends ImmutablePureComponent {
2016-11-20 19:39:18 +01:00
static propTypes = {
notification: ImmutablePropTypes.map.isRequired,
2017-06-29 07:00:54 +02:00
settings: ImmutablePropTypes.map.isRequired,
};
renderFollow (notification) {
2016-11-20 19:39:18 +01:00
return (
2017-07-14 20:13:02 +02:00
<NotificationFollow
id={notification.get('id')}
account={notification.get('account')}
notification={notification}
/>
2016-11-20 19:39:18 +01:00
);
}
2016-11-20 19:39:18 +01:00
renderMention (notification) {
return (
<StatusContainer
id={notification.get('status')}
notification={notification}
withDismiss
/>
);
}
2016-11-20 19:39:18 +01:00
renderFavourite (notification) {
2016-11-20 19:39:18 +01:00
return (
<StatusContainer
id={notification.get('status')}
account={notification.get('account')}
prepend='favourite'
muted
notification={notification}
withDismiss
/>
2016-11-20 19:39:18 +01:00
);
}
2016-11-20 19:39:18 +01:00
renderReblog (notification) {
2016-11-20 19:39:18 +01:00
return (
<StatusContainer
id={notification.get('status')}
account={notification.get('account')}
prepend='reblog'
muted
notification={notification}
withDismiss
/>
2016-11-20 19:39:18 +01:00
);
}
2016-11-20 19:39:18 +01:00
render () {
const { notification } = this.props;
2016-11-20 19:39:18 +01:00
switch(notification.get('type')) {
case 'follow':
return this.renderFollow(notification);
case 'mention':
return this.renderMention(notification);
case 'favourite':
return this.renderFavourite(notification);
case 'reblog':
return this.renderReblog(notification);
2016-11-20 19:39:18 +01:00
}
return null;
2016-11-20 19:39:18 +01:00
}
}