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

@frctl/fractal-extension-statuses

v0.1.4

Published

Configurable workflow statuses for your Fractal components

Downloads

9

Readme

Fractal statuses extension

Configurable workflow statuses for your Fractal components :vertical_traffic_light:

Build Status NPM Version

This plugin is for use with the work-in-progress Fractal v2 release and will not work with earlier versions.

Overview

This extension lets you define a set of statuses which can be applied to your components via their config files.

const statuses = require('@frctl/fractal-extension-statuses');
const fractal = require('@frctl/fractal')({
  src: 'path/to/components'
});

fractal.addExtension(statuses({
  default: 'wip',
  options: [
    {
      name: 'wip',
      label: 'In progress',
      color: 'red'
    },
    {
      name: 'ready',
      label: 'Ready',
      color: 'green'
    }
  ]
}));

fractal.parse((err, components) => {
  if (err) {
    return console.log(err);
  }

  const button = components.find('button');
  console.log(button.status); // {name: 'ready', label: 'Ready', color: 'green' }

  for (const status of components.getStatuses()) {
    //... do something with `status`
  }

  for (const component of components.filterByStatus('ready')) {
    //... do something with `component`
  }

});

Installation

npm i @frctl/fractal-extension-statuses --save

Usage

To give a component a status, add a status property to it's configuration file with the name of the appropriate status:

// @component/config.json
{
  "status": "ready"
}

Default statuses

The following default statuses are defined:

{
  name: 'prototype',
  label: 'Prototype',
  color: 'red'
},
{
  name: 'wip',
  label: 'In progress',
  color: 'orange'
},
{
  name: 'ready',
  label: 'Ready',
  color: 'green'
}

Unless otherwise specified, the default status is prototype.

Custom statuses

To add your own set of statuses, pass a set of status objects as an options array when initialising the extension:

const statusesExtension = require('@frctl/fractal-extension-statuses');
const myStatuses = statusesExtension({
  options: [
    // custom set of statuses
  ]
});

fractal.addExtension(myStatuses);

Each status object should have name, label and color properties, and can optionally have any other additional properties that you require.

API

Properties:

The extension adds a .status property to each component.

The value of this property will be a status object that matches the one specified in the component's config file. If no status is specified, the default status will be used.

API methods:

The extension provides the following API methods:

  • components.getStatuses() - Returns an array of all possible statuses
  • components.filterByStatus(status) - Returns an array of components that have been assigned the specified status

Requirements

Node >= v6.0 is required.