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