forked from AkkomaGang/akkoma-fe
Merge branch 'feature/forbid-posting-when-status-length-is-over-the-limit' into 'develop'
Disable the status submit button when status length is over the limit See merge request pleroma/pleroma-fe!206
This commit is contained in:
commit
e45cb91e24
2 changed files with 6 additions and 1 deletions
|
@ -106,6 +106,9 @@ const PostStatusForm = {
|
|||
},
|
||||
charactersLeft () {
|
||||
return this.statusLengthLimit - this.statusLength
|
||||
},
|
||||
isOverLengthLimit () {
|
||||
return this.hasStatusLengthLimit && (this.statusLength > this.statusLengthLimit)
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
|
@ -19,9 +19,11 @@
|
|||
<div class='form-bottom'>
|
||||
<media-upload @uploading="disableSubmit" @uploaded="addMediaFile" @upload-failed="enableSubmit" :drop-files="dropFiles"></media-upload>
|
||||
|
||||
<p v-if="hasStatusLengthLimit" class="base04">{{ charactersLeft }}</p>
|
||||
<p v-if="isOverLengthLimit" class="error">{{ charactersLeft }}</p>
|
||||
<p v-else-if="hasStatusLengthLimit" class="base04">{{ charactersLeft }}</p>
|
||||
|
||||
<button v-if="posting" disabled class="btn btn-default base05 base02-background">{{$t('post_status.posting')}}</button>
|
||||
<button v-else-if="isOverLengthLimit" disabled class="btn btn-default base05 base02-background">{{$t('general.submit')}}</button>
|
||||
<button v-else :disabled="submitDisabled" type="submit" class="btn btn-default base05 base02-background">{{$t('general.submit')}}</button>
|
||||
</div>
|
||||
<div class='error' v-if="error">
|
||||
|
|
Loading…
Reference in a new issue