import PropTypes from "prop-types"; import { defineMessages, injectIntl, FormattedMessage } from "react-intl"; import classNames from "classnames"; import ImmutablePropTypes from "react-immutable-proptypes"; import ImmutablePureComponent from "react-immutable-pure-component"; import { HotKeys } from "react-hotkeys"; import { Avatar } from "flavours/glitch/components/avatar"; import { DisplayName } from "flavours/glitch/components/display_name"; import { Icon } from "flavours/glitch/components/icon"; import { IconButton } from "flavours/glitch/components/icon_button"; import Permalink from "flavours/glitch/components/permalink"; import NotificationOverlayContainer from "../containers/overlay_container"; const messages = defineMessages({ authorize: { id: "follow_request.authorize", defaultMessage: "Authorize" }, reject: { id: "follow_request.reject", defaultMessage: "Reject" }, }); class FollowRequest extends ImmutablePureComponent { static propTypes = { account: ImmutablePropTypes.map.isRequired, onAuthorize: PropTypes.func.isRequired, onReject: PropTypes.func.isRequired, intl: PropTypes.object.isRequired, notification: ImmutablePropTypes.map.isRequired, unread: PropTypes.bool, }; handleMoveUp = () => { const { notification, onMoveUp } = this.props; onMoveUp(notification.get("id")); }; handleMoveDown = () => { const { notification, onMoveDown } = this.props; onMoveDown(notification.get("id")); }; handleOpen = () => { this.handleOpenProfile(); }; handleOpenProfile = () => { const { notification } = this.props; this.context.router.history.push(`/@${notification.getIn(["account", "acct"])}`); }; handleMention = e => { e.preventDefault(); const { notification, onMention } = this.props; onMention(notification.get("account"), this.context.router.history); }; getHandlers () { return { moveUp: this.handleMoveUp, moveDown: this.handleMoveDown, open: this.handleOpen, openProfile: this.handleOpenProfile, mention: this.handleMention, reply: this.handleMention, }; } render () { const { intl, hidden, account, onAuthorize, onReject, notification, unread } = this.props; if (!account) { return
; } if (hidden) { return ( <> {account.get("display_name")} {account.get("username")} ); } // Links to the display name. const displayName = account.get("display_name_html") || account.get("username"); const link = ( ); return (
); } } export default injectIntl(FollowRequest);