[Glitch] Fix: Prevent submission using same logic as submit button disabling.
Port 6a895e1ab3 to glitch-soc
			
			
This commit is contained in:
		
							parent
							
								
									eb39db7f93
								
							
						
					
					
						commit
						ca9f022a80
					
				
					 1 changed files with 8 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -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();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue