diff options
| author | Shpuld Shpuldson <shpuld@gmail.com> | 2017-08-24 09:34:09 -0400 |
|---|---|---|
| committer | Shpuld Shpuldson <shpuld@gmail.com> | 2017-08-24 09:34:09 -0400 |
| commit | 205024ba9dec4b3baf3ae20636fb6c8eb680d11d (patch) | |
| tree | e495e83863b7a91f69e3ba1aefe3f4c89d4261a8 /src | |
| parent | 8778270381c6f2fffdf1c6a5eb09448a787aebd7 (diff) | |
| parent | 7061675e9664e49278758f1bfa022b8b07fe3053 (diff) | |
Merge branch 'feature/post-status-clear-error-message' into 'develop'
Feature/post status clear error message
See merge request !108
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 13 | ||||
| -rw-r--r-- | src/components/post_status_form/post_status_form.vue | 2 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index af5b81d4..86bf2fa7 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -88,6 +88,16 @@ const PostStatusForm = { }, postStatus (newStatus) { if (this.posting) { return } + + if (this.newStatus.status === '') { + if (this.newStatus.files.length > 0) { + this.newStatus.status = '\u200b' // hack + } else { + this.error = 'Cannot post an empty status with no files' + return + } + } + this.posting = true statusPoster.postStatus({ status: newStatus.status, @@ -142,6 +152,9 @@ const PostStatusForm = { if (e.target.value === '') { e.target.style.height = '16px' } + }, + clearError () { + this.error = null } } } diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index e775c45e..ec479215 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -22,6 +22,7 @@ </div> <div class='error' v-if="error"> Error: {{ error }} + <i class="icon-cancel" @click="clearError"></i> </div> <div class="attachments"> <div class="attachment" v-for="file in newStatus.files"> @@ -71,6 +72,7 @@ background-color: rgba(255, 48, 16, 0.65); padding: 0.25em; margin: 0.35em; + display: flex; } .attachments { |
