@s7n/react-mounter
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

ENGLISH | 中文文档

React Mounter

React Mounter is a separate component mounting approach based on React。

It effectively solves the problem of component mounting being limited by the component hierarchy, somewhat similar in capability to createPortal but with a more concise syntax.

npm version npm downloads

Installation

To use @s7n/react-mounter with your React App, install it as a dependency

# If you use npm:
npm install @s7n/react-mounter 

# If you use yarn:
yarn add @s7n/react-mounter

Quick Start

Declare the components to be mounted under the MountProvider component, and then it will be selected to render under the MountConsumer component with same name.

function Header() {
  return (
    <div>
      <span>Welcome</span>
      <MountConsumer name="header-action" />  
    </div>
  )
}

function Content() {
  function onClick() {
    // do something ...
  }

  return (
    <div>
      <MountProvider name="header-action">
        <Button onClick={onClick}>Content Action</Button>
      </MountProvider>
    </div>
  )
}

function App() {
  return (
    <div>
      <Header />
      <Content />
    </div>
  )
}

For more information, see API and DEMO

API

MountProvider

Props Type Default Description
name string Mount Identification: children will be mount by same-name MountConsumer
visible? boolean | ((param?: object) => boolean) true Determines whether to mount. When use Function, param is passed through MountConsumer
children? ReactNode | ((param?: object) => ReactNode) null ReactNode or a Function that takes param and returns the ReactNode

|

MountConsumer

Props Type Default Description
name string Mount Identification: mount ReactNode that provide by same-name MountProvider
param? any Param will deliver to MountProvider's (visible and children)'s Function
children? ((views: ReactNode[]) => ReactNode) Receives all the mounted view and returns a ReactNode
fallback? ReactNode null A fallback UI when there is nothing to mount

DEMO

Pass parameters through 'param', and control whether components render through 'visible'

function Header() {
  const [value, setValue] = useState(10);

  return (
    <div>
      <MountConsumer 
        name="header-action" 
        param={{ value }}
      />
    </div>
  )
}

function Content() {
  return (
    <div>
      <MountProvider 
        name="header-action"
        visible={(param: any) => param && param.value % 2 === 0}
      >
        {
          (param: any) => {
            if (param?.value !== undefined) {
              return <h1>current value is: {param.value}</h1>
            }

            return <h1>Nothing</h1>
          } 
        }
      </MountProvider>
    </div>
  )
}

Design inspiration

The design inspiration comes from the usage of Template and TemplatePlaceholder in DevExtreme Reactive.

For more design Ideas, check out "Concise Architecture — Component Separation Mounting"

Differences from createPortal

Instead of needing to know the DOM of the target, we can provide the structure under the MountProvider to the MountConsumer for rendering by specifying a consistent "name".

It has a very good effect in implementing UI decoupling and injection in applications.

Package Sidebar

Install

npm i @s7n/react-mounter

Weekly Downloads

0

Version

1.0.3

License

ISC

Unpacked Size

23.4 kB

Total Files

15

Last publish

Collaborators

  • shuaiquan