From cb217444b842ac2952acdd83844b5440ebe36209 Mon Sep 17 00:00:00 2001 From: ThibG Date: Wed, 6 Mar 2019 15:09:18 +0100 Subject: [PATCH 1/3] Disable file upload when there is a poll (#10195) --- app/javascript/mastodon/actions/compose.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/javascript/mastodon/actions/compose.js b/app/javascript/mastodon/actions/compose.js index 2d58a71fe..da7bd3cb0 100644 --- a/app/javascript/mastodon/actions/compose.js +++ b/app/javascript/mastodon/actions/compose.js @@ -60,6 +60,7 @@ export const COMPOSE_POLL_SETTINGS_CHANGE = 'COMPOSE_POLL_SETTINGS_CHANGE'; const messages = defineMessages({ uploadErrorLimit: { id: 'upload_error.limit', defaultMessage: 'File upload limit exceeded.' }, + uploadErrorPoll: { id: 'upload_error.poll', defaultMessage: 'File upload not allowed with polls.' }, }); export function changeCompose(text) { @@ -207,6 +208,12 @@ export function uploadCompose(files) { dispatch(showAlert(undefined, messages.uploadErrorLimit)); return; } + + if (getState().getIn(['compose', 'poll'])) { + dispatch(showAlert(undefined, messages.uploadErrorPoll)); + return; + } + dispatch(uploadComposeRequest()); for (const [i, f] of Array.from(files).entries()) { From b3668a79eca2d185ea57a9ffc2fa012db52e49f0 Mon Sep 17 00:00:00 2001 From: ThibG Date: Wed, 6 Mar 2019 15:10:32 +0100 Subject: [PATCH 2/3] Disable the underlying button element when an ItemButton is disabled (#10194) Fixes #10191 --- app/javascript/mastodon/components/icon_button.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/javascript/mastodon/components/icon_button.js b/app/javascript/mastodon/components/icon_button.js index fbb42f78f..9d8a8d06b 100644 --- a/app/javascript/mastodon/components/icon_button.js +++ b/app/javascript/mastodon/components/icon_button.js @@ -86,6 +86,7 @@ export default class IconButton extends React.PureComponent { onClick={this.handleClick} style={style} tabIndex={tabIndex} + disabled={disabled} >