Merge pull request #410 from ThibG/glitch-soc/fixes/compose-disable

[Glitch] Fix: Prevent submission using same logic as submit button disabling
This commit is contained in:
David Yip 2018-04-02 14:42:09 -05:00 committed by GitHub
commit 1f5bdd8445
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -150,6 +150,9 @@ const handlers = {
const {
onChangeText,
onSubmit,
isSubmitting,
isUploading,
anyMedia,
text,
} = this.props;
@ -159,6 +162,11 @@ const handlers = {
onChangeText(value);
}
// Submit disabled:
if (isSubmitting || isUploading || (!!text.length && !text.trim().length && !anyMedia)) {
return;
}
// Submits the status.
if (onSubmit) {
onSubmit();