mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-20 03:25:17 +01:00
Change media to be hidden/blurred by default in report modal (#28522)
This commit is contained in:
parent
fcfdeadc04
commit
6374358357
@ -15,6 +15,7 @@ export default class MediaAttachments extends ImmutablePureComponent {
|
|||||||
lang: PropTypes.string,
|
lang: PropTypes.string,
|
||||||
height: PropTypes.number,
|
height: PropTypes.number,
|
||||||
width: PropTypes.number,
|
width: PropTypes.number,
|
||||||
|
visible: PropTypes.bool,
|
||||||
};
|
};
|
||||||
|
|
||||||
static defaultProps = {
|
static defaultProps = {
|
||||||
@ -51,7 +52,7 @@ export default class MediaAttachments extends ImmutablePureComponent {
|
|||||||
};
|
};
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
const { status, width, height } = this.props;
|
const { status, width, height, visible } = this.props;
|
||||||
const mediaAttachments = status.get('media_attachments');
|
const mediaAttachments = status.get('media_attachments');
|
||||||
const language = status.getIn(['language', 'translation']) || status.get('language') || this.props.lang;
|
const language = status.getIn(['language', 'translation']) || status.get('language') || this.props.lang;
|
||||||
|
|
||||||
@ -99,6 +100,7 @@ export default class MediaAttachments extends ImmutablePureComponent {
|
|||||||
height={height}
|
height={height}
|
||||||
inline
|
inline
|
||||||
sensitive={status.get('sensitive')}
|
sensitive={status.get('sensitive')}
|
||||||
|
visible={visible}
|
||||||
onOpenVideo={noop}
|
onOpenVideo={noop}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
@ -113,6 +115,7 @@ export default class MediaAttachments extends ImmutablePureComponent {
|
|||||||
lang={language}
|
lang={language}
|
||||||
sensitive={status.get('sensitive')}
|
sensitive={status.get('sensitive')}
|
||||||
defaultWidth={width}
|
defaultWidth={width}
|
||||||
|
visible={visible}
|
||||||
height={height}
|
height={height}
|
||||||
onOpenMedia={noop}
|
onOpenMedia={noop}
|
||||||
/>
|
/>
|
||||||
|
@ -47,7 +47,7 @@ class StatusCheckBox extends PureComponent {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<StatusContent status={status} />
|
<StatusContent status={status} />
|
||||||
<MediaAttachments status={status} />
|
<MediaAttachments status={status} visible={false} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user