solid-persistent
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

SolidJS utility to create persistent components that keep their state and elements cached when removed from the DOM.

Features

  • Persists both JavaScript state and HTML elements
  • Supports SSR

Usage

Import the createPersistent utility and pass your component to it. Make sure to call the utility inside a component that doesn't unmount. Then use the returned Accessor in your JSX where it can unmount.

import createList from 'solid-list'
const PersistedDialogContent = () => {
  const persistedContent = createPersistent(() => {
    return <input />
  })

  return (
  <Dialog>
      <Dialog.Trigger>
        Open
      </Dialog.Trigger>
      <Dialog.Portal>
        <Dialog.Content>
          {persistedContent()}
        </Dialog.Content>
      </Dialog.Portal>
    </Dialog>
  )
}

Further Reading

This utility is from the maintainers of corvu, a collection of unstyled, accessible and customizable UI primitives for SolidJS. It is also documented in the corvu docs under Persistent.

Package Sidebar

Install

npm i solid-persistent

Weekly Downloads

905

Version

0.1.0

License

MIT

Unpacked Size

5.58 kB

Total Files

6

Last publish

Collaborators

  • giyomoon