import PropTypes from 'prop-types'; import { 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 PictureInPicturePlaceholder from 'flavours/glitch/components/picture_in_picture_placeholder'; import PollContainer from 'flavours/glitch/containers/poll_container'; import NotificationOverlayContainer from 'flavours/glitch/features/notifications/containers/overlay_container'; import { autoUnfoldCW } from 'flavours/glitch/utils/content_warning'; import { withOptionalRouter, WithOptionalRouterPropTypes } from 'flavours/glitch/utils/react_router'; import Card from '../features/status/components/card'; // We use the component (and not the container) since we do not want // to use the progress bar to show download progress import Bundle from '../features/ui/components/bundle'; import { MediaGallery, Video, Audio } from '../features/ui/util/async-components'; import { SensitiveMediaContext } from '../features/ui/util/sensitive_media_context'; import { displayMedia } from '../initial_state'; import AttachmentList from './attachment_list'; import { Avatar } from './avatar'; import { AvatarOverlay } from './avatar_overlay'; import { DisplayName } from './display_name'; import { getHashtagBarForStatus } from './hashtag_bar'; import StatusActionBar from './status_action_bar'; import StatusContent from './status_content'; import StatusIcons from './status_icons'; import StatusPrepend from './status_prepend'; const domParser = new DOMParser(); export const textForScreenReader = (intl, status, rebloggedByText = false, expanded = false) => { const displayName = status.getIn(['account', 'display_name']); const spoilerText = status.getIn(['translation', 'spoiler_text']) || status.get('spoiler_text'); const contentHtml = status.getIn(['translation', 'contentHtml']) || status.get('contentHtml'); const contentText = domParser.parseFromString(contentHtml, 'text/html').documentElement.textContent; const values = [ displayName.length === 0 ? status.getIn(['account', 'acct']).split('@')[0] : displayName, spoilerText && !expanded ? spoilerText : contentText, intl.formatDate(status.get('created_at'), { hour: '2-digit', minute: '2-digit', month: 'short', day: 'numeric' }), status.getIn(['account', 'acct']), ]; if (rebloggedByText) { values.push(rebloggedByText); } return values.join(', '); }; export const defaultMediaVisibility = (status, settings) => { if (!status) { return undefined; } if (status.get('reblog', null) !== null && typeof status.get('reblog') === 'object') { status = status.get('reblog'); } if (settings.getIn(['media', 'reveal_behind_cw']) && !!status.get('spoiler_text')) { return true; } return (displayMedia !== 'hide_all' && !status.get('sensitive') || displayMedia === 'show_all'); }; class Status extends ImmutablePureComponent { static contextType = SensitiveMediaContext; static propTypes = { containerId: PropTypes.string, id: PropTypes.string, status: ImmutablePropTypes.map, account: ImmutablePropTypes.record, previousId: PropTypes.string, nextInReplyToId: PropTypes.string, rootId: PropTypes.string, onClick: PropTypes.func, onReply: PropTypes.func, onFavourite: PropTypes.func, onReblog: PropTypes.func, onBookmark: PropTypes.func, onDelete: PropTypes.func, onDirect: PropTypes.func, onMention: PropTypes.func, onPin: PropTypes.func, onOpenMedia: PropTypes.func, onOpenVideo: PropTypes.func, onBlock: PropTypes.func, onAddFilter: PropTypes.func, onEmbed: PropTypes.func, onHeightChange: PropTypes.func, onToggleHidden: PropTypes.func, onToggleCollapsed: PropTypes.func, onTranslate: PropTypes.func, onInteractionModal: PropTypes.func, muted: PropTypes.bool, hidden: PropTypes.bool, unread: PropTypes.bool, prepend: PropTypes.string, withDismiss: PropTypes.bool, onMoveUp: PropTypes.func, onMoveDown: PropTypes.func, getScrollPosition: PropTypes.func, updateScrollBottom: PropTypes.func, expanded: PropTypes.bool, intl: PropTypes.object.isRequired, cacheMediaWidth: PropTypes.func, cachedMediaWidth: PropTypes.number, scrollKey: PropTypes.string, skipPrepend: PropTypes.bool, avatarSize: PropTypes.number, deployPictureInPicture: PropTypes.func, settings: ImmutablePropTypes.map.isRequired, pictureInPicture: ImmutablePropTypes.contains({ inUse: PropTypes.bool, available: PropTypes.bool, }), ...WithOptionalRouterPropTypes, }; state = { isExpanded: undefined, showMedia: defaultMediaVisibility(this.props.status, this.props.settings) && !(this.context?.hideMediaByDefault), revealBehindCW: undefined, showCard: false, forceFilter: undefined, }; // Avoid checking props that are functions (and whose equality will always // evaluate to false. See react-immutable-pure-component for usage. updateOnProps = [ 'status', 'account', 'settings', 'prepend', 'muted', 'notification', 'hidden', 'expanded', 'unread', 'pictureInPicture', 'previousId', 'nextInReplyToId', 'rootId', ]; updateOnStates = [ 'isExpanded', 'showMedia', 'forceFilter', ]; static getDerivedStateFromProps(nextProps, prevState) { let update = {}; let updated = false; // Make sure the state mirrors props we track… if (nextProps.expanded !== prevState.expandedProp) { update.expandedProp = nextProps.expanded; updated = true; } if (nextProps.status?.get('hidden') !== prevState.statusPropHidden) { update.statusPropHidden = nextProps.status?.get('hidden'); updated = true; } // The “expanded” prop is used to one-off change the local state. // It's used in the thread view when unfolding/re-folding all CWs at once. if (nextProps.expanded !== prevState.expandedProp && nextProps.expanded !== undefined ) { update.isExpanded = nextProps.expanded; updated = true; } if (prevState.isExpanded === undefined && update.isExpanded === undefined) { update.isExpanded = autoUnfoldCW(nextProps.settings, nextProps.status); updated = true; } if (nextProps.settings.getIn(['media', 'reveal_behind_cw']) !== prevState.revealBehindCW) { update.revealBehindCW = nextProps.settings.getIn(['media', 'reveal_behind_cw']); if (update.revealBehindCW) { update.showMedia = defaultMediaVisibility(nextProps.status, nextProps.settings); } updated = true; } return updated ? update : null; } componentDidMount () { const { node } = this; // Prevent a crash when node is undefined. Not completely sure why this // happens, might be because status === null. if (node === undefined) return; // Hack to fix timeline jumps when a preview card is fetched this.setState({ showCard: !this.props.muted && !this.props.hidden && this.props.status && this.props.status.get('card') && this.props.settings.get('inline_preview_cards'), }); } // Hack to fix timeline jumps on second rendering when auto-collapsing // or on subsequent rendering when a preview card has been fetched getSnapshotBeforeUpdate() { if (!this.props.getScrollPosition) return null; const { muted, hidden, status, settings } = this.props; const doShowCard = !muted && !hidden && status && status.get('card') && settings.get('inline_preview_cards'); if (doShowCard && !this.state.showCard) { if (doShowCard) this.setState({ showCard: true }); return this.props.getScrollPosition(); } else { return null; } } componentDidUpdate(prevProps, _prevState, snapshot) { if (snapshot !== null && this.props.updateScrollBottom && this.node.offsetTop < snapshot.top) { this.props.updateScrollBottom(snapshot.height - snapshot.top); } // This will potentially cause a wasteful redraw, but in most cases `Status` components are used // with a `key` directly depending on their `id`, preventing re-use of the component across // different IDs. // But just in case this does change, reset the state on status change. if (this.props.status?.get('id') !== prevProps.status?.get('id')) { this.setState({ showMedia: defaultMediaVisibility(this.props.status, this.props.settings) && !(this.context?.hideMediaByDefault), forceFilter: undefined, }); } } componentWillUnmount() { if (this.node && this.props.getScrollPosition) { const position = this.props.getScrollPosition(); if (position !== null && this.node.offsetTop < position.top) { requestAnimationFrame(() => { this.props.updateScrollBottom(position.height - position.top); }); } } } setExpansion = (value) => { if (this.props.settings.getIn(['content_warnings', 'shared_state']) && this.props.status.get('hidden') === value) { this.props.onToggleHidden(this.props.status); } this.setState({ isExpanded: value }); }; handleToggleMediaVisibility = () => { this.setState({ showMedia: !this.state.showMedia }); }; handleClick = e => { if (e && (e.button !== 0 || e.ctrlKey || e.metaKey)) { return; } if (e) { e.preventDefault(); } this.handleHotkeyOpen(); }; handleAccountClick = (e, proper = true) => { if (e && (e.button !== 0 || e.ctrlKey || e.metaKey)) { return; } if (e) { e.preventDefault(); e.stopPropagation(); } this._openProfile(proper); }; handleExpandedToggle = () => { if (this.props.settings.getIn(['content_warnings', 'shared_state'])) { this.props.onToggleHidden(this.props.status); } else if (this.props.status.get('spoiler_text')) { this.setExpansion(!this.state.isExpanded); } }; handleOpenVideo = (options) => { const { status } = this.props; const lang = status.getIn(['translation', 'language']) || status.get('language'); this.props.onOpenVideo(status.get('id'), status.getIn(['media_attachments', 0]), lang, options); }; handleOpenMedia = (media, index) => { const { status } = this.props; const lang = status.getIn(['translation', 'language']) || status.get('language'); this.props.onOpenMedia(status.get('id'), media, index, lang); }; handleHotkeyOpenMedia = e => { const { status, onOpenMedia, onOpenVideo } = this.props; const statusId = status.get('id'); e.preventDefault(); if (status.get('media_attachments').size > 0) { const lang = status.getIn(['translation', 'language']) || status.get('language'); if (status.getIn(['media_attachments', 0, 'type']) === 'video') { onOpenVideo(statusId, status.getIn(['media_attachments', 0]), lang, { startTime: 0 }); } else { onOpenMedia(statusId, status.get('media_attachments'), 0, lang); } } }; handleDeployPictureInPicture = (type, mediaProps) => { const { deployPictureInPicture, status } = this.props; deployPictureInPicture(status, type, mediaProps); }; handleHotkeyReply = e => { e.preventDefault(); this.props.onReply(this.props.status); }; handleHotkeyFavourite = (e) => { this.props.onFavourite(this.props.status, e); }; handleHotkeyBoost = e => { this.props.onReblog(this.props.status, e); }; handleHotkeyBookmark = e => { this.props.onBookmark(this.props.status, e); }; handleHotkeyMention = e => { e.preventDefault(); this.props.onMention(this.props.status.get('account')); }; handleHotkeyOpen = () => { if (this.props.onClick) { this.props.onClick(); return; } const { history } = this.props; const status = this.props.status; if (!history) { return; } history.push(`/@${status.getIn(['account', 'acct'])}/${status.get('id')}`); }; handleHotkeyOpenProfile = () => { this._openProfile(); }; _openProfile = () => { const { history } = this.props; const status = this.props.status; if (!history) { return; } history.push(`/@${status.getIn(['account', 'acct'])}`); }; handleHotkeyMoveUp = e => { this.props.onMoveUp(this.props.containerId || this.props.id, e.target.getAttribute('data-featured')); }; handleHotkeyMoveDown = e => { this.props.onMoveDown(this.props.containerId || this.props.id, e.target.getAttribute('data-featured')); }; handleHotkeyToggleSensitive = () => { this.handleToggleMediaVisibility(); }; handleUnfilterClick = e => { this.setState({ forceFilter: false }); e.preventDefault(); }; handleFilterClick = () => { this.setState({ forceFilter: true }); }; handleRef = c => { this.node = c; }; handleCollapsedToggle = isCollapsed => { this.props.onToggleCollapsed(this.props.status, isCollapsed); }; handleTranslate = () => { this.props.onTranslate(this.props.status); }; renderLoadingMediaGallery () { return
; } renderLoadingVideoPlayer () { return
; } renderLoadingAudioPlayer () { return
; } render () { const { intl, hidden, featured, unfocusable, unread, pictureInPicture, previousId, nextInReplyToId, rootId, skipPrepend, avatarSize = 46 } = this.props; const { status, account, settings, muted, intersectionObserverWrapper, onOpenVideo, onOpenMedia, notification, history, ...other } = this.props; let attachments = null; // Depending on user settings, some media are considered as parts of the // contents (affected by CW) while other will be displayed outside of the // CW. let contentMedia = []; let contentMediaIcons = []; let extraMedia = []; let extraMediaIcons = []; let media = contentMedia; let mediaIcons = contentMediaIcons; let statusAvatar; if (settings.getIn(['content_warnings', 'media_outside'])) { media = extraMedia; mediaIcons = extraMediaIcons; } if (status === null) { return null; } const isExpanded = settings.getIn(['content_warnings', 'shared_state']) ? !status.get('hidden') : this.state.isExpanded; const handlers = { reply: this.handleHotkeyReply, favourite: this.handleHotkeyFavourite, boost: this.handleHotkeyBoost, mention: this.handleHotkeyMention, open: this.handleHotkeyOpen, openProfile: this.handleHotkeyOpenProfile, moveUp: this.handleHotkeyMoveUp, moveDown: this.handleHotkeyMoveDown, toggleHidden: this.handleExpandedToggle, bookmark: this.handleHotkeyBookmark, toggleSensitive: this.handleHotkeyToggleSensitive, openMedia: this.handleHotkeyOpenMedia, }; let prepend, rebloggedByText; const connectUp = previousId && previousId === status.get('in_reply_to_id'); const connectToRoot = rootId && rootId === status.get('in_reply_to_id'); const connectReply = nextInReplyToId && nextInReplyToId === status.get('id'); const matchedFilters = status.get('matched_filters'); if (hidden) { return (
{status.getIn(['account', 'display_name']) || status.getIn(['account', 'username'])} {status.get('spoiler_text').length > 0 && ({status.get('spoiler_text')})} {isExpanded && {status.get('content')}}
); } if (this.state.forceFilter === undefined ? matchedFilters : this.state.forceFilter) { const minHandlers = this.props.muted ? {} : { moveUp: this.handleHotkeyMoveUp, moveDown: this.handleHotkeyMoveDown, }; return (
: {matchedFilters.join(', ')}. {' '}
); } // This handles our media attachments. // If a media file is of unknwon type or if the status is muted // (notification), we show a list of links instead of embedded media. attachments = status.get('media_attachments'); if (pictureInPicture.get('inUse')) { media.push(); mediaIcons.push('video-camera'); } else if (attachments.size > 0) { const language = status.getIn(['translation', 'language']) || status.get('language'); if (muted || attachments.some(item => item.get('type') === 'unknown')) { media.push( , ); } else if (['image', 'gifv', 'unknown'].includes(status.getIn(['media_attachments', 0, 'type'])) || status.get('media_attachments').size > 1) { media.push( {Component => ( , ); mediaIcons.push('picture-o'); } else if (attachments.getIn([0, 'type']) === 'audio') { const attachment = status.getIn(['media_attachments', 0]); const description = attachment.getIn(['translation', 'description']) || attachment.get('description'); media.push( {Component => ( )} , ); mediaIcons.push('music'); } else if (attachments.getIn([0, 'type']) === 'video') { const attachment = status.getIn(['media_attachments', 0]); const description = attachment.getIn(['translation', 'description']) || attachment.get('description'); media.push( {Component => ()} , ); mediaIcons.push('video-camera'); } } else if (status.get('card') && settings.get('inline_preview_cards') && !this.props.muted) { media.push( , ); mediaIcons.push('link'); } if (status.get('poll')) { const language = status.getIn(['translation', 'language']) || status.get('language'); contentMedia.push(); contentMediaIcons.push('tasks'); } // Here we prepare extra data-* attributes for CSS selectors. // Users can use those for theming, hiding avatars etc via UserStyle const selectorAttribs = { 'data-status-by': `@${status.getIn(['account', 'acct'])}`, }; if (this.props.prepend && account) { const notifKind = { favourite: 'favourited', reblog: 'boosted', reblogged_by: 'boosted', status: 'posted', }[this.props.prepend]; selectorAttribs[`data-${notifKind}-by`] = `@${account.get('acct')}`; prepend = ( ); } if (this.props.prepend === 'reblog') { rebloggedByText = intl.formatMessage({ id: 'status.reblogged_by', defaultMessage: '{name} boosted' }, { name: account.get('acct') }); } if (account === undefined || account === null) { statusAvatar = ; } else { statusAvatar = ; } const {statusContentProps, hashtagBar} = getHashtagBarForStatus(status); contentMedia.push(hashtagBar); return (
{!skipPrepend && prepend}
{(connectReply || connectUp || connectToRoot) &&
} {(!muted) && ( /* eslint-disable-next-line jsx-a11y/no-static-element-interactions */
{statusAvatar}
)} {notification && ( )}
); } } export default withOptionalRouter(injectIntl(Status));