diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-06-07 18:38:07 +0200 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-11-19 16:41:28 -0600 |
commit | f98dfefb3503b7059b92ad272316b9c1f067383c (patch) | |
tree | 090852b3ec167062219a019b7f06d22ea2a5924b /app/javascript/flavours/glitch/features/status | |
parent | c28703fafd81161ff8da5e930ec56c3e1a58c20f (diff) |
Add option to display a warning before boosting toots lacking media descriptions
Diffstat (limited to 'app/javascript/flavours/glitch/features/status')
-rw-r--r-- | app/javascript/flavours/glitch/features/status/index.js | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/features/status/index.js b/app/javascript/flavours/glitch/features/status/index.js index 145a33fff..8722490d9 100644 --- a/app/javascript/flavours/glitch/features/status/index.js +++ b/app/javascript/flavours/glitch/features/status/index.js @@ -235,13 +235,17 @@ export default class Status extends ImmutablePureComponent { } handleReblogClick = (status, e) => { + const { settings, dispatch } = this.props; + if (status.get('reblogged')) { - this.props.dispatch(unreblog(status)); + dispatch(unreblog(status)); } else { - if ((e && e.shiftKey) || !boostModal) { + if (settings.get('confirm_boost_missing_media_description') && status.get('media_attachments').some(item => !item.get('description'))) { + dispatch(openModal('BOOST', { status, onReblog: this.handleModalReblog, missingMediaDescription: true })); + } else if ((e && e.shiftKey) || !boostModal) { this.handleModalReblog(status); } else { - this.props.dispatch(openModal('BOOST', { status, onReblog: this.handleModalReblog })); + dispatch(openModal('BOOST', { status, onReblog: this.handleModalReblog })); } } } |