|
|
@ -7,7 +7,7 @@ import StatusIcons from './status_icons';
|
|
|
|
import StatusContent from './status_content';
|
|
|
|
import StatusContent from './status_content';
|
|
|
|
import StatusActionBar from './status_action_bar';
|
|
|
|
import StatusActionBar from './status_action_bar';
|
|
|
|
import AttachmentList from './attachment_list';
|
|
|
|
import AttachmentList from './attachment_list';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
import { injectIntl, FormattedMessage } from 'react-intl';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
import { MediaGallery, Video } from 'flavours/glitch/util/async-components';
|
|
|
|
import { MediaGallery, Video } from 'flavours/glitch/util/async-components';
|
|
|
|
import { HotKeys } from 'react-hotkeys';
|
|
|
|
import { HotKeys } from 'react-hotkeys';
|
|
|
@ -19,6 +19,24 @@ import { autoUnfoldCW } from 'flavours/glitch/util/content_warning';
|
|
|
|
// to use the progress bar to show download progress
|
|
|
|
// to use the progress bar to show download progress
|
|
|
|
import Bundle from '../features/ui/components/bundle';
|
|
|
|
import Bundle from '../features/ui/components/bundle';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const textForScreenReader = (intl, status, rebloggedByText = false, expanded = false) => {
|
|
|
|
|
|
|
|
const displayName = status.getIn(['account', 'display_name']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const values = [
|
|
|
|
|
|
|
|
displayName.length === 0 ? status.getIn(['account', 'acct']).split('@')[0] : displayName,
|
|
|
|
|
|
|
|
status.get('spoiler_text') && !expanded ? status.get('spoiler_text') : status.get('search_index').slice(status.get('spoiler_text').length),
|
|
|
|
|
|
|
|
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(', ');
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@injectIntl
|
|
|
|
export default class Status extends ImmutablePureComponent {
|
|
|
|
export default class Status extends ImmutablePureComponent {
|
|
|
|
|
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
static contextTypes = {
|
|
|
@ -52,6 +70,7 @@ export default class Status extends ImmutablePureComponent {
|
|
|
|
getScrollPosition: PropTypes.func,
|
|
|
|
getScrollPosition: PropTypes.func,
|
|
|
|
updateScrollBottom: PropTypes.func,
|
|
|
|
updateScrollBottom: PropTypes.func,
|
|
|
|
expanded: PropTypes.bool,
|
|
|
|
expanded: PropTypes.bool,
|
|
|
|
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
state = {
|
|
|
|
state = {
|
|
|
@ -337,6 +356,7 @@ export default class Status extends ImmutablePureComponent {
|
|
|
|
} = this;
|
|
|
|
} = this;
|
|
|
|
const { router } = this.context;
|
|
|
|
const { router } = this.context;
|
|
|
|
const {
|
|
|
|
const {
|
|
|
|
|
|
|
|
intl,
|
|
|
|
status,
|
|
|
|
status,
|
|
|
|
account,
|
|
|
|
account,
|
|
|
|
settings,
|
|
|
|
settings,
|
|
|
@ -473,6 +493,12 @@ export default class Status extends ImmutablePureComponent {
|
|
|
|
selectorAttribs[`data-${notifKind}-by`] = `@${account.get('acct')}`;
|
|
|
|
selectorAttribs[`data-${notifKind}-by`] = `@${account.get('acct')}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let rebloggedByText;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (prepend === 'reblog') {
|
|
|
|
|
|
|
|
rebloggedByText = intl.formatMessage({ id: 'status.reblogged_by', defaultMessage: '{name} boosted' }, { name: account.get('acct') });
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const handlers = {
|
|
|
|
const handlers = {
|
|
|
|
reply: this.handleHotkeyReply,
|
|
|
|
reply: this.handleHotkeyReply,
|
|
|
|
favourite: this.handleHotkeyFavourite,
|
|
|
|
favourite: this.handleHotkeyFavourite,
|
|
|
@ -501,6 +527,7 @@ export default class Status extends ImmutablePureComponent {
|
|
|
|
ref={handleRef}
|
|
|
|
ref={handleRef}
|
|
|
|
tabIndex='0'
|
|
|
|
tabIndex='0'
|
|
|
|
data-featured={featured ? 'true' : null}
|
|
|
|
data-featured={featured ? 'true' : null}
|
|
|
|
|
|
|
|
aria-label={textForScreenReader(intl, status, rebloggedByText, !status.get('hidden'))}
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<header className='status__info'>
|
|
|
|
<header className='status__info'>
|
|
|
|
<span>
|
|
|
|
<span>
|
|
|
|