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
ec487166
Commit
ec487166
authored
7 years ago
by
Nolan Lawson
Committed by
Eugen Rochko
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Directly use <Motion/> if not reducing motion (#5546)
parent
37b267e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/javascript/mastodon/features/ui/util/optional_motion.js
+3
-47
3 additions, 47 deletions
app/javascript/mastodon/features/ui/util/optional_motion.js
app/javascript/mastodon/features/ui/util/reduced_motion.js
+44
-0
44 additions, 0 deletions
app/javascript/mastodon/features/ui/util/reduced_motion.js
with
47 additions
and
47 deletions
app/javascript/mastodon/features/ui/util/optional_motion.js
+
3
−
47
View file @
ec487166
// Like react-motion's Motion, but checks to see if the user prefers
// reduced motion and uses a cross-fade in those cases.
import
React
from
'
react
'
;
import
Motion
from
'
react-motion/lib/Motion
'
;
import
PropTypes
from
'
prop-types
'
;
import
{
reduceMotion
}
from
'
../../../initial_state
'
;
import
ReducedMotion
from
'
./reduced_motion
'
;
import
Motion
from
'
react-motion/lib/Motion
'
;
const
stylesToKeep
=
[
'
opacity
'
,
'
backgroundOpacity
'
];
const
extractValue
=
(
value
)
=>
{
// This is either an object with a "val" property or it's a number
return
(
typeof
value
===
'
object
'
&&
value
&&
'
val
'
in
value
)
?
value
.
val
:
value
;
};
class
OptionalMotion
extends
React
.
Component
{
static
propTypes
=
{
defaultStyle
:
PropTypes
.
object
,
style
:
PropTypes
.
object
,
children
:
PropTypes
.
func
,
}
render
()
{
const
{
style
,
defaultStyle
,
children
}
=
this
.
props
;
if
(
reduceMotion
)
{
Object
.
keys
(
style
).
forEach
(
key
=>
{
if
(
stylesToKeep
.
includes
(
key
))
{
return
;
}
// If it's setting an x or height or scale or some other value, we need
// to preserve the end-state value without actually animating it
style
[
key
]
=
defaultStyle
[
key
]
=
extractValue
(
style
[
key
]);
});
}
return
(
<
Motion
style
=
{
style
}
defaultStyle
=
{
defaultStyle
}
>
{
children
}
<
/Motion
>
);
}
}
export
default
OptionalMotion
;
export
default
reduceMotion
?
ReducedMotion
:
Motion
;
This diff is collapsed.
Click to expand it.
app/javascript/mastodon/features/ui/util/reduced_motion.js
0 → 100644
+
44
−
0
View file @
ec487166
// Like react-motion's Motion, but reduces all animations to cross-fades
// for the benefit of users with motion sickness.
import
React
from
'
react
'
;
import
Motion
from
'
react-motion/lib/Motion
'
;
import
PropTypes
from
'
prop-types
'
;
const
stylesToKeep
=
[
'
opacity
'
,
'
backgroundOpacity
'
];
const
extractValue
=
(
value
)
=>
{
// This is either an object with a "val" property or it's a number
return
(
typeof
value
===
'
object
'
&&
value
&&
'
val
'
in
value
)
?
value
.
val
:
value
;
};
class
ReducedMotion
extends
React
.
Component
{
static
propTypes
=
{
defaultStyle
:
PropTypes
.
object
,
style
:
PropTypes
.
object
,
children
:
PropTypes
.
func
,
}
render
()
{
const
{
style
,
defaultStyle
,
children
}
=
this
.
props
;
Object
.
keys
(
style
).
forEach
(
key
=>
{
if
(
stylesToKeep
.
includes
(
key
))
{
return
;
}
// If it's setting an x or height or scale or some other value, we need
// to preserve the end-state value without actually animating it
style
[
key
]
=
defaultStyle
[
key
]
=
extractValue
(
style
[
key
]);
});
return
(
<
Motion
style
=
{
style
}
defaultStyle
=
{
defaultStyle
}
>
{
children
}
<
/Motion
>
);
}
}
export
default
ReducedMotion
;
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