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