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