Add status icon for local-only toots

This commit is contained in:
Thibaut Girka 2019-07-16 15:08:03 +02:00 committed by ThibG
parent 7db7cb31b1
commit 572009cf56
1 changed files with 7 additions and 0 deletions

View File

@ -18,6 +18,7 @@ const messages = defineMessages({
poll: { id: 'status.is_poll', defaultMessage: 'This toot is a poll' },
video: { id: 'status.has_video', defaultMessage: 'This toot features attached videos' },
audio: { id: 'status.has_audio', defaultMessage: 'This toot features attached audio files' },
localOnly: { id: 'status.local_only', defaultMessage: 'This toot is only visible from youre instance' },
});
@injectIntl
@ -79,6 +80,12 @@ export default class StatusIcons extends React.PureComponent {
title={intl.formatMessage(messages.inReplyTo)}
/>
) : null}
{status.get('local_only') &&
<i
className={`fa fa-fw fa-home`}
aria-hidden='true'
title={intl.formatMessage(messages.localOnly)}
/>}
{mediaIcon ? (
<i
className={`fa fa-fw fa-${mediaIcon} status__media-icon`}