2017-07-12 04:02:51 -04:00
|
|
|
// Package imports //
|
2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2016-11-20 13:39:18 -05:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-05-02 20:04:16 -04:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-07-14 11:03:43 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-07-12 04:02:51 -04:00
|
|
|
// Mastodon imports //
|
|
|
|
|
|
|
|
// Our imports //
|
2017-07-13 06:36:12 -04:00
|
|
|
import StatusContainer from '../status/container';
|
2017-07-14 11:03:43 -04:00
|
|
|
import FollowNotification from './follow_notification';
|
2017-07-12 04:02:51 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class Notification extends ImmutablePureComponent {
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
2017-05-20 11:31:47 -04:00
|
|
|
notification: ImmutablePropTypes.map.isRequired,
|
2017-06-29 01:00:54 -04:00
|
|
|
settings: ImmutablePropTypes.map.isRequired,
|
2017-07-14 11:03:43 -04:00
|
|
|
onDeleteNotification: PropTypes.func.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-07-05 21:51:03 -04:00
|
|
|
renderFollow (notification) {
|
2016-11-20 13:39:18 -05:00
|
|
|
return (
|
2017-07-14 11:03:43 -04:00
|
|
|
<FollowNotification
|
|
|
|
notificationId={notification.get('id')}
|
|
|
|
account={notification.get('account')}
|
|
|
|
onDeleteNotification={this.props.onDeleteNotification}
|
|
|
|
/>
|
2016-11-20 13:39:18 -05:00
|
|
|
);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
|
|
|
|
renderMention (notification) {
|
2017-07-05 21:51:03 -04:00
|
|
|
return (
|
|
|
|
<StatusContainer
|
|
|
|
id={notification.get('status')}
|
2017-07-14 11:03:43 -04:00
|
|
|
notificationId={notification.get('id')}
|
2017-07-05 21:51:03 -04:00
|
|
|
withDismiss
|
|
|
|
/>
|
|
|
|
);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-07-05 21:51:03 -04:00
|
|
|
renderFavourite (notification) {
|
2016-11-20 13:39:18 -05:00
|
|
|
return (
|
2017-07-05 21:51:03 -04:00
|
|
|
<StatusContainer
|
|
|
|
id={notification.get('status')}
|
|
|
|
account={notification.get('account')}
|
|
|
|
prepend='favourite'
|
|
|
|
muted
|
2017-07-14 11:03:43 -04:00
|
|
|
notificationId={notification.get('id')}
|
2017-07-05 21:51:03 -04:00
|
|
|
withDismiss
|
|
|
|
/>
|
2016-11-20 13:39:18 -05:00
|
|
|
);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-07-05 21:51:03 -04:00
|
|
|
renderReblog (notification) {
|
2016-11-20 13:39:18 -05:00
|
|
|
return (
|
2017-07-05 21:51:03 -04:00
|
|
|
<StatusContainer
|
|
|
|
id={notification.get('status')}
|
|
|
|
account={notification.get('account')}
|
|
|
|
prepend='reblog'
|
|
|
|
muted
|
2017-07-14 11:03:43 -04:00
|
|
|
notificationId={notification.get('id')}
|
2017-07-05 21:51:03 -04:00
|
|
|
withDismiss
|
|
|
|
/>
|
2016-11-20 13:39:18 -05:00
|
|
|
);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-06-11 04:42:42 -04:00
|
|
|
render () {
|
2017-07-05 21:51:03 -04:00
|
|
|
const { notification } = this.props;
|
2016-11-20 13:39:18 -05:00
|
|
|
|
|
|
|
switch(notification.get('type')) {
|
2017-04-11 16:53:58 -04:00
|
|
|
case 'follow':
|
2017-07-05 21:51:03 -04:00
|
|
|
return this.renderFollow(notification);
|
2017-04-11 16:53:58 -04:00
|
|
|
case 'mention':
|
|
|
|
return this.renderMention(notification);
|
|
|
|
case 'favourite':
|
2017-07-05 21:51:03 -04:00
|
|
|
return this.renderFavourite(notification);
|
2017-04-11 16:53:58 -04:00
|
|
|
case 'reblog':
|
2017-07-05 21:51:03 -04:00
|
|
|
return this.renderReblog(notification);
|
2016-11-20 13:39:18 -05:00
|
|
|
}
|
2017-06-11 04:42:42 -04:00
|
|
|
|
|
|
|
return null;
|
2016-11-20 13:39:18 -05:00
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|