0.1.1 • Published 8 months ago

react-routerfly v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Why

We usually use the same React compoennt in different pages(routes) with different sizes and positions. Sometime you may want to have smooth animation of the component when switching between routes.

The component structure of React is presented in the form of a tree, and even the same component will have different instances under different routes. This means that when users switch between routes, the same component will not be shared across routes.

The existing solution for cross-route components is FLIP, which can simulate transition animations between components. However, it still creates two component instances and the internal state of the component is lost.

Routerfly is designed to address this need, and you can think of it as the React version of Vue Starport.

How

Since we cannot share components between different branches of the component tree, we can actually lift the components up to the root node so that they exist independently of the routes.

Using a proxy component to obtain the position, size, and props of the component, and pass the information to the actual component, allowing it to “fly” to the position of another page through animation when switching routes.

However, there is a problem with this approach. The node position of the component in the DOM tree is different from its original position because it is floating at the root node.

When the animation is finished, we can use the createPortal function to teleport it to the actual node in the DOM tree. Through this "landing" mechanism, the structure of the DOM tree can be maintained.

Install

npm i react-routerfly

Usage

export <RouterFlyCarrier> from react-routerfly and add it to the root component(app.ts). All useage of <RouterFly> should be inside <RouterFlyCarrier> component.

import { RouterFlyCarrier } from 'react-routerfly'

const App = () => {
  return (
    <RouterFlyCarrier>
      <>
        <Layout>
          <Outlet />
        <Layout/>
      </>
    </RouterFlyCarrier>
  )
}

export default App

In a certain page, wrap the component with <RouterFly> and pass the port prop (any string)

import {RouterFly} from 'react-routerfly'

const PageA = () => {
  return (
    <div>
    <!-- ... -->
    <RouterFly port={id} style={{height:600px}}>
      <MyComponent prop={value} />
    </RouterFly>
  </div>
  );
};

export default App;

On another page, use the same port to match it:

import {RouterFly} from 'react-routerfly'

const PageB = () => {
  return (
    <div>
      <!-- ... -->
      <RouterFly port={id} style={{height:400px}}>
        <MyComponent prop={value} />
      </RouterFly>
    </div>
  );
};

export default App;

Please note that you may need to add some styles to <RouterFly> so that it has a size even when there is no content. Also, place layout-related styles on <RouterFly>.

options

keepAlive

default value is true

you can config it on <RouterFlyCarrier> or <RouterFly>

config globally

  <RouterFlyCarrier keepAlive={?}>
        ...
    </RouterFlyCarrier>

also you can control each component's keepAlive config

  <RouterFly port={id} style={{height:400px}} keepAlive={?}>
        <MyComponent prop={value} />
      </RouterFly>

the priority of configuration of keepAlive on <RouterFly> is higher than <RouterFlyCarrier>

Todo

  • keepalive configurable(by default, <RouterFly> has keepalive enabled. This means that when you navigate to a page that does not have a corresponding <RouterFly> proxy, the component will not be unmounted and will remain in memory.)
  • animation duration configurable

License

MIT License © 2023 frankcao

0.1.0

10 months ago

0.1.1

8 months ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago