Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mastodon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pierre Boudes
mastodon
Commits
68775b60
Unverified
Commit
68775b60
authored
4 years ago
by
Mélanie Chauvel
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix character count not ignoring hidden CW field (#15236)
parent
b429d33e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/javascript/mastodon/features/compose/components/compose_form.js
+16
-10
16 additions, 10 deletions
...ript/mastodon/features/compose/components/compose_form.js
with
16 additions
and
10 deletions
app/javascript/mastodon/features/compose/components/compose_form.js
+
16
−
10
View file @
68775b60
...
...
@@ -77,6 +77,18 @@ class ComposeForm extends ImmutablePureComponent {
}
}
getFulltextForCharacterCounting
=
()
=>
{
return
[
this
.
props
.
spoiler
?
this
.
props
.
spoilerText
:
''
,
countableText
(
this
.
props
.
text
)].
join
(
''
);
}
canSubmit
=
()
=>
{
const
{
isSubmitting
,
isChangingUpload
,
isUploading
,
anyMedia
}
=
this
.
props
;
const
fulltext
=
this
.
getFulltextForCharacterCounting
();
const
isOnlyWhitespace
=
fulltext
.
length
!==
0
&&
fulltext
.
trim
().
length
===
0
;
return
!
(
isSubmitting
||
isUploading
||
isChangingUpload
||
length
(
fulltext
)
>
500
||
(
isOnlyWhitespace
&&
!
anyMedia
));
}
handleSubmit
=
()
=>
{
if
(
this
.
props
.
text
!==
this
.
autosuggestTextarea
.
textarea
.
value
)
{
// Something changed the text inside the textarea (e.g. browser extensions like Grammarly)
...
...
@@ -84,11 +96,7 @@ class ComposeForm extends ImmutablePureComponent {
this
.
props
.
onChange
(
this
.
autosuggestTextarea
.
textarea
.
value
);
}
// Submit disabled:
const
{
isSubmitting
,
isChangingUpload
,
isUploading
,
anyMedia
}
=
this
.
props
;
const
fulltext
=
[
this
.
props
.
spoilerText
,
countableText
(
this
.
props
.
text
)].
join
(
''
);
if
(
isSubmitting
||
isUploading
||
isChangingUpload
||
length
(
fulltext
)
>
500
||
(
fulltext
.
length
!==
0
&&
fulltext
.
trim
().
length
===
0
&&
!
anyMedia
))
{
if
(
!
this
.
canSubmit
())
{
return
;
}
...
...
@@ -178,10 +186,8 @@ class ComposeForm extends ImmutablePureComponent {
}
render
()
{
const
{
intl
,
onPaste
,
showSearch
,
anyMedia
}
=
this
.
props
;
const
{
intl
,
onPaste
,
showSearch
}
=
this
.
props
;
const
disabled
=
this
.
props
.
isSubmitting
;
const
text
=
[
this
.
props
.
spoilerText
,
countableText
(
this
.
props
.
text
)].
join
(
''
);
const
disabledButton
=
disabled
||
this
.
props
.
isUploading
||
this
.
props
.
isChangingUpload
||
length
(
text
)
>
500
||
(
text
.
length
!==
0
&&
text
.
trim
().
length
===
0
&&
!
anyMedia
);
let
publishText
=
''
;
if
(
this
.
props
.
privacy
===
'
private
'
||
this
.
props
.
privacy
===
'
direct
'
)
{
...
...
@@ -243,11 +249,11 @@ class ComposeForm extends ImmutablePureComponent {
<
PrivacyDropdownContainer
/>
<
SpoilerButtonContainer
/>
<
/div
>
<
div
className
=
'
character-counter__wrapper
'
><
CharacterCounter
max
=
{
500
}
text
=
{
t
ext
}
/></
div
>
<
div
className
=
'
character-counter__wrapper
'
><
CharacterCounter
max
=
{
500
}
text
=
{
t
his
.
getFulltextForCharacterCounting
()
}
/></
div
>
<
/div
>
<
div
className
=
'
compose-form__publish
'
>
<
div
className
=
'
compose-form__publish-button-wrapper
'
><
Button
text
=
{
publishText
}
onClick
=
{
this
.
handleSubmit
}
disabled
=
{
disabledButton
}
block
/><
/div
>
<
div
className
=
'
compose-form__publish-button-wrapper
'
><
Button
text
=
{
publishText
}
onClick
=
{
this
.
handleSubmit
}
disabled
=
{
!
this
.
canSubmit
()
}
block
/><
/div
>
<
/div
>
<
/div
>
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment