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

@lbfalvy/pro-ui

v2.0.0

Published

A React.js component library with components that lend themselves to customization to create UIs for advanced users.

Downloads

40

Readme

Pro UI Components

License: MIT

This package contains components to build UIs for experts. All components lend themselves to modification by the user. To align with this principle, you should store the user preferences somewhere, at least in LocalStorage.

All components use react-dnd, so you have to wrap them in

<DndProvider backend={HTML5Backend}>
  ...
</DndProvider>

instances. You don't have to have a single big DndProvider, but you have to make sure that every source and the corresponding target are under the same DndProvider.

Components

Tabs

A tabbed container that allows to reorganise tabs with drag-and-drop, even between containers. It takes an array of tab definitions as its children.

interface TabData<T> {
  id: string | number
  title: ReactNode
  children: ReactNode
  metadata?: T
}

It is important that id be unique with respect to any group of Tabs elements within which movement is allowed because it is used for the key prop of tabs and contents alike. id and metadata together serve to identify the tab to your own code, so you should probably encode how to locate the Tabs element in metadata.

Usage:

<Tabs onMove={(position: number, id: string | number, metadata: any) => void}>
  {[
    {
      id: 0,
      title: 'Title of first tab',
      children: <div>Contents of first tab</div>,
      metadata: { some: 'data' }
    },
    {
      id: 'foo',
      title: <>Title of <em>another</em> tab</>,
      children: <div>Components of another tab</div>
    }
  ]}
</Tabs>

id can be either a string or a number. When the user moves a tab, onMove is called on the target container, with the following arguments:

  • the position the tab should be moved to
  • the ID of the moved tab
  • the metadata of the moved tab

The children won't be moved by themselves, you have to store your children in an appropriate structure and handle the onMove event in the parent component. For an example of how this could be done, see the story in the docs.

Splits

It is a container made of a tree of flexboxes, inspired by Visual Studio and the Unity editor. It takes a tree of split definitions as its children

interface SplitData {
  axis: 'x' | 'y'
  children: {
    ratio: number
    content: SplitData | ReactNode
  }[]
}

The component itself is called like so

<Splits minSize={number} splitTypes={string|string[]}
  onResize={(path: number[], after: number, amount: number) => void}
  onSplit={(path: number[], side: 'top'|'left'|'bottom'|'right', item: any, type: string) => void}>
  {children: SplitData}
</Splits>

There are a number of functions to help with transforming the tree, for a complete list, see the docs.

This component can also be combined with Tabs, there's a special wrapper called TabSplits with helper functions so a working setup is 20 lines.

Context menus

You can create custom context menus. The data is structured in a tree of tuples where the first element is the displayed name, and the second describes what the element does:

type ContextMenuOption = [ReactNode, (() => void) | ContextMenuOption[] | null | undefined]

The component itself is called like so:

<ContextMenu options={ContextMenuOption[]}>
  ...
</ContextMenu>

Right clicking on any descendant of this node will bring up the custom context menu rather than the browser's default one. If you nest them, the menu elements will appear one after the other, with a horizontal line separating them.

All layers of the context menu try to find room for themselves on either side of the mouse pointer / their parent option, they won't extend off-screen unless the frame is smaller than the menu.

On elements not wrapped in a ContextMenu, the browser's default context menu will still appear. You aren't supposed to disable this for accessibility reasons, but if you do it with something like

window.oncontextmenu = e => e.preventDefault()

then the custom menus won't break.

Documentation: https://lbfalvy.github.io/pro-ui/docs

See it in action at https://lbfalvy.github.io/pro-ui

Repository: https://github.com/lbfalvy/pro-ui

NPM: https://www.npmjs.com/package/@lbfalvy/pro-ui

Library created from This template by HarveyD