├── .babelrc
├── .eslintrc
├── .github
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ └── feature_request.md
└── workflows
│ ├── master_motion-layout.yml
│ └── npmpublish.yml
├── .gitignore
├── CODE_OF_CONDUCT.md
├── LICENSE
├── README.md
├── docker-compose.yml
├── package-lock.json
├── package.json
├── rollup.config.js
├── src
├── components
│ ├── Elements
│ │ ├── BaseElement.jsx
│ │ ├── Div.jsx
│ │ ├── Image.jsx
│ │ └── Text.jsx
│ ├── Motion.jsx
│ ├── MotionForward.jsx
│ ├── MotionProvider.jsx
│ ├── MotionScene.Sources.jsx
│ ├── MotionScene.Targets.jsx
│ ├── MotionScene.jsx
│ ├── MotionScreen.jsx
│ └── RouterLink.jsx
├── hooks
│ ├── useFirstEffect.js
│ └── useMotion.js
├── index.js
├── state
│ ├── actions.js
│ ├── reducer.js
│ └── store.js
└── utils
│ ├── computeStyles.js
│ ├── constants.js
│ ├── globalContext.js
│ ├── keyframes.js
│ └── randomString.js
└── website
├── .gitignore
├── README.md
├── docs
├── RouterLink.md
├── animating.md
├── installation.md
├── motionLayoutProvider.md
├── motionScene.md
├── motionScreen.md
├── sharedElementDiv.md
├── sharedElementImage.md
├── sharedElementText.md
└── useMotion.md
├── docusaurus.config.js
├── package.json
├── sidebars.js
├── src
├── css
│ └── custom.css
└── pages
│ ├── components
│ ├── Button.jsx
│ ├── ButtonWhite.jsx
│ └── HomeDemo.jsx
│ ├── credits.js
│ ├── index.js
│ └── styles.module.css
└── static
└── img
├── favicon.ico
└── logo.png
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": [
3 | ["@babel/env", { "modules": false }],
4 | "@babel/react",
5 | "@babel/flow"
6 | ],
7 | "plugins": [
8 | [
9 | "@babel/plugin-proposal-class-properties",
10 | {
11 | "loose": false
12 | }
13 | ]
14 | ]
15 | }
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "parser": "babel-eslint",
3 | "extends": "airbnb",
4 | "env": {
5 | "es6": true
6 | },
7 | "plugins": [
8 | "react",
9 | "react-hooks"
10 | ],
11 | "parserOptions": {
12 | "sourceType": "module"
13 | },
14 | "rules": {
15 | "react-hooks/rules-of-hooks": "error",
16 | "react-hooks/exhaustive-deps": "warn",
17 | "import/no-unresolved": 0,
18 | "no-console": 0,
19 | "react/jsx-props-no-spreading": 0,
20 | "react/jsx-filename-extension": 0,
21 | "react/prop-types": 0,
22 | "jsx-a11y/alt-text": 0,
23 | "react/destructuring-assignment": 0,
24 | "object-curly-newline": 0
25 | },
26 | "globals": {
27 | "document": true,
28 | "window": true,
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report
3 | about: Create a report to help us improve
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Describe the bug**
11 | A clear and concise description of what the bug is.
12 |
13 | **To Reproduce**
14 | Steps to reproduce the behavior:
15 | 1. Go to '...'
16 | 2. Click on '....'
17 | 3. Scroll down to '....'
18 | 4. See error
19 |
20 | **Expected behavior**
21 | A clear and concise description of what you expected to happen.
22 |
23 | **Screenshots**
24 | If applicable, add screenshots to help explain your problem.
25 |
26 | **Desktop (please complete the following information):**
27 | - OS: [e.g. iOS]
28 | - Browser [e.g. chrome, safari]
29 | - Version [e.g. 22]
30 |
31 | **Smartphone (please complete the following information):**
32 | - Device: [e.g. iPhone6]
33 | - OS: [e.g. iOS8.1]
34 | - Browser [e.g. stock browser, safari]
35 | - Version [e.g. 22]
36 |
37 | **Additional context**
38 | Add any other context about the problem here.
39 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Is your feature request related to a problem? Please describe.**
11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12 |
13 | **Describe the solution you'd like**
14 | A clear and concise description of what you want to happen.
15 |
16 | **Describe alternatives you've considered**
17 | A clear and concise description of any alternative solutions or features you've considered.
18 |
19 | **Additional context**
20 | Add any other context or screenshots about the feature request here.
21 |
--------------------------------------------------------------------------------
/.github/workflows/master_motion-layout.yml:
--------------------------------------------------------------------------------
1 | # Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
2 | # More GitHub Actions for Azure: https://github.com/Azure/actions
3 |
4 | name: Website Deploy
5 |
6 | on:
7 | push:
8 | branches:
9 | - master
10 |
11 | jobs:
12 | build-and-deploy:
13 | runs-on: ubuntu-latest
14 |
15 | steps:
16 | - uses: actions/checkout@master
17 |
18 | - name: Set up Node.js version
19 | uses: actions/setup-node@v1
20 | with:
21 | node-version: '12.x'
22 |
23 | - name: npm install, build, and test
24 | run: |
25 | cd website
26 | npm install
27 | npm run build --if-present
28 | npm run test --if-present
29 |
30 | - name: 'Deploy to Azure Web App'
31 | uses: azure/webapps-deploy@v1
32 | with:
33 | app-name: 'motion-layout'
34 | slot-name: 'production'
35 | publish-profile: ${{ secrets.AzureAppService_PublishProfile_14fabb491e39459f842584f7a4b8c3b5 }}
36 | package: .
37 |
--------------------------------------------------------------------------------
/.github/workflows/npmpublish.yml:
--------------------------------------------------------------------------------
1 | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2 | # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3 |
4 | name: Node.js Package
5 |
6 | on:
7 | release:
8 | types: [created]
9 |
10 | jobs:
11 | build:
12 | runs-on: ubuntu-latest
13 | steps:
14 | - uses: actions/checkout@v2
15 | - uses: actions/setup-node@v1
16 | with:
17 | node-version: 12
18 | - run: npm ci
19 | - run: npm test
20 |
21 | publish-npm:
22 | needs: build
23 | runs-on: ubuntu-latest
24 | steps:
25 | - uses: actions/checkout@v2
26 | - uses: actions/setup-node@v1
27 | with:
28 | node-version: 12
29 | registry-url: https://registry.npmjs.org/
30 | - run: npm ci
31 | - run: npm publish
32 | env:
33 | NODE_AUTH_TOKEN: ${{secrets.npm_token}}
34 |
35 | publish-gpr:
36 | needs: build
37 | runs-on: ubuntu-latest
38 | steps:
39 | - uses: actions/checkout@v2
40 | - uses: actions/setup-node@v1
41 | with:
42 | node-version: 12
43 | registry-url: https://npm.pkg.github.com/
44 | - run: npm ci
45 | - run: npm publish
46 | env:
47 | NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
48 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
3 | node_modules
4 |
5 | lib/core/metadata.js
6 | lib/core/MetadataBlog.js
7 |
8 | website/translated_docs
9 | website/build/
10 | website/yarn.lock
11 | website/node_modules
12 | website/i18n/*
13 | dist
14 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as
6 | contributors and maintainers pledge to making participation in our project and
7 | our community a harassment-free experience for everyone, regardless of age, body
8 | size, disability, ethnicity, sex characteristics, gender identity and expression,
9 | level of experience, education, socio-economic status, nationality, personal
10 | appearance, race, religion, or sexual identity and orientation.
11 |
12 | ## Our Standards
13 |
14 | Examples of behavior that contributes to creating a positive environment
15 | include:
16 |
17 | * Using welcoming and inclusive language
18 | * Being respectful of differing viewpoints and experiences
19 | * Gracefully accepting constructive criticism
20 | * Focusing on what is best for the community
21 | * Showing empathy towards other community members
22 |
23 | Examples of unacceptable behavior by participants include:
24 |
25 | * The use of sexualized language or imagery and unwelcome sexual attention or
26 | advances
27 | * Trolling, insulting/derogatory comments, and personal or political attacks
28 | * Public or private harassment
29 | * Publishing others' private information, such as a physical or electronic
30 | address, without explicit permission
31 | * Other conduct which could reasonably be considered inappropriate in a
32 | professional setting
33 |
34 | ## Our Responsibilities
35 |
36 | Project maintainers are responsible for clarifying the standards of acceptable
37 | behavior and are expected to take appropriate and fair corrective action in
38 | response to any instances of unacceptable behavior.
39 |
40 | Project maintainers have the right and responsibility to remove, edit, or
41 | reject comments, commits, code, wiki edits, issues, and other contributions
42 | that are not aligned to this Code of Conduct, or to ban temporarily or
43 | permanently any contributor for other behaviors that they deem inappropriate,
44 | threatening, offensive, or harmful.
45 |
46 | ## Scope
47 |
48 | This Code of Conduct applies both within project spaces and in public spaces
49 | when an individual is representing the project or its community. Examples of
50 | representing a project or community include using an official project e-mail
51 | address, posting via an official social media account, or acting as an appointed
52 | representative at an online or offline event. Representation of a project may be
53 | further defined and clarified by project maintainers.
54 |
55 | ## Enforcement
56 |
57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
58 | reported by contacting the project team at jeffersonlicet@gmail.com. All
59 | complaints will be reviewed and investigated and will result in a response that
60 | is deemed necessary and appropriate to the circumstances. The project team is
61 | obligated to maintain confidentiality with regard to the reporter of an incident.
62 | Further details of specific enforcement policies may be posted separately.
63 |
64 | Project maintainers who do not follow or enforce the Code of Conduct in good
65 | faith may face temporary or permanent repercussions as determined by other
66 | members of the project's leadership.
67 |
68 | ## Attribution
69 |
70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72 |
73 | [homepage]: https://www.contributor-covenant.org
74 |
75 | For answers to common questions about this code of conduct, see
76 | https://www.contributor-covenant.org/faq
77 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 Yeferson Licet
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Motion Layout
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | Create beautiful immersive React hero animations using shared components.
17 |
18 |
19 |
20 |
21 | ___
22 |
23 | ## Docs
24 | [React Motion Layout Docs](http://motion-layout.com)
25 |
26 | ## About
27 |
28 | #### Motivation
29 | There are amazing libraries like framer-motion that help you create animations when mounting or unmounting components. But, if two routes have the same image in different positions and sizes, they cannot be animated together. With Motion Layout, you can link components together to animate them when changing views.
30 |
31 | #### Browser support
32 | Supported on modern versions of all major browsers including:
33 |
34 | - Chrome 56+
35 | - Firefox 27+
36 | - IE10+ (including Edge)
37 | - Safari (iOS) 7.1+
38 | - Safari (Mac) 9+
39 | - Firefox Mobile
40 | - Chrome for Android
41 | - Android Webview
42 |
43 | #### Declarative
44 | Easy as wraping your text or images with our SharedElement component.
45 |
46 | #### Isolated
47 | It doesn't require external state management libs.
48 |
49 | #### Router Ready
50 | Dispatch animations when changing routes using our React-Router Link component.
51 |
--------------------------------------------------------------------------------
/docker-compose.yml:
--------------------------------------------------------------------------------
1 | version: "3"
2 |
3 | services:
4 | docusaurus:
5 | build: .
6 | ports:
7 | - 3000:3000
8 | - 35729:35729
9 | volumes:
10 | - ./docs:/app/docs
11 | - ./website/blog:/app/website/blog
12 | - ./website/core:/app/website/core
13 | - ./website/i18n:/app/website/i18n
14 | - ./website/pages:/app/website/pages
15 | - ./website/static:/app/website/static
16 | - ./website/sidebars.json:/app/website/sidebars.json
17 | - ./website/siteConfig.js:/app/website/siteConfig.js
18 | working_dir: /app/website
19 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-motion-layout",
3 | "version": "0.1.1",
4 | "description": "Create beautiful immersive hero animations using shared components.",
5 | "main": "dist/index.js",
6 | "module": "dist/index.es.js",
7 | "jsnext:main": "dist/index.es.js",
8 | "scripts": {
9 | "dev": "rollup -c -w",
10 | "build": "rollup -c"
11 | },
12 | "author": "Jefferson Licet ",
13 | "license": "MIT",
14 | "dependencies": {
15 | "immutability-helper": "^3.0.1",
16 | "prop-types": "^15.7.2",
17 | "web-animations-js": "2.3.2"
18 | },
19 | "peerDependencies": {
20 | "react": "^16.8",
21 | "react-dom": "^16.8",
22 | "react-router-dom": "^5.0.1"
23 | },
24 | "devDependencies": {
25 | "@babel/core": "^7.8.7",
26 | "@babel/plugin-proposal-class-properties": "^7.8.3",
27 | "@babel/preset-env": "^7.8.7",
28 | "@babel/preset-flow": "^7.8.3",
29 | "@babel/preset-react": "^7.8.3",
30 | "@rollup/plugin-commonjs": "^11.0.2",
31 | "@rollup/plugin-node-resolve": "^7.1.1",
32 | "babel-eslint": "^10.1.0",
33 | "babel-loader": "^8.0.6",
34 | "eslint": "^6.1.0",
35 | "eslint-config-airbnb": "^18.0.1",
36 | "eslint-plugin-import": "^2.20.1",
37 | "eslint-plugin-jsx-a11y": "^6.2.3",
38 | "eslint-plugin-react": "^7.19.0",
39 | "eslint-plugin-react-hooks": "^1.7.0",
40 | "react": "^16.8",
41 | "react-dom": "^16.8",
42 | "react-router-dom": "^5.0.1",
43 | "rollup-plugin-babel": "^4.4.0",
44 | "rollup-plugin-peer-deps-external": "^2.2.2",
45 | "webpack": "^4.42.0",
46 | "webpack-cli": "^3.3.11",
47 | "webpack-dev-server": "^3.10.3"
48 | },
49 | "files": [
50 | "dist"
51 | ],
52 | "keywords": [
53 | "react",
54 | "framer",
55 | "motion",
56 | "router",
57 | "animation",
58 | "transition",
59 | "hero"
60 | ]
61 | }
62 |
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
1 | import babel from 'rollup-plugin-babel';
2 | import commonjs from '@rollup/plugin-commonjs';
3 | import external from 'rollup-plugin-peer-deps-external';
4 | import resolve from '@rollup/plugin-node-resolve';
5 |
6 | import pkg from './package.json';
7 |
8 | export default {
9 | input: 'src/index.js',
10 | output: [
11 | {
12 | file: pkg.main,
13 | format: 'cjs',
14 | sourcemap: true,
15 | },
16 | {
17 | file: pkg.module,
18 | format: 'es',
19 | sourcemap: true,
20 | },
21 | ],
22 | plugins: [
23 | external(),
24 | resolve({
25 | extensions: ['.jsx', '.js'],
26 | }),
27 | babel({
28 | exclude: 'node_modules/**',
29 | presets: ['@babel/preset-env', '@babel/preset-react'],
30 | }),
31 | commonjs(),
32 | ],
33 | };
34 |
--------------------------------------------------------------------------------
/src/components/Elements/BaseElement.jsx:
--------------------------------------------------------------------------------
1 | import React, { useContext, useMemo, useCallback, useRef } from 'react';
2 |
3 | import computeStyles from '../../utils/computeStyles';
4 |
5 | import actions from '../../state/actions';
6 |
7 | import GlobalContext from '../../utils/globalContext';
8 | import { SceneContext } from '../MotionScene';
9 | import { ScreenContext } from '../MotionScreen';
10 |
11 | /**
12 | * Computes styles and adds the element to te animation stack
13 | */
14 | export default function BaseElement({
15 | animationKey, children, settings, type,
16 | }) {
17 | const mounted = useRef(false);
18 | const { sceneName, easing } = useContext(SceneContext);
19 | const { dispatch, store } = useContext(GlobalContext) || {};
20 | const { screenName } = useContext(ScreenContext);
21 |
22 | const isRegistered = useMemo(() => (
23 | store && store.exitView === sceneName
24 | && store.scenes[sceneName]
25 | && store.scenes[sceneName].sources[animationKey]
26 | ), [animationKey, sceneName, store]);
27 |
28 | const attachRef = useCallback((ref) => {
29 | if (ref && !mounted.current) {
30 | mounted.current = true;
31 |
32 | if (!animationKey) {
33 | console.warn('No animation key provided for component', children, 'it will be skipped');
34 | return;
35 | }
36 |
37 | if (!sceneName) {
38 | console.warn('Skipping SharedElement registration, MotionScene is invalid');
39 | return;
40 | }
41 |
42 | const actionType = isRegistered ? actions.view.registerTarget : actions.view.registerSource;
43 | const { width, height, x, y } = ref.getBoundingClientRect();
44 |
45 | const component = {
46 | ref,
47 | rect: { width, height, x, y },
48 | styles: computeStyles(type, ref, settings),
49 | component: children,
50 | type,
51 | settings,
52 | };
53 |
54 | dispatch({
55 | type: actionType,
56 | animationKey,
57 | component,
58 | sceneName,
59 | screenName,
60 | });
61 | }
62 | }, [animationKey, sceneName, settings, isRegistered, type, children, dispatch, screenName]);
63 |
64 | return React.cloneElement(children, { ...children.props, ref: attachRef, easing });
65 | }
66 |
--------------------------------------------------------------------------------
/src/components/Elements/Div.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import PropTypes from 'prop-types';
3 | import { componentTypes } from '../../utils/constants';
4 | import BaseElement from './BaseElement';
5 | import MotionImageForwardRef from '../MotionForward';
6 |
7 | export default function Div({ animationKey, ...props }) {
8 | return (
9 |
10 |
11 |
12 | );
13 | }
14 |
15 | Div.propTypes = {
16 | animationKey: PropTypes.string.isRequired,
17 | };
18 |
--------------------------------------------------------------------------------
/src/components/Elements/Image.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import PropTypes from 'prop-types';
3 | import { componentTypes } from '../../utils/constants';
4 | import BaseElement from './BaseElement';
5 | import MotionImageForwardRef from '../MotionForward';
6 |
7 | export default function Image({ animationKey, ...props }) {
8 | return (
9 |
14 |
15 |
16 | );
17 | }
18 |
19 | Image.propTypes = {
20 | animationKey: PropTypes.string.isRequired,
21 | };
22 |
--------------------------------------------------------------------------------
/src/components/Elements/Text.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import PropTypes from 'prop-types';
3 | import { componentTypes } from '../../utils/constants';
4 | import BaseElement from './BaseElement';
5 | import MotionImageForwardRef from '../MotionForward';
6 |
7 | export default function Text({
8 | animationKey, animateColor, animateSize, ...props
9 | }) {
10 | return (
11 |
16 |
17 |
18 | );
19 | }
20 |
21 | Text.propTypes = {
22 | animationKey: PropTypes.string.isRequired,
23 | animateColor: PropTypes.bool,
24 | animateSize: PropTypes.bool,
25 | };
26 |
27 | Text.defaultProps = {
28 | animateSize: true,
29 | animateColor: true,
30 | };
31 |
--------------------------------------------------------------------------------
/src/components/Motion.jsx:
--------------------------------------------------------------------------------
1 | import React, { useRef, useEffect, useCallback, useState } from 'react';
2 |
3 | import keyframes from '../utils/keyframes';
4 | import { componentTypes } from '../utils/constants';
5 |
6 | const DEFAULT_EASING = 'cubic-bezier(0.22, 1, 0.36, 1)';
7 |
8 | /**
9 | * Runs tween animation on MotionScene childrens
10 | */
11 | export default function Motion({
12 | animate, type, handleRef, tween, onAnimationComplete, easing, ...props
13 | }) {
14 | const animated = useRef(false);
15 | const [reference, setReference] = useState(null);
16 |
17 | const attachRef = useCallback((ref) => {
18 | if (handleRef) {
19 | handleRef(ref);
20 | }
21 |
22 | setReference(ref);
23 | }, [handleRef]);
24 |
25 | useEffect(() => {
26 | if (animate && !animated.current && reference) {
27 | animated.current = true;
28 |
29 | const { start, end } = keyframes(type, tween);
30 |
31 | const animation = reference.animate([
32 | start,
33 | end,
34 | ], {
35 | easing: easing || DEFAULT_EASING,
36 | duration: 400,
37 | fill: 'forwards',
38 | });
39 |
40 | animation.pause();
41 |
42 | animation.onfinish = () => {
43 | onAnimationComplete();
44 | };
45 |
46 | animation.play();
47 | }
48 | }, [animate, animated, tween, reference, onAnimationComplete, type, easing]);
49 |
50 | switch (type) {
51 | case componentTypes.image:
52 | return ;
53 | case componentTypes.text:
54 | case componentTypes.div:
55 | return
;
56 | default:
57 | return null;
58 | }
59 | }
60 |
--------------------------------------------------------------------------------
/src/components/MotionForward.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import Motion from './Motion';
3 |
4 | /**
5 | * Forwards ref to Motion Component
6 | */
7 | const MotionImageForwardRef = React.forwardRef((props, ref) => (
8 |
9 | ));
10 |
11 | export default MotionImageForwardRef;
12 |
--------------------------------------------------------------------------------
/src/components/MotionProvider.jsx:
--------------------------------------------------------------------------------
1 |
2 | import React, {
3 | useReducer, useCallback, useEffect, useState, useMemo,
4 | } from 'react';
5 |
6 | import PropTypes from 'prop-types';
7 | import { reducer, initialState } from '../state/reducer';
8 |
9 | import GlobalContext from '../utils/globalContext';
10 |
11 | if (typeof window !== 'undefined') {
12 | require('web-animations-js');
13 | }
14 |
15 | export default function MotionProvider({ children, debug }) {
16 | const [store, internalDispatch] = useReducer(reducer, initialState);
17 |
18 | const log = useMemo(() => {
19 | const disable = (fn) => {
20 | if (debug) {
21 | return fn;
22 | }
23 |
24 | return () => {};
25 | };
26 | return {
27 | error: disable((...params) => console.error(...params)),
28 | info: disable((...params) => console.info(...params)),
29 | };
30 | }, [debug]);
31 |
32 |
33 | const dispatch = useCallback((params) => {
34 | log.info('->', params);
35 | internalDispatch(params);
36 | }, [log]);
37 |
38 | const [portal, setPortal] = useState();
39 |
40 | useEffect(() => {
41 | const [body] = document.getElementsByTagName('body');
42 | const element = document.createElement('div');
43 | element.setAttribute('id', 'react-motion-portal');
44 | body.appendChild(element);
45 | setPortal(element);
46 | log.info('Portal element created');
47 | }, [log]);
48 |
49 | const contextValue = useMemo(() => ({
50 | store, dispatch, portal, log,
51 | }), [dispatch, log, portal, store]);
52 |
53 | return (
54 |
55 | {children}
56 |
57 | );
58 | }
59 |
60 | MotionProvider.propTypes = {
61 | children: PropTypes.node.isRequired,
62 | debug: PropTypes.bool,
63 | };
64 |
65 | MotionProvider.defaultProps = {
66 | debug: false,
67 | };
68 |
--------------------------------------------------------------------------------
/src/components/MotionScene.Sources.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | /**
4 | * Creates a div that wraps SharedElements sources and
5 | * handles onClick
6 | */
7 | export default function RenderSource({ onClick, children }) {
8 | return React.createElement('div', { onClick }, children);
9 | }
10 |
--------------------------------------------------------------------------------
/src/components/MotionScene.Targets.jsx:
--------------------------------------------------------------------------------
1 | import React, {
2 | useRef,
3 | useCallback,
4 | useContext,
5 | useEffect,
6 | useLayoutEffect,
7 | } from 'react';
8 |
9 | import ReactDOM from 'react-dom';
10 | import actions from '../state/actions';
11 |
12 | import { ScreenContext } from './MotionScreen';
13 | import GlobalContext from '../utils/globalContext';
14 |
15 | export default function RenderTarget({ name, children, onClick, easing }) {
16 | const mounted = useRef(false);
17 | const animatedComponentsCount = useRef(0);
18 | const animated = useRef(false);
19 | const ref = useRef(null);
20 |
21 | const { screenName, onExit, onEnter } = useContext(ScreenContext);
22 | const { store, dispatch, portal } = useContext(GlobalContext);
23 |
24 | const { sources, targets } = store.scenes[name];
25 |
26 | const getPoints = useCallback((sourceRect, targetRect) => ({
27 | source: {
28 | x: sourceRect.x + store.exitScroll.x,
29 | y: sourceRect.y + store.exitScroll.y,
30 | },
31 | dest: {
32 | x: targetRect.x + window.scrollX,
33 | y: targetRect.y + window.scrollY,
34 | },
35 | }), [store]);
36 |
37 | /**
38 | * Clear all scenes, switch back to SourceMode and clear portal
39 | */
40 | const cleanUp = useCallback(() => {
41 | Object.keys(sources).forEach((animationKey) => {
42 | dispatch({
43 | type: actions.view.deleteTarget,
44 | sceneName: name,
45 | animationKey,
46 | });
47 |
48 | dispatch({
49 | type: actions.view.deleteSource,
50 | sceneName: name,
51 | animationKey,
52 | });
53 |
54 | const target = targets[animationKey];
55 | target.ref.style.opacity = 1;
56 |
57 | dispatch({
58 | type: actions.view.registerSource,
59 | component: target,
60 | sceneName: name,
61 | animationKey,
62 | screenName,
63 | });
64 | });
65 |
66 | if (onExit) {
67 | dispatch({ type: actions.view.clearScenes, keep: screenName });
68 | } else {
69 | dispatch({ type: actions.view.setExitView, exitView: null });
70 | }
71 |
72 | ReactDOM.render(null, portal);
73 | }, [dispatch, name, portal, screenName, sources, targets, onExit]);
74 |
75 | /**
76 | * If the animations are all done, we reset the animation stack
77 | */
78 | const onAnimationComplete = useCallback(() => {
79 | animatedComponentsCount.current += 1;
80 |
81 | if (animatedComponentsCount.current === Object.keys(sources).length && mounted) {
82 | cleanUp();
83 | }
84 | }, [cleanUp, sources]);
85 |
86 | const tween = useCallback(() => {
87 | if (!onEnter) {
88 | cleanUp();
89 | return;
90 | }
91 |
92 | animated.current = true;
93 |
94 | ref.current.animate([
95 | { opacity: 0 },
96 | { opacity: 1 },
97 | ], {
98 | easing: 'linear',
99 | duration: 400,
100 | fill: 'forwards',
101 | });
102 |
103 | const AnimationComponents = Object.keys(sources).map((key) => {
104 | const source = sources[key];
105 | const target = targets[key];
106 |
107 | const { rect, styles } = source;
108 | const targetRect = target.ref.getBoundingClientRect();
109 |
110 | const points = getPoints(rect, targetRect);
111 |
112 | const style = {
113 | top: 0,
114 | left: 0,
115 | bottom: 0,
116 | position: 'absolute',
117 | pointerEvents: 'none',
118 | marginTop: '0px !important',
119 | marginLeft: '0px !important',
120 | marginRight: '0px !important',
121 | marginBottom: '0px !important',
122 | };
123 |
124 | target.ref.style.opacity = 0;
125 |
126 | // TODO: define and spread those props using type.
127 | const props = {
128 | style,
129 | tween: {
130 | start: {
131 | width: `${rect.width}px`,
132 | height: `${rect.height}px`,
133 | transform: `translate3d(${points.source.x}px, ${points.source.y}px, 0)`,
134 | fontSize: styles.fontSize,
135 | color: styles.color,
136 | backgroundColor: styles.backgroundColor,
137 | background: styles.background,
138 | boxShadow: styles.boxShadow,
139 | borderRadius: styles.borderRadius,
140 | },
141 | end: {
142 | width: `${targetRect.width}px`,
143 | height: `${targetRect.height}px`,
144 | transform: `translate3d(${points.dest.x}px, ${points.dest.y}px, 0)`,
145 | fontSize: target.styles.fontSize,
146 | color: target.styles.color,
147 | background: target.styles.background,
148 | backgroundColor: target.styles.backgroundColor,
149 | boxShadow: target.styles.boxShadow,
150 | borderRadius: target.styles.borderRadius,
151 | },
152 | },
153 | animate: true,
154 | onAnimationComplete,
155 | };
156 |
157 | const finalProps = {
158 | ...props,
159 | easing,
160 | key,
161 | style: { ...source.component.props.style, ...props.style, ...props.tween.start },
162 | };
163 |
164 | return React.cloneElement(source.component, finalProps);
165 | });
166 |
167 | ReactDOM.render(AnimationComponents, portal);
168 | }, [sources, portal, targets, getPoints, onAnimationComplete, easing]);
169 |
170 |
171 | /**
172 | * If all SharedElements are ready, dispatch the animation
173 | */
174 | useLayoutEffect(() => {
175 | mounted.current = true;
176 | if ((Object.keys(sources).length === Object.keys(targets).length)
177 | && !animated.current && ref.current) {
178 | tween();
179 | }
180 | }, [sources, targets, tween, animated]);
181 |
182 | /**
183 | * Track if the component is mounted
184 | */
185 | useEffect(() => {
186 | mounted.current = true;
187 |
188 | return () => {
189 | mounted.current = null;
190 | };
191 | }, [dispatch, name, portal]);
192 |
193 | return React.createElement('div', { ref, onClick }, children);
194 | }
195 |
--------------------------------------------------------------------------------
/src/components/MotionScene.jsx:
--------------------------------------------------------------------------------
1 | import React, { useContext, useMemo } from 'react';
2 | import GlobalContext from '../utils/globalContext';
3 | import useFirstLayoutEffect from '../hooks/useFirstEffect';
4 |
5 | import MotionSceneTargets from './MotionScene.Targets';
6 | import MotionSceneSources from './MotionScene.Sources';
7 |
8 | export const SceneContext = React.createContext();
9 |
10 | /**
11 | * Orchestrates the scene, deciding if the view should contain target or
12 | * source elements
13 | */
14 | export function MotionScene(props) {
15 | const { store } = useContext(GlobalContext) || {};
16 | const { exitView } = store || {};
17 |
18 | useFirstLayoutEffect(() => {
19 | if (props.scrollUpOnEnter) {
20 | window.scrollTo(0, 0);
21 | }
22 | }, [props.scrollUpOnEnter]);
23 |
24 | const inTargetScene = useMemo(
25 | () => exitView === props.name,
26 | [exitView, props.name],
27 | );
28 |
29 | const contextValue = useMemo(() => ({
30 | sceneName: props.name,
31 | easing: props.easing,
32 | }), [props.easing, props.name]);
33 |
34 | return (
35 |
36 | { inTargetScene
37 | ?
38 | : }
39 |
40 | );
41 | }
42 |
43 | export default MotionScene;
44 |
--------------------------------------------------------------------------------
/src/components/MotionScreen.jsx:
--------------------------------------------------------------------------------
1 | import React, { useRef, useContext, useEffect, useMemo } from 'react';
2 | import GlobalContext from '../utils/globalContext';
3 | import randomString from '../utils/randomString';
4 | import actions from '../state/actions';
5 | import useFirstLayoutEffect from '../hooks/useFirstEffect';
6 |
7 | export const ScreenContext = React.createContext();
8 |
9 | /**
10 | * Groups multiple scenes together and saves scroll state on navigation
11 | */
12 | export default function MotionScreen({ children, name, onEnter, onExit }) {
13 | const nameRef = useRef(name || randomString());
14 | const { dispatch } = useContext(GlobalContext) || {};
15 |
16 | useFirstLayoutEffect(() => {
17 | dispatch({ type: actions.view.setScreen, screen: nameRef.current, onEnter, onExit });
18 | }, [dispatch]);
19 |
20 | useEffect(() => () => {
21 | const exitScroll = { x: window.scrollX, y: window.scrollY };
22 | dispatch({ type: actions.view.setExitScroll, exitScroll });
23 | }, [dispatch]);
24 |
25 | const contextValue = useMemo(() => ({
26 | screenName: nameRef.current,
27 | onEnter,
28 | onExit,
29 | }), [onEnter, onExit]);
30 |
31 | return (
32 |
33 | {children}
34 |
35 | );
36 | }
37 |
38 | MotionScreen.defaultProps = {
39 | onEnter: true,
40 | onExit: true,
41 | };
42 |
--------------------------------------------------------------------------------
/src/components/RouterLink.jsx:
--------------------------------------------------------------------------------
1 | import React, { useContext, useCallback } from 'react';
2 | import { useHistory, useLocation, Link } from 'react-router-dom';
3 |
4 | import GlobalContext from '../utils/globalContext';
5 | import actions from '../state/actions';
6 |
7 | /**
8 | * Wraps a ReactRouterDom Link into a function that dispatches an animation
9 | * Only if there is only one scene in the current screen
10 | */
11 | export default function RouterLink({ to, replace, className, target, style, children }) {
12 | const { store, dispatch } = useContext(GlobalContext);
13 | const history = useHistory();
14 | const location = useLocation();
15 |
16 | const onClick = useCallback((e) => {
17 | const destination = typeof to === 'function' ? to(location) : to;
18 | if (store.screen && store.onExit) {
19 | e.preventDefault();
20 |
21 | const method = replace ? history.replace : history.push;
22 |
23 | /**
24 | * Search for scenes and group by screen name
25 | */
26 | const num = Object.keys(store.scenes)
27 | .reduce((acc, view) => {
28 | const { screenName } = store.scenes[view];
29 | acc[screenName] = [...(acc[screenName] || []), view];
30 | return acc;
31 | }, {});
32 |
33 | if (num[store.screen] && num[store.screen].length === 1) {
34 | dispatch({
35 | type: actions.view.setExitView,
36 | sceneName: num[store.screen][0],
37 | });
38 | }
39 |
40 | method(destination);
41 | }
42 | }, [dispatch, history, location, replace, store.onExit, store.scenes, store.screen, to]);
43 |
44 | return (
45 |
53 | {children}
54 |
55 | );
56 | }
57 |
--------------------------------------------------------------------------------
/src/hooks/useFirstEffect.js:
--------------------------------------------------------------------------------
1 | import { useLayoutEffect, useRef } from 'react';
2 |
3 | export default function useFirstEffect(fn, deps) {
4 | const firstEffect = useRef(true);
5 | useLayoutEffect(() => {
6 | if (firstEffect.current) {
7 | firstEffect.current = false;
8 | fn();
9 | }
10 | }, [fn, ...deps]);
11 | }
12 |
--------------------------------------------------------------------------------
/src/hooks/useMotion.js:
--------------------------------------------------------------------------------
1 | import { useContext } from 'react';
2 | import actions from '../state/actions';
3 | import GlobalContext from '../utils/globalContext';
4 |
5 | /*
6 | This hook provides a way of setting the originOfTransition
7 | */
8 | export default function useMotion(sceneName) {
9 | const { dispatch, store } = useContext(GlobalContext) || {};
10 | function withTransition(callback) {
11 | return () => {
12 | if (!dispatch || !store) {
13 | return;
14 | }
15 |
16 | if (!store.scenes[sceneName]) {
17 | console.warn(`${sceneName} is not registered, maybe you have misspelled the MotionScene name?`);
18 | callback();
19 | return;
20 | }
21 |
22 | if (!store.onExit) {
23 | callback();
24 | return;
25 | }
26 |
27 | const { sources } = store.scenes[sceneName];
28 |
29 | dispatch({
30 | type: actions.view.setExitView,
31 | sceneName,
32 | });
33 |
34 | Object.keys(sources).forEach((animationKey) => {
35 | const { ref } = sources[animationKey];
36 | const rect = ref.getBoundingClientRect();
37 |
38 | // Prevent updating if the ref is not in the screen
39 | if (rect.width > 0 && rect.height > 0) {
40 | dispatch({
41 | type: actions.view.updateSourceRect,
42 | rect,
43 | sceneName,
44 | animationKey,
45 | });
46 | }
47 | });
48 |
49 | if (callback) {
50 | callback();
51 | }
52 | };
53 | }
54 | return withTransition;
55 | }
56 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import Text from './components/Elements/Text';
2 | import Image from './components/Elements/Image';
3 | import Div from './components/Elements/Div';
4 |
5 | export { default as MotionScene } from './components/MotionScene';
6 | export { default as MotionLayoutProvider } from './components/MotionProvider';
7 | export { default as useMotion } from './hooks/useMotion';
8 | export { default as MotionScreen } from './components/MotionScreen';
9 | export { default as RouterLink } from './components/RouterLink';
10 |
11 | export const SharedElement = { Image, Text, Div };
12 |
--------------------------------------------------------------------------------
/src/state/actions.js:
--------------------------------------------------------------------------------
1 |
2 | const actions = {
3 | view: {
4 | register: 'view/register',
5 | remove: 'view/remove',
6 | registerTarget: 'view/registerTarget',
7 | registerSource: 'view/registerSource',
8 | deleteTarget: 'view/deleteTarget',
9 | deleteSource: 'view/deleteSource',
10 | setExitView: 'view/setExitView',
11 | updateSourceRect: 'view/updateSourceRect',
12 | setScreen: 'view/setScreen',
13 | updateViewScreen: 'view/updateViewScreen',
14 | setExitScroll: 'view/setExitScroll',
15 | clearScenes: 'view/clearScenes',
16 | },
17 | };
18 |
19 | export default actions;
20 |
--------------------------------------------------------------------------------
/src/state/reducer.js:
--------------------------------------------------------------------------------
1 | import update from 'immutability-helper';
2 | import actions from './actions';
3 |
4 | export const initialState = {
5 | exitView: null,
6 | scenes: {},
7 | screen: null,
8 | onEnter: true,
9 | onExit: true,
10 | exitScroll: null,
11 | };
12 |
13 | const initialView = {
14 | targets: {},
15 | sources: {},
16 | screenName: null,
17 | };
18 |
19 | export const reducer = (state, action) => {
20 | switch (action.type) {
21 | case actions.view.updateSourceRect:
22 | return update(state, {
23 | scenes: {
24 | [action.sceneName]: {
25 | sources: {
26 | [action.animationKey]: {
27 | rect: { $set: action.rect },
28 | },
29 | },
30 | },
31 | },
32 | });
33 | case actions.view.setExitView:
34 | return update(state, {
35 | exitView: { $set: action.sceneName },
36 | });
37 | case actions.view.setScreen:
38 | return update(state, {
39 | screen: { $set: action.screen },
40 | onEnter: { $set: action.onEnter },
41 | onExit: { $set: action.onExit },
42 | });
43 | case actions.view.setExitScroll:
44 | return update(state, {
45 | exitScroll: { $set: action.exitScroll },
46 | });
47 |
48 | case actions.view.register:
49 | return update(state, {
50 | scenes: { [action.sceneName]: { $set: { ...initialView, screenName: action.screenName } } },
51 | });
52 | case actions.view.updateViewScreen:
53 | return update(state, {
54 | scenes: {
55 | [action.sceneName]: {
56 | screenName: { $set: action.screenName },
57 | },
58 | },
59 | });
60 |
61 | case actions.view.remove:
62 | return update(state, {
63 | scenes: { $unset: [action.sceneName] },
64 | });
65 |
66 | case actions.view.registerSource: {
67 | if (state.scenes[action.sceneName]) {
68 | return update(state, {
69 | scenes: {
70 | [action.sceneName]: {
71 | screenName: { $set: action.screenName },
72 | sources: {
73 | [action.animationKey]: { $set: action.component },
74 | },
75 | },
76 | },
77 | });
78 | }
79 |
80 | return update(state, {
81 | scenes: {
82 | [action.sceneName]: {
83 | $set: {
84 | ...initialView,
85 | screenName: action.screenName,
86 | sources: {
87 | [action.animationKey]: action.component,
88 | },
89 | },
90 | },
91 | },
92 | });
93 | }
94 | case actions.view.registerTarget:
95 | return update(state, {
96 | scenes: {
97 | [action.sceneName]: {
98 | targets: {
99 | [action.animationKey]: { $set: action.component },
100 | },
101 | },
102 | },
103 | });
104 |
105 | case actions.view.deleteTarget:
106 | return update(state, {
107 | scenes: {
108 | [action.sceneName]: {
109 | targets: { $unset: [action.animationKey] },
110 | },
111 | },
112 | });
113 | case actions.view.deleteSource:
114 | return update(state, {
115 | scenes: {
116 | [action.sceneName]: {
117 | sources: { $unset: [action.animationKey] },
118 | },
119 | },
120 | });
121 | case actions.view.clearScenes: {
122 | const toRemove = Object.keys(state.scenes)
123 | .filter((scene) => state.scenes[scene].screenName !== action.keep);
124 | return update(state, {
125 | scenes: { $unset: toRemove },
126 | });
127 | }
128 | default:
129 | throw new Error();
130 | }
131 | };
132 |
--------------------------------------------------------------------------------
/src/state/store.js:
--------------------------------------------------------------------------------
1 | export default class createStore {
2 | constructor(reducer, initialState) {
3 | this.reducer = reducer;
4 | this.state = initialState;
5 | this.listener = () => {};
6 | }
7 |
8 | dispatch = (action) => {
9 | this.state = this.reducer(this.state, action);
10 | this.listener();
11 | return action;
12 | }
13 |
14 | subscribe = (listener) => {
15 | this.listener = listener;
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/src/utils/computeStyles.js:
--------------------------------------------------------------------------------
1 | import { componentTypes } from './constants';
2 |
3 | function computeTextStyles(DOMElement, settings) {
4 | let fontSize;
5 | let color;
6 |
7 | const computedStyle = window.getComputedStyle(DOMElement, null);
8 |
9 | if (settings.animateSize) {
10 | fontSize = `${parseFloat(computedStyle.getPropertyValue('font-size'))}px`;
11 | }
12 |
13 | if (settings.animateColor) {
14 | color = computedStyle.getPropertyValue('color');
15 | }
16 |
17 | return { fontSize, color };
18 | }
19 |
20 | function computeDivStyles(DOMElement) {
21 | const computedStyle = window.getComputedStyle(DOMElement, null);
22 | const background = computedStyle.getPropertyValue('background');
23 | const backgroundColor = computedStyle.getPropertyValue('background-color');
24 | const boxShadow = computedStyle.getPropertyValue('box-shadow');
25 | const borderRadius = computedStyle.getPropertyValue('border-radius');
26 | return { backgroundColor, background, boxShadow, borderRadius };
27 | }
28 |
29 |
30 | export default function computeStyles(type, DOMElement, settings) {
31 | switch (type) {
32 | case componentTypes.text:
33 | return computeTextStyles(DOMElement, settings);
34 | case componentTypes.div:
35 | return computeDivStyles(DOMElement, settings);
36 | default:
37 | return {};
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/src/utils/constants.js:
--------------------------------------------------------------------------------
1 | export const componentTypes = {
2 | text: 'text',
3 | image: 'image',
4 | div: 'div',
5 | };
6 |
--------------------------------------------------------------------------------
/src/utils/globalContext.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | const GlobalContext = React.createContext();
4 | export default GlobalContext;
5 |
--------------------------------------------------------------------------------
/src/utils/keyframes.js:
--------------------------------------------------------------------------------
1 | import { componentTypes } from './constants';
2 |
3 | function extractKeyframes(type, params) {
4 | const {
5 | fontSize, color, width, height, transform, backgroundColor, background, boxShadow, borderRadius,
6 | } = params;
7 |
8 | const common = {
9 | width,
10 | height,
11 | transform,
12 | };
13 |
14 | switch (type) {
15 | case componentTypes.text:
16 | return {
17 | ...common,
18 | ...(fontSize ? { fontSize } : {}),
19 | ...(color ? { color } : {}),
20 | };
21 | case componentTypes.div:
22 | return {
23 | ...common,
24 | ...(background ? { background } : {}),
25 | ...(backgroundColor ? { backgroundColor } : {}),
26 | ...(boxShadow ? { boxShadow } : {}),
27 | ...(borderRadius ? { borderRadius } : {}),
28 | };
29 | case componentTypes.image:
30 | return {
31 | ...common,
32 | };
33 | default:
34 | return {};
35 | }
36 | }
37 |
38 | export default function keyframes(type, tween) {
39 | return {
40 | start: extractKeyframes(type, tween.start),
41 | end: extractKeyframes(type, tween.end),
42 | };
43 | }
44 |
--------------------------------------------------------------------------------
/src/utils/randomString.js:
--------------------------------------------------------------------------------
1 | export default function randomString() {
2 | return Math.random().toString(36).substr(2, 5) + Math.random().toString(36).substr(2, 5);
3 | }
4 |
--------------------------------------------------------------------------------
/website/.gitignore:
--------------------------------------------------------------------------------
1 | # Dependencies
2 | /node_modules
3 |
4 | # Production
5 | /build
6 |
7 | # Generated files
8 | .docusaurus
9 | .cache-loader
10 |
11 | # Misc
12 | .DS_Store
13 | .env.local
14 | .env.development.local
15 | .env.test.local
16 | .env.production.local
17 |
18 | npm-debug.log*
19 | yarn-debug.log*
20 | yarn-error.log*
21 |
--------------------------------------------------------------------------------
/website/README.md:
--------------------------------------------------------------------------------
1 | # Website
2 |
3 | This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern static website generator.
4 |
5 | ### Installation
6 |
7 | ```
8 | $ yarn
9 | ```
10 |
11 | ### Local Development
12 |
13 | ```
14 | $ yarn start
15 | ```
16 |
17 | This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
18 |
19 | ### Build
20 |
21 | ```
22 | $ yarn build
23 | ```
24 |
25 | This command generates static content into the `build` directory and can be served using any static contents hosting service.
26 |
27 | ### Deployment
28 |
29 | ```
30 | $ GIT_USER= USE_SSH=true yarn deploy
31 | ```
32 |
33 | If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
34 |
--------------------------------------------------------------------------------
/website/docs/RouterLink.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: RouterLink
3 | title: RouterLink
4 | ---
5 |
6 | Renders a React-router-dom `` `` component that triggers animations. It requires the source and the destination view to be wrapped with the `` `` component.
7 | ``` jsx
8 |
9 | ```
10 |
11 | ### Props
12 |
13 | | Name | type | required |
14 | | ------------- | :-----------: | -----: |
15 | | children | Node | true |
16 | | to | string or function | true |
17 |
--------------------------------------------------------------------------------
/website/docs/animating.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: animating
3 | title: Animating Components
4 | ---
5 |
6 | Let's build together an example of how to use Motion Layout.
7 | We are going to build a simple feed and a story view using react router.
8 |
9 | ### 1 Use the Motion Layout Provider
10 | Motion Layout Provider is responsible for providing the state management.
11 | ```jsx {6,15}
12 | // app.js
13 | ...
14 | import { MotionLayoutProvider } from 'react-motion-layout';
15 |
16 | ReactDOM.render(
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | ,
27 | document.getElementById("root")
28 | );
29 | ```
30 |
31 | ### 2 Create some placeholder stories
32 | ```jsx
33 | // stories.js
34 | export const items = [
35 | {
36 | id: 1,
37 | text: 'Hello world',
38 | image: 'https://images.unsplash.com/photo-1506824959579-0a01750f66de?ixlib=rb-1.2.1&auto=format&fit=crop&w=300&q=100',
39 | },
40 | {
41 | id: 2,
42 | text: 'Hello world',
43 | image: 'https://images.unsplash.com/photo-1506824959579-0a01750f66de?ixlib=rb-1.2.1&auto=format&fit=crop&w=300&q=100',
44 | },
45 | ];
46 | ```
47 |
48 | ### 3 Create the Feed View
49 | Since this is an individual screen, we wrap it using MotionScreen to clean registered elements when
50 | abandoning this screen.
51 | ```jsx
52 | // feed.jsx
53 | ...
54 | import { MotionScreen } from 'react-motion-layout';
55 | import { items } from './stories';
56 | import Item from './Item';
57 |
58 | export default function Feed() {
59 | return (
60 |
61 | {items.map((data, i) => )}
62 |
63 | );
64 | }
65 | ```
66 |
67 | ### 4 Create the Item View
68 | Each item will be wrapped with a **MotionScene**.
69 | A **MotionScene** is a component that contains **SharedElements**.
70 |
71 | **SharedElements** are the components that we will animate. They must have an unique key called *animationKey*, we use that key to find a matching SharedElement when changing the views.
72 | ___
73 | **MotionScene** accepts an onClick property, in this case we are using the **withTransition** hook, that will trigger the animation
74 | and then will change the route using the history hook provided by react-router-dom.
75 |
76 | > You can also use the withTransition hook to animate route changes and state changes, for example, if you render two different components based on some condition.
77 |
78 | ```jsx {8,12-17}
79 | // item.jsx
80 | import React, { useCallback } from 'react';
81 | import { useHistory } from 'react-router-dom';
82 | import { SharedElement, MotionScene, useMotion } from 'react-motion-layout';
83 |
84 | export default function Item({ data }) {
85 | const history = useHistory();
86 | const withTransition = useMotion(`story-${data.id}`);
87 | const callback = useCallback(() => history.push(`/story/${id}`));
88 |
89 | return (
90 |
91 |
92 |
93 | {data.text}
94 |
95 |
96 | );
97 | }
98 | ```
99 |
100 | ### 5 Create the Story View
101 | The Story View is wrapped by a MotionScene as well, when navigating, those scenes will match and the declared SharedComponents will perform the animation.
102 |
103 | ```jsx {0}
104 | // story.jsx
105 | import React from 'react';
106 | import { useParams } from 'react-router-dom';
107 | import { SharedElement, MotionScene, MotionScreen } from 'react-motion-layout';
108 |
109 | import { items } from './stories';
110 |
111 | export default function Story() {
112 | const { storyId } = useParams();
113 | const { image, text } = items[storyId];
114 |
115 | return (
116 |
117 |
118 |
119 | {text}
120 |
121 |
122 |
123 |
124 | );
125 | }
126 | ```
127 |
128 | ## And that's it
129 | Now when you click on any item of the feed it should animate using the shared components we'd just defined.
130 |
131 | > Motion Layout will automatically detect the target and source properties to create a smooth animation.
132 |
133 | ## See more examples:
134 |
135 | [Chat Example](https://codesandbox.io/s/chat-example-dyyy1)
136 |
137 | [Gallery Example](https://codesandbox.io/s/instagram-example-b6gkm)
--------------------------------------------------------------------------------
/website/docs/installation.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: installation
3 | title: Installation Guide
4 | sidebar_label: Installation Guide
5 | ---
6 |
7 | Motion Layout requires React 16.8 or greater.
8 |
9 | ### Installation
10 |
11 | Install react-motion-layout and react-router-dom from npm.
12 |
13 | `npm i react-router-dom react-motion-layout --save`
14 |
15 | ### Importing
16 |
17 | Once installed, you can import Motion Layout into your components via `react-motion-layout`.
--------------------------------------------------------------------------------
/website/docs/motionLayoutProvider.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: MotionLayoutProvider
3 | title: MotionLayoutProvider
4 | ---
5 |
6 | Creates the React Portal where the elements are rendered during the transition and manages the internal state.
7 |
8 | ``` jsx
9 |
10 | ```
11 |
12 | ### Props
13 |
14 | | Name | type | required |
15 | | ------------- | :-----------: | -----: |
16 | | children | Node | true |
17 | | debug | boolean | false |
18 |
--------------------------------------------------------------------------------
/website/docs/motionScene.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: MotionScene
3 | title: MotionScene
4 | ---
5 |
6 | Orchestrates the animation, renders the components into the portal, changes the opacity of the container and tracks the scroll to update the relative position of each rect. You can provide a easing prop to define how
7 | you want the animation to be
8 | ``` jsx
9 |
10 | ```
11 |
12 | ### Props
13 |
14 | | Name | type | required |
15 | | ------------- | :-----------: | -----: |
16 | | children | Node | true |
17 | | scrollUpOnEnter | boolean | false |
18 | | name | string | true |
19 | | easing | string | false |
--------------------------------------------------------------------------------
/website/docs/motionScreen.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: MotionScreen
3 | title: MotionScreen
4 | ---
5 |
6 | Associates the components inside it to a screen. It's useful when you want to navigate using Links of react-router-dom,
7 | since a simple view can contain multiple MotionScenes, MotionScreen helps track which of them the system has to animate.
8 | I'ts required to indicate at least one screen.
9 | ---
10 | You can perform one-way animations using onEnter and onExit boolean props.
11 |
12 | ``` jsx
13 |
14 | ```
15 |
16 | ### Props
17 |
18 | | Name | type | required |
19 | | ------------- | :-----------: | -----: |
20 | | children | Node | true |
21 | | name | string | false |
22 | | onEnter | boolean (defaults true) | false |
23 | | onExit | boolean (defaults true) | false |
24 |
--------------------------------------------------------------------------------
/website/docs/sharedElementDiv.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: SharedElementDiv
3 | title: SharedElement.Div
4 | ---
5 |
6 | Renders a div fragment that animates:
7 | - borderRadius
8 | - background
9 | - position
10 | - size
11 | - shadow
12 |
13 | ``` jsx
14 |
15 | ```
16 |
17 | ### Props
18 |
19 | | Name | type | required | default |
20 | | ------------- | :-----------: | -----: | -----: |
21 | | children | Node | true | null |
22 | | animationKey | string | true | null |
23 | | className | string | false | null |
24 | | onClick | function | false | null |
25 |
--------------------------------------------------------------------------------
/website/docs/sharedElementImage.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: SharedElementImage
3 | title: SharedElement.Image
4 | ---
5 |
6 | Renders an Image
7 |
8 | ``` jsx
9 |
10 | ```
11 |
12 | ### Props
13 |
14 | | Name | type | required |
15 | | ------------- | :-----------: | -----: |
16 | | animationKey | string | true |
17 | | src | string | true |
18 | | className | string | false |
19 | | onClick | function | false |
20 |
--------------------------------------------------------------------------------
/website/docs/sharedElementText.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: SharedElementText
3 | title: SharedElement.Text
4 | ---
5 |
6 | Renders a Text fragment
7 |
8 | ``` jsx
9 |
10 | ```
11 |
12 | ### Props
13 |
14 | | Name | type | required | default |
15 | | ------------- | :-----------: | -----: | -----: |
16 | | children | Node | true | null |
17 | | animationKey | string | true | null |
18 | | animateColor | boolean | false | true |
19 | | animateSize | boolean | false | true |
20 | | className | string | false | null |
21 | | onClick | function | false | null |
22 |
--------------------------------------------------------------------------------
/website/docs/useMotion.md:
--------------------------------------------------------------------------------
1 | ---
2 | id: useMotion
3 | title: useMotion
4 | ---
5 |
6 | Returns a function that accepts a callback to exec after animation is started.
7 |
8 | ``` jsx
9 | useMotion(sceneName: string)
10 | ```
11 |
12 | ### Example
13 | ```jsx {8,12-17}
14 | // item.jsx
15 | import React, { useCallback } from 'react';
16 | import { useHistory } from 'react-router-dom';
17 | import { SharedElement, MotionScene, useMotion } from 'react-motion-layout';
18 |
19 | export default function Item({ data }) {
20 | const history = useHistory();
21 | const withTransition = useMotion(`story-${data.id}`);
22 | const callback = useCallback(() => history.push(`/story/${data.id}`));
23 |
24 | return (
25 |
26 |
27 |
28 | {data.text}
29 |
30 |
31 | );
32 | }
33 | ```
--------------------------------------------------------------------------------
/website/docusaurus.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | title: 'React Motion Layout',
3 | tagline: 'Beautiful React hero animations.',
4 | url: 'http://motion-layout.com/reacto-motion-layout',
5 | baseUrl: '/',
6 | favicon: 'img/favicon.ico',
7 | organizationName: 'jeffersonlicet', // Usually your GitHub org/user name.
8 | projectName: 'React Motion Layout', // Usually your repo name.
9 | themeConfig: {
10 | colorMode: {
11 | disableSwitch: true,
12 | },
13 | algolia: {
14 | apiKey: '60e4ce389d11f9291daed91bfbb0b51a',
15 | indexName: 'azurewebsites_motion-layout',
16 | },
17 | announcementBar: {
18 | id: 'supportus-new',
19 | content:
20 | '⭐️ If you like Motion Layout, give it a star on GitHub ! ⭐️ ',
21 | },
22 | googleAnalytics: {
23 | trackingID: 'UA-56940433-12',
24 | },
25 | prism: {
26 | theme: require('prism-react-renderer/themes/dracula'),
27 | },
28 | navbar: {
29 | title: 'Motion Layout',
30 | logo: {
31 | alt: 'Motion Layout',
32 | src: 'img/logo.png',
33 | },
34 | links: [
35 | {
36 | to: 'docs/installation',
37 | activeBasePath: 'docs',
38 | label: 'Docs',
39 | position: 'left',
40 | },
41 | {
42 | href: 'https://github.com/jeffersonlicet/react-motion-layout',
43 | label: 'GitHub',
44 | position: 'right',
45 | },
46 | ],
47 | },
48 | footer: {
49 | style: 'dark',
50 | links: [
51 | {
52 | title: 'Docs',
53 | items: [
54 | {
55 | label: 'Installation',
56 | to: 'docs/installation',
57 | },
58 | {
59 | label: 'Animating components',
60 | to: 'docs/animating',
61 | },
62 | ],
63 | },
64 | {
65 | title: 'Community',
66 | items: [
67 | {
68 | label: 'Credits',
69 | href: 'credits',
70 | },
71 | {
72 | label: 'Stack Overflow',
73 | href: 'https://stackoverflow.com/questions/tagged/react-motion-layout',
74 | },
75 | ],
76 | },
77 | {
78 | title: 'Social',
79 | items: [
80 | {
81 | label: 'GitHub',
82 | href: 'https://github.com/jeffersonlicet/react-motion-layout',
83 | },
84 | {
85 | label: 'Twitter',
86 | href: 'https://twitter.com/jeffersonlicet',
87 | },
88 | ],
89 | },
90 | ],
91 | copyright: `Copyright © ${new Date().getFullYear()} Jefferson Licet. Built with Docusaurus.`,
92 | },
93 | },
94 | presets: [
95 | [
96 | '@docusaurus/preset-classic',
97 | {
98 | docs: {
99 | sidebarPath: require.resolve('./sidebars.js'),
100 | editUrl:
101 | 'https://github.com/facebook/docusaurus/edit/master/website/',
102 | },
103 | theme: {
104 | customCss: require.resolve('./src/css/custom.css'),
105 | },
106 | },
107 | ],
108 | ],
109 | stylesheets: [
110 | 'https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css',
111 | 'https://fonts.googleapis.com/css?family=Baloo+Chettan+2:400,700&display=swap',
112 | ],
113 | plugins: ['@docusaurus/plugin-google-analytics'],
114 | };
115 |
--------------------------------------------------------------------------------
/website/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "website",
3 | "version": "1.0.0",
4 | "private": true,
5 | "scripts": {
6 | "start": "docusaurus start",
7 | "build": "docusaurus build",
8 | "swizzle": "docusaurus swizzle",
9 | "deploy": "docusaurus deploy"
10 | },
11 | "dependencies": {
12 | "@docusaurus/core": "2.0.0-alpha.50",
13 | "@docusaurus/plugin-google-analytics": "2.0.0-alpha.50",
14 | "@docusaurus/preset-classic": "2.0.0-alpha.50",
15 | "@docusaurus/theme-live-codeblock": "2.0.0-alpha.50",
16 | "classnames": "^2.2.6",
17 | "react": "^16.13.1",
18 | "react-dom": "^16.13.1",
19 | "react-icons": "^3.9.0",
20 | "react-motion-layout": "^0.1.1",
21 | "react-router-dom": "^5.1.2",
22 | "tailwindcss": "^1.2.0"
23 | },
24 | "browserslist": {
25 | "production": [
26 | ">0.2%",
27 | "not dead",
28 | "not op_mini all"
29 | ],
30 | "development": [
31 | "last 1 chrome version",
32 | "last 1 firefox version",
33 | "last 1 safari version"
34 | ]
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/website/sidebars.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | someSidebar: {
3 | 'Getting Started': ['installation', 'animating'],
4 | API: [
5 | 'MotionLayoutProvider',
6 | 'MotionScreen',
7 | 'MotionScene',
8 | 'SharedElementText',
9 | 'SharedElementImage',
10 | 'SharedElementDiv',
11 | 'RouterLink',
12 | ],
13 | Hooks: ['useMotion'],
14 | },
15 | };
16 |
--------------------------------------------------------------------------------
/website/src/css/custom.css:
--------------------------------------------------------------------------------
1 | /* stylelint-disable docusaurus/copyright-header */
2 | /**
3 | * Any CSS included here will be global. The classic template
4 | * bundles Infima by default. Infima is a CSS framework designed to
5 | * work well for content-centric websites.
6 | */
7 |
8 | /* You can override the default Infima variables here. */
9 | :root {
10 | --ifm-color-primary: #d53f8c;
11 | --ifm-color-primary-dark: #cc2d7e;
12 | --ifm-color-primary-darker: #c02a77;
13 | --ifm-color-primary-darkest: #9f2362;
14 | --ifm-color-primary-light: #da569a;
15 | --ifm-color-primary-lighter: #dc61a0;
16 | --ifm-color-primary-lightest: #e483b5;
17 | --ifm-code-font-size: 95%;
18 | }
19 |
20 | .docusaurus-highlight-code-line {
21 | background-color: rgb(72, 77, 91);
22 | display: block;
23 | margin: 0 calc(-1 * var(--ifm-pre-padding));
24 | padding: 0 var(--ifm-pre-padding);
25 | }
26 |
27 | .baloo {
28 | font-family: 'Baloo Chettan 2'
29 | }
30 |
31 | .primary {
32 | color: #ed64a6;
33 | }
34 |
35 | .button_pink:hover {
36 | text-decoration: none;
37 | }
38 |
39 | .navbar__title {
40 | font-family: 'Baloo Chettan 2';
41 | color: #ed64a6;
42 | }
43 |
44 | .mouse {
45 | left: 50%;
46 | transform: translateX(-50%);
47 | position: absolute;
48 | bottom: 40px;
49 | }
50 |
51 | .mouse-icon {
52 | width: 25px;
53 | height: 45px;
54 | border: 2px solid #a0aec0;
55 | border-radius: 15px;
56 | cursor: pointer;
57 | position: relative;
58 | text-align: center;
59 | }
60 |
61 | .mouse-wheel {
62 | height: 6px;
63 | margin: 2px auto 0;
64 | display: block;
65 | width: 3px;
66 | background-color: #a0aec0;
67 | border-radius: 50%;
68 | -webkit-animation: 1.6s ease infinite wheel-up-down;
69 | -moz-animation: 1.6s ease infinite wheel-up-down;
70 | animation: 1.6s ease infinite wheel-up-down;
71 | }
72 |
73 | @-webkit-keyframes wheel-up-down {
74 | 0% {
75 | margin-top: 2px;
76 | opacity: 0;
77 | }
78 |
79 | 30% {
80 | opacity: 1;
81 | }
82 |
83 | 100% {
84 | margin-top: 20px;
85 | opacity: 0;
86 | }
87 | }
88 |
89 | @-moz-keyframes wheel-up-down {
90 | 0% {
91 | margin-top: 2px;
92 | opacity: 0;
93 | }
94 |
95 | 30% {
96 | opacity: 1;
97 | }
98 |
99 | 100% {
100 | margin-top: 20px;
101 | opacity: 0;
102 | }
103 | }
104 |
105 | @keyframes wheel-up-down {
106 | 0% {
107 | margin-top: 2px;
108 | opacity: 0;
109 | }
110 |
111 | 30% {
112 | opacity: 1;
113 | }
114 |
115 | 100% {
116 | margin-top: 20px;
117 | opacity: 0;
118 | }
119 | }
120 |
121 | .chat-bg {
122 | background: #4568DC; /* fallback for old browsers */
123 | background: -webkit-linear-gradient(to right, #B06AB3, #4568DC); /* Chrome 10-25, Safari 5.1-6 */
124 | background: linear-gradient(to right, #B06AB3, #4568DC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
125 | }
126 |
127 | .border-box-1 {
128 | padding: 4px;
129 | background: #4568DC; /* fallback for old browsers */
130 | background: -webkit-linear-gradient(to left, #B06AB3, #4568DC); /* Chrome 10-25, Safari 5.1-6 */
131 | background: linear-gradient(to left, #B06AB3, #4568DC);
132 | }
133 |
134 | @media (min-width: 640px) {
135 | .demo-box {
136 | width: 100%;
137 | height: 500px;
138 | }
139 | }
140 |
141 | @media (min-width: 1280px) {
142 | .demo-box {
143 | width: 500px;
144 | height: 500px;
145 | }
146 | }
--------------------------------------------------------------------------------
/website/src/pages/components/Button.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import classNames from 'classnames';
3 |
4 | export default function Button({
5 | to, children, className, target,
6 | }) {
7 | return (
8 |
13 | {children}
14 |
15 | );
16 | }
17 |
--------------------------------------------------------------------------------
/website/src/pages/components/ButtonWhite.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import classNames from 'classnames';
3 |
4 | export default function ButtonWhite({
5 | to, children, className, target,
6 | }) {
7 | return (
8 |
13 | {children}
14 |
15 | );
16 | }
17 |
--------------------------------------------------------------------------------
/website/src/pages/components/HomeDemo.jsx:
--------------------------------------------------------------------------------
1 | import React, { useState, useCallback } from 'react';
2 | import {
3 | MotionScreen, MotionScene, SharedElement, useMotion,
4 | } from 'react-motion-layout';
5 | import { FiArrowLeft, FiPlay } from 'react-icons/fi';
6 |
7 | export default function HomeDemo() {
8 | const [animated, setAnimated] = useState(false);
9 | const [blocked, setBlocked] = useState(false);
10 | const withTransition = useMotion('story-0');
11 |
12 | const animate = useCallback(() => {
13 | if (blocked) {
14 | return;
15 | }
16 |
17 | setBlocked(true);
18 | withTransition(() => {
19 | setAnimated(!animated);
20 | setBlocked(false);
21 | })();
22 | },
23 | [withTransition, animated, blocked]);
24 |
25 | return (
26 | <>
27 |
28 | { !animated
29 | && (
30 |
31 |
32 |
33 |
34 |
39 |
40 |
41 | Patricia
42 |
43 |
44 | a minute ago
45 |
46 |
47 |
48 |
49 |
50 | Hey guys, as I promised here is my collection of vintage pictures. I hope you like it.
51 |
52 |
53 |
54 |
58 |
59 |
64 |
65 |
69 |
70 |
71 |
72 |
73 |
77 |
78 |
82 |
83 |
87 |
88 |
+1801
89 |
90 |
91 |
92 |
93 |
94 | )}
95 | { animated
96 | && (
97 |
98 |
99 |
100 |
101 |
106 |
107 |
108 |
109 |
110 |
111 | Patricia
112 |
113 |
114 |
115 |
116 | Hey guys, as I promised here is my collection of vintage pictures. I hope you like it.
117 |
118 |
119 |
120 |
125 |
126 |
127 |
131 |
132 |
136 |
137 |
141 |
142 |
143 |
144 |
145 |
146 |
147 | )}
148 |
149 |
150 |
151 | {animated ?
:
}
152 |
153 | {animated ? 'Go back' : 'Run animation'}
154 |
155 |
156 |
157 | >
158 | );
159 | }
160 |
--------------------------------------------------------------------------------
/website/src/pages/credits.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import Layout from '@theme/Layout';
3 | import ButtonWhite from './components/ButtonWhite';
4 |
5 | function Home() {
6 | return (
7 |
11 |
12 |
Thanks to
13 |
14 |
15 |
The amazing tool for generating Docs
16 |
17 | Docusaurus
18 |
19 |
20 |
21 |
22 |
For an amazing codepen
23 |
24 | Animated Mouse Scroll Indicator
25 |
26 |
27 |
28 |
29 |
For those amazing images
30 |
31 | Unsplash
32 |
33 |
34 |
35 |
36 |
37 | );
38 | }
39 |
40 | export default Home;
41 |
--------------------------------------------------------------------------------
/website/src/pages/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import classnames from 'classnames';
3 | import { FiCode, FiArchive, FiLink } from 'react-icons/fi';
4 | import Layout from '@theme/Layout';
5 | import { MotionLayoutProvider } from 'react-motion-layout';
6 | import Button from './components/Button';
7 | import HomeDemo from './components/HomeDemo';
8 | import ButtonWhite from './components/ButtonWhite';
9 | import styles from './styles.module.css';
10 |
11 | const makeExample = (uri) => ``;
18 |
19 | const exampleChat = makeExample('chat-example-dyyy1');
20 | const galleryExample = makeExample('instagram-example-b6gkm');
21 | const friendsExample = makeExample('friends-example-n7jpk');
22 |
23 | const features = [
24 | {
25 | title: 'Declarative',
26 | icon: ,
27 | description: (
28 |
29 | Easy as wraping your text or images with our SharedElement component.
30 |
31 | ),
32 | },
33 | {
34 | title: 'Isolated',
35 | icon: ,
36 | description: (
37 |
38 | It does not require external state management libs.
39 |
40 | ),
41 | },
42 | {
43 | title: 'Router Ready',
44 | icon: ,
45 | description: (
46 |
47 | Dispatch animations when changing routes using our React-Router Link component.
48 |
49 | ),
50 | },
51 | ];
52 |
53 | function Feature({ title, description, icon }) {
54 | return (
55 |
56 |
57 | { icon }
58 |
59 |
{title}
60 |
{description}
61 |
62 | );
63 | }
64 |
65 |
66 | function Home() {
67 | return (
68 |
72 |
73 |
74 |
75 |
76 |
Motion Layout
77 |
78 | Create beautiful immersive hero animations using shared components.
79 |
80 |
81 |
82 | Get Started
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
95 |
96 |
97 | {features && features.length && (
98 |
99 |
100 |
101 | {features.map((props, idx) => (
102 | // eslint-disable-next-line react/no-array-index-key
103 |
104 | ))}
105 |
106 |
107 |
108 | )}
109 |
110 |
What?
111 |
112 |
113 | There are amazing libraries like framer-motion that help you create animations when mounting or
114 | unmounting components. But, if two views have the same image in different positions and sizes,
115 | they cannot be animated together. With Motion Layout, you can link components together to animate
116 | them when changing views.
117 |
118 |
119 |
120 |
121 | Get Started
122 |
123 |
124 |
125 | Or scroll down to see it in action
126 |
127 |
128 |
129 |
130 |
131 |
134 |
135 |
136 |
Gallery
137 |
138 | This example shows you how MotionLayout animate
139 | images
140 | using React Router.
141 |
142 |
Click on any image to navigate and dispatch the animation.
143 |
144 |
145 |
146 | View code on Sandbox
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
Chat
155 |
156 | This example shows you how MotionLayout animate
157 | images
158 | and
159 | text
160 | using React Router.
161 |
162 |
Click on any message to navigate and dispatch the animation.
163 |
164 |
165 |
166 | View code on Sandbox
167 |
168 |
169 |
170 |
171 |
174 |
175 |
176 |
177 |
180 |
181 |
182 |
Friends
183 |
184 | This example shows you how MotionLayout animate
185 | divs
186 | using React Router.
187 |
188 |
Click on any item to navigate and dispatch the animation.
189 |
190 |
191 |
192 | View code on Sandbox
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 | );
205 | }
206 |
207 | export default Home;
208 |
--------------------------------------------------------------------------------
/website/src/pages/styles.module.css:
--------------------------------------------------------------------------------
1 | /* stylelint-disable docusaurus/copyright-header */
2 | /**
3 | * CSS files with the .module.css suffix will be treated as CSS modules
4 | * and scoped locally.
5 | */
6 |
7 | .heroBanner {
8 | padding: 4rem 0;
9 | text-align: center;
10 | position: relative;
11 | overflow: hidden;
12 | }
13 |
14 | @media screen and (max-width: 966px) {
15 | .heroBanner {
16 | padding: 2rem;
17 | }
18 | }
19 |
20 | .buttons {
21 | display: flex;
22 | align-items: center;
23 | justify-content: center;
24 | }
25 |
26 | .features {
27 | display: flex;
28 | align-items: center;
29 | padding: 2rem 0;
30 | width: 100%;
31 | box-shadow: 0 -5px 15px -5px rgba(0, 0, 0, 0.05);
32 | }
33 |
34 | .featureImage {
35 | height: 200px;
36 | width: 200px;
37 | }
38 |
--------------------------------------------------------------------------------
/website/static/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeffersonlicet/react-motion-layout/6ddb82c0d9c292fd0e666b2dc507734e51b58058/website/static/img/favicon.ico
--------------------------------------------------------------------------------
/website/static/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeffersonlicet/react-motion-layout/6ddb82c0d9c292fd0e666b2dc507734e51b58058/website/static/img/logo.png
--------------------------------------------------------------------------------