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

storybook-deeper-sort

v1.1.4

Published

Powers up stories sort by providing more levels of control.

Downloads

1,447

Readme

Codecov Coverage

Storybook Deeper Sort

Provides more flexibility and more levels of control to story sort.

Note: This package is compatible with Storybook v7 and above. If you need compatibility with older versions of Storybook, please use deeperSort prior to v1.0.0.

Table of Contents

About

This package provides a function to sort stories with an API similar to the storybooks' order array but providing more than two levels of control.

Using the Storybook's built-in order array, you can have 2 levels of control:

// .storybook/preview.js

export const parameters = {
  options: {
    storySort: {
      order: ["Intro", "Pages", ["Home", "Login", "Admin"], "Components"],
    },
  },
};

The code above would generate:

Intro/
├─ Welcome
Pages/
├─ Home
├─ Login
├─ Admin
Components/
├─ PackageA/
│  ├─ A
│  ├─ B
│  ├─ C
├─ PackageB/
│  ├─ A
│  ├─ B
│  ├─ C

To achieve deeper control over the story sort order, you can use the deeperSort function provided by this package.

Using deeperSort, the following levels of control become possible:

// .storybook/main.js

import deeperSortSetup from "storybook-deeper-sort";

deeperSortSetup([
  "Intro",
  "Pages",
  ["Home", "Login", "Admin"],
  "Components",
  ["*", ["C"]],
]);

Here's an example of the sort order achieved using deeperSort:

Intro/
├─ Welcome
Pages/
├─ Home
├─ Login
├─ Admin
Components/
├─ PackageA/
│  ├─ C
│  ├─ A
│  ├─ B
├─ PackageB/
│  ├─ C
│  ├─ A
│  ├─ B

Installation

# npm
npm i -D storybook-deeper-sort

# yarn
yarn add -D storybook-deeper-sort

Usage

  1. In your .storybook/main.js file, import deeperSortSetup function and call it with the desired order array. For example:
import deeperSortSetup from "storybook-deeper-sort";

deeperSortSetup([
  "Intro",
  "Pages",
  ["Home", "Login", "Admin"],
  "Components",
  ["*", ["C"]],
]);
  1. In your .storybook/preview.js file, assign the storySort option to a function that uses globalThis.deeperSort for sorting the stories. For example:
const preview = {
  parameters: {
    options: {
      storySort: (a, b) => globalThis.deeperSort(a, b),
    },
  },
};

export default parameters;

The deeperSort function takes into account the order array provided in deeperSortSetup to determine the sort order of your stories. It enables more levels of control, allowing you to specify custom sorting for different sections and even individual stories.

Please note that due to restrictions in Storybook v7, it's not possible to define the storySort function externally. The use of globalThis allows us to access the deeperSort function from the preview.js file.

Options

The deeperSortSetup function accepts an optional config parameter that allows you to customize its behavior.

Currently, the only available option is docsFirst. By default, deeperSort prioritizes docs, placing them before other story types.

To disable the prioritization of docs, you can setdocsFirsttofalse:

// .storybook/main.js

import deeperSortSetup from "storybook-deeper-sort";

deeperSortSetup(
  ["Pages", ["Admin", "Login", "Home"], "Components", ["*", ["C", "*"]]],
  { docsFirst: false }
);

By setting { docsFirst: false }, deeperSort will sort all story types based on their order in the provided order array without giving special priority to docs stories.