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

@itrulia/fractal-variant-status

v0.1.2

Published

Fractal plugin that allows you to set a status on the components variants and filtering them out if needed!

Downloads

5

Readme

@itrulia/fractal-variant-status

Fractal plugin that allows you to set a status on the components variants and filtering them out if needed!

This plugin allows you to tag variants of components if they should be used/can be used or hide work in progress stuff in production releases.

Looking for status labels on components? Then @itrulia/fractal-component-status is what you want :)

Please note that this plugin only works for fractal v2!

Installing / Getting started

To install it you need to require it like this:

npm install --save @itrulia/fractal-variant-status

This will add the @itrulia/fractal-variant-status dependency in to your package.json.

Now you can add it to your fractal.config.js like this:

app: {
    ...
    plugins: [
        ["@itrulia/fractal-variant-status", {
            statuses: [
                {
                    id: "draft",
                },
                {
                    id: "wip",
                },
                {
                    id: "deprecated",
                },
                {
                    id: "ready",
                },
            ],
            defaultStatus: "wip",
            blacklist: [], 
            whitelist: []
        }]
    ]
},

In your components config.js you can now add

{
    ...
    variants: [
        {
            ...
            status: <STATUS_ID>
        }
    ]
}

In your _component.njk you can now have access to variant.status like this:

{% if variant.status %}
    {{ variant.status.id }}
{% endif %}

inside the variant loop.

Developing

Here's a brief intro about what a developer must do in order to start developing the project further:

git clone https://github.com/Itrulia/fractal-variant-status
cd fractal-variant-status/
npm install

This will download all dependencies so that you are ready to go.

Deploying / Publishing

You will need to publish this to the github and npm repository.

To do this you will need to do the following steps:

  • As soon as you are done with development (don't forget the tests if necessary please ;) ) please commit your code
  • After that you will need to update the version number of the package.json, please do this via the npm version tool. Don't forget to set the correct version number according to the SEMVER guidelines.
  • Please push your code to master now and set a tag (same version as you set earlier) with a v prefix (e.g. v1.1.0) and add release notes for what has changed so everyone knows what to do when there are breaking changes and what has changed for them.
  • Now you are ready to publish it to the npm repository. You can do this via npm publish. Further information can be founde on the official npm documentation page.

Features

  • Allows you to add statuses to your components variants
  • Allows you to filter statuses to not be generated/displayed

Configuration

Configs are compatible with @itrulia/fractal-component-status

Statuses

Type: Array<Status> Default:

[
    {id: "draft"},
    {id: "wip"},
    {id: "deprecated"},
    {id: "ready"}
]

The statuses that are available in the application. The package will warn you if a component has an status that does not exist!.

Status

Type: {id: String}

Anything that is added to this object will also be available in the template! This is useful if you want to give additional information in the UI.

DefaultStatus

Type: String Default: wip

Status that is used if the component has no status set.

Whitelist

Type: Array<String> Default: []

Array of status ids that should be included in the generated build.

Blacklist

If whitelist is populated blacklist will have no effect!

Type: Array<String> Default: []

Array of status ids that should be filtered out of the generated build.

Contributing

When you publish something open source, one of the greatest motivations is that anyone can just jump in and start contributing to your project.

To make it easier for everyone to contribute to this project and understand it, please always update the documentation when you create or modify anything.

Also always try to improve atleast 1 small thing when you are already there so that over time the project gets better and better, this is also known as The Boy Scout Rule.

Links

  • Repository: https://github.com/Itrulia/fractal-variant-status
  • Issue tracker: https://github.com/Itrulia/fractal-variant-status/issues
    • In case of sensitive bugs like security vulnerabilities, please contact [email protected] directly instead of using issue tracker. We value your effort to improve the security and privacy of this project!
  • Related projects:
    • Fractal: http://fractal.build/

Licensing

Copyright (c) 2018 Karl Merkli

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.