npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-hierarchical-view-controller

v2.0.0

Published

A hierarchical view controller for react. The core concept is that the controller has a stack of views. You can push a new view onto the stack, or change your position in the stack by popping into a specific position. Views are laid out from left to right

Downloads

58

Readme

react-hierarchical-view-controller

A hierarchical view controller for react. The core concept is that the controller has a stack of views. You can push a new view onto the stack, or change your position in the stack by popping into a specific position. Views are laid out from left to right as they are pushed onto the stack.

There are two modes to run in. Controlled & Uncontrolled. Controlled means that a single view component is on the screen at a time. Pushing onto the stack will transition the current view component off screen, and the new one on screen. Uncontrolled means that all view components are laid out next to each other, such that a user can scroll between them, so it is possible to see a portion of multiple view components at once. The default behavior is to scroll the latest view into the view, but this can be disabled.

The example directory shows an example of both controlled and uncontrolled versions of the view controller.

API

This is a bare minimum example of creating a view controller component and using its internal provider context to push and pop into the view stack.

import {
  HierarchicalViewController,
  HierarchicalViewControllerContext,
}  from 'react-hierarchical-view-controller'
import { useContext, useCallback } from 'react'

function ViewComponent (props) {
  const { stackPush, stackPop } = useContext(HierarchicalViewControllerContext)
  const setUiForward = useCallback(() => {
    stackPush({
      component: <ViewComponent position={props.position + 1} />,
      position: (props?.hvcPosition || 0) + 1,
    })
  }, [])

  let setUiBackward = useCallback(() => {
    if (props.position === 0) return
    stackPop({ position: props.position - 1 })
  }, [props.position])
  
  return <>
    <p>position in the stack: {props.hvcPosition}</p>
    <button onClick={() => setUiBackward()}>backward</button>
    <button onClick={() => setUiForward()}>foward</button>
  </>
}

function App () {
  return <>
    <HierarchicalViewController
      isControlled={true}
      stack={[{
        component: <ViewComponent position={0} />,
        parentProps: {
          className: 'view-component-parent'
        }
      }]}
    />
  </>
}

Pushing a new view component onto the stack can be done by calling stackPush with an action object that includes the component to render with its props already applied. position will determine where in the stack to place view component.

Similarly, in a controlled view controller context, stackPop can be called with an action that just includes the position to pop back to. Doing so does not mutate the stack. Only pushing into the stack will rewrite it, preserving entries at indicies before action.position, and removing those at the end of the stack.