aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlambda <pleromagit@rogerbraun.net>2018-11-07 22:15:47 +0000
committerlambda <pleromagit@rogerbraun.net>2018-11-07 22:15:47 +0000
commita1962a610aa44a0dae20378889a29311af5b8fd4 (patch)
tree7314344869eeda106365a5fd4a20b19ee855790b /src
parent2f11ec296ec9540c164f88341663d4000b943c82 (diff)
parent6f668df6976d7210a9768931b5f4b58994289479 (diff)
Merge branch '153-count-cw' into 'develop'
Resolve "PleromaFE does not count the Content Warning into Post length" Closes #153 and #135 See merge request pleroma/pleroma-fe!371
Diffstat (limited to 'src')
-rw-r--r--src/components/post_status_form/post_status_form.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js
index a84e764c..af7d8810 100644
--- a/src/components/post_status_form/post_status_form.js
+++ b/src/components/post_status_form/post_status_form.js
@@ -53,7 +53,7 @@ const PostStatusForm = {
posting: false,
highlighted: 0,
newStatus: {
- spoilerText: this.subject,
+ spoilerText: this.subject || '',
status: statusText,
contentType: 'text/plain',
nsfw: false,
@@ -128,6 +128,9 @@ const PostStatusForm = {
statusLength () {
return this.newStatus.status.length
},
+ spoilerTextLength () {
+ return this.newStatus.spoilerText.length
+ },
statusLengthLimit () {
return this.$store.state.instance.textlimit
},
@@ -135,10 +138,10 @@ const PostStatusForm = {
return this.statusLengthLimit > 0
},
charactersLeft () {
- return this.statusLengthLimit - this.statusLength
+ return this.statusLengthLimit - (this.statusLength + this.spoilerTextLength)
},
isOverLengthLimit () {
- return this.hasStatusLengthLimit && (this.statusLength > this.statusLengthLimit)
+ return this.hasStatusLengthLimit && (this.charactersLeft < 0)
},
scopeOptionsEnabled () {
return this.$store.state.instance.scopeOptionsEnabled