1.5.0 ā€¢ Published 10 months ago

react-global-portals v1.5.0

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

React-Global-Portals

šŸ’– React-Global-Portals takes from you all worries related to show notifications/modal etc. on top of everything šŸ’–

āÆ Instalation

$ yarn add react-global-portals

or

$ npm install react-global-portals

āÆ Features

  • Painless setup
  • Effortless to use
  • Use inside or outside of components
  • Define position per portal
  • Portals can be dismissed automatically
  • Pause portal when the window losses focus
  • Display any react component
  • Can remove a portal programmatically
  • Queue portals

āÆ Small usage examples

It needs \ to render portals. Example setup:

export function App() {
    return (
        <div>
            <h1> React-Global-Portals </h1>
        </div>

        <PortalContainer /> // This is required
    )
}

A react component that will be used in examples listed below

function ExampleComponent() {
  return (
    <div>
      <h1>Component</h1>
    </div>
  );
}

portal.show

portal.show - it shows component as a portal, if any portal is already shown it will queue the passed one and show it when the current is dismissed.

  • It simply shows component on top.
const portalId = portal.show(<ExampleComponent />);
  • It shows component on top but with passed id
const customPortalId = 'Portal Id';
const portalId = portal.show(<ExampleComponent />, { id: customPortalId });
// portalId === customPortalId
  • We can add time in miliseconds when it should dismiss, and decide if timeout should be paused on focus loss
const portalId = portal.show(<ExampleComponent />, {
  timeout: 2000,
  pauseOnFocusLoss: true,
});
  • We can also change the position. By default, portal takes whole page but it can be easily changed
const portalId = portal.show(<ExampleComponent />, {
  position: {
    width: '100vh',
    height: '50vh',
    bottom: '0',
  },
});

portal.forceShow

portal.forceShow - allows to forcefully show portal, when any portal is already shown it will queue the current and show one thas was passed. Additionally, it can takes parameter of a type ForceAction that can be:

  • DismissNone : default action, put current portal into queue and show one that was passed
  • DismissCurrent : dismiss currently shown portal and show one that was passed
  • DismissQueue : dismiss all portals that are queued, queue the current one and show one that was passed
  • DismissAll : dismiss all portals (current and queued), and show one that was passed

  • Show passed component on top, and queue currently shown (if any)

const portalId = portal.forceShow(<ExampleComponent />);
  • Additionally, portal has custom Id and it will dismiss ALL other portals
const portalId = portal.forceShow(
  <ExampleComponent />,
  { id: 'CustomId' },
  'DismissAll'
);
  • This one will be dismissed after 5000 ms
const portalId = portal.forceShow(
  <ExampleComponent />,
  { timeout: 5000 },
  'DismissAll'
);

portal.dismiss

portal.dismiss - dismiss portal or delete it from queue.

  • Dismiss currently displayed portal
portal.dismiss();
  • Dismiss portal with identifier
portal.dismiss('myPortal');

portal.dismissAll

portal.dismissAll - it dismiss current portal and deletes all queued portals

portal.dismissAll();

Live Examples

At the moment examples are provided only inside examples folder

License

Licensed under MIT

1.5.0

10 months ago

1.4.0

10 months ago

1.3.0

10 months ago

1.2.0

10 months ago

1.1.0

10 months ago

1.0.0

10 months ago