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
dd4eec6b
Unverified
Commit
dd4eec6b
authored
5 years ago
by
Eugen Rochko
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add animations to announcement reactions (#12970)
parent
42d2a915
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/getting_started/components/announcements.js
+38
-16
38 additions, 16 deletions
...odon/features/getting_started/components/announcements.js
with
38 additions
and
16 deletions
app/javascript/mastodon/features/getting_started/components/announcements.js
+
38
−
16
View file @
dd4eec6b
...
...
@@ -6,13 +6,15 @@ import PropTypes from 'prop-types';
import
IconButton
from
'
mastodon/components/icon_button
'
;
import
Icon
from
'
mastodon/components/icon
'
;
import
{
defineMessages
,
injectIntl
,
FormattedMessage
,
FormattedDate
}
from
'
react-intl
'
;
import
{
autoPlayGif
}
from
'
mastodon/initial_state
'
;
import
{
autoPlayGif
,
reduceMotion
}
from
'
mastodon/initial_state
'
;
import
elephantUIPlane
from
'
mastodon/../images/elephant_ui_plane.svg
'
;
import
{
mascot
}
from
'
mastodon/initial_state
'
;
import
unicodeMapping
from
'
mastodon/features/emoji/emoji_unicode_mapping_light
'
;
import
classNames
from
'
classnames
'
;
import
EmojiPickerDropdown
from
'
mastodon/features/compose/containers/emoji_picker_dropdown_container
'
;
import
AnimatedNumber
from
'
mastodon/components/animated_number
'
;
import
TransitionMotion
from
'
react-motion/lib/TransitionMotion
'
;
import
spring
from
'
react-motion/lib/spring
'
;
const
messages
=
defineMessages
({
close
:
{
id
:
'
lightbox.close
'
,
defaultMessage
:
'
Close
'
},
...
...
@@ -194,6 +196,7 @@ class Reaction extends ImmutablePureComponent {
addReaction
:
PropTypes
.
func
.
isRequired
,
removeReaction
:
PropTypes
.
func
.
isRequired
,
emojiMap
:
ImmutablePropTypes
.
map
.
isRequired
,
style
:
PropTypes
.
object
,
};
state
=
{
...
...
@@ -224,7 +227,7 @@ class Reaction extends ImmutablePureComponent {
}
return
(
<
button
className
=
{
classNames
(
'
reactions-bar__item
'
,
{
active
:
reaction
.
get
(
'
me
'
)
})}
onClick
=
{
this
.
handleClick
}
onMouseEnter
=
{
this
.
handleMouseEnter
}
onMouseLeave
=
{
this
.
handleMouseLeave
}
title
=
{
`:
${
shortCode
}
:`
}
>
<
button
className
=
{
classNames
(
'
reactions-bar__item
'
,
{
active
:
reaction
.
get
(
'
me
'
)
})}
onClick
=
{
this
.
handleClick
}
onMouseEnter
=
{
this
.
handleMouseEnter
}
onMouseLeave
=
{
this
.
handleMouseLeave
}
title
=
{
`:
${
shortCode
}
:`
}
style
=
{
this
.
props
.
style
}
>
<
span
className
=
'
reactions-bar__item__emoji
'
><
Emoji
hovered
=
{
this
.
state
.
hovered
}
emoji
=
{
reaction
.
get
(
'
name
'
)}
emojiMap
=
{
this
.
props
.
emojiMap
}
/></
span
>
<
span
className
=
'
reactions-bar__item__count
'
><
AnimatedNumber
value
=
{
reaction
.
get
(
'
count
'
)}
/></
span
>
<
/button
>
...
...
@@ -248,25 +251,44 @@ class ReactionsBar extends ImmutablePureComponent {
addReaction
(
announcementId
,
data
.
native
.
replace
(
/:/g
,
''
));
}
willEnter
()
{
return
{
scale
:
reduceMotion
?
1
:
0
};
}
willLeave
()
{
return
{
scale
:
reduceMotion
?
0
:
spring
(
0
,
{
stiffness
:
170
,
damping
:
26
})
};
}
render
()
{
const
{
reactions
}
=
this
.
props
;
const
visibleReactions
=
reactions
.
filter
(
x
=>
x
.
get
(
'
count
'
)
>
0
);
const
styles
=
visibleReactions
.
map
(
reaction
=>
({
key
:
reaction
.
get
(
'
name
'
),
data
:
reaction
,
style
:
{
scale
:
reduceMotion
?
1
:
spring
(
1
,
{
stiffness
:
150
,
damping
:
13
})
},
})).
toArray
();
return
(
<
div
className
=
{
classNames
(
'
reactions-bar
'
,
{
'
reactions-bar--empty
'
:
visibleReactions
.
isEmpty
()
})}
>
{
visibleReactions
.
map
(
reaction
=>
(
<
Reaction
key
=
{
reaction
.
get
(
'
name
'
)}
reaction
=
{
reaction
}
announcementId
=
{
this
.
props
.
announcementId
}
addReaction
=
{
this
.
props
.
addReaction
}
removeReaction
=
{
this
.
props
.
removeReaction
}
emojiMap
=
{
this
.
props
.
emojiMap
}
/
>
))}
{
visibleReactions
.
size
<
8
&&
<
EmojiPickerDropdown
onPickEmoji
=
{
this
.
handleEmojiPick
}
button
=
{
<
Icon
id
=
'
plus
'
/>
}
/>
}
<
/div
>
<
TransitionMotion
styles
=
{
styles
}
willEnter
=
{
this
.
willEnter
}
willLeave
=
{
this
.
willLeave
}
>
{
items
=>
(
<
div
className
=
{
classNames
(
'
reactions-bar
'
,
{
'
reactions-bar--empty
'
:
visibleReactions
.
isEmpty
()
})}
>
{
items
.
map
(({
key
,
data
,
style
})
=>
(
<
Reaction
key
=
{
key
}
reaction
=
{
data
}
style
=
{{
transform
:
`scale(
${
style
.
scale
}
)`
,
position
:
style
.
scale
<
0.5
?
'
absolute
'
:
'
static
'
}}
announcementId
=
{
this
.
props
.
announcementId
}
addReaction
=
{
this
.
props
.
addReaction
}
removeReaction
=
{
this
.
props
.
removeReaction
}
emojiMap
=
{
this
.
props
.
emojiMap
}
/
>
))}
{
visibleReactions
.
size
<
8
&&
<
EmojiPickerDropdown
onPickEmoji
=
{
this
.
handleEmojiPick
}
button
=
{
<
Icon
id
=
'
plus
'
/>
}
/>
}
<
/div
>
)}
<
/TransitionMotion
>
);
}
...
...
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