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

typescript-discriminated-union

v1.0.0

Published

A simple, yet powerful discriminated union handling typescript utilitiy

Downloads

4

Readme

Overview

Discriminated unions are a powerful utility that can help you keep your code closely-coupled, while helping to keep impossible state impossible with help from the compiler.

These features are already present in javascript/typescript, but this library aims to standardize your implementation, making unions easier to implement and interact with, while leaving a small footprint at less than 50KB.

How to use

Install via NPM

npm i --save typescript-discriminated-union
  1. Create a discriminated union type

import { DiscriminatedUnion, Union } from 'typescript-discriminated-union'

type LoadedData = object[]
type LoadingUnion = DiscriminatedUnion<[
  Union<'Loading','loading data...'>,
  Union<'Loaded',LoadedData>,
]>

let myLoadedData:LoadingUnion = {
  case:'Loading',
  value:'loading data...'
}
  1. Handle the union cases explicitly in your code
import { handleDiscriminatedUnion } from 'typescript-discriminated-union'

handleDiscriminatedUnion({
  value:myLoadedData,
  config:{
    // the compiler will require each union to be handled
    Loading:x => {
      return x // returns string 'loading data...'
    },
    Loaded:x => {
      // here's your data, along with it's union case
      // returns your object[]
      return x
    },
  }
})

Other use-cases

  • This can be especially helpful when consuming unions in react via React components
export const DiscriminatedUnionHandler = <
  V extends {},
  K extends string,
  T extends Union<K, V>[],
  U extends DiscriminatedUnion<T>,
>(
  // note the React.ReactNode type supplied
  props: DiscriminatedUnionProps<V, K, T, U, React.ReactNode>
) => (
  <React.Fragment>
    {handleDiscriminatedUnion(props)}
  </React.Fragment>
)

By specifying the TReturn of the DiscriminatedUnionProps, you can limit the return type of your implementation.

Consider the following implementation which requires each union's config to return a promise:

export const DiscriminatedUnionHandler = <
  V extends {},
  K extends string,
  T extends Union<K, V>[],
  U extends DiscriminatedUnion<T>,
>(
  props: DiscriminatedUnionProps<V, K, T, U, Promise<any>>
) => (
  handleDiscriminatedUnion(props)
)

Contributing

Feel free to fork the official repository and submit a pull request with your proposal for changes. Please include a dscriptive summary of the changes you are making, and why you feel they should be implemented.

Testing your changes locally

  1. Build the production files

npm run prepublish

  1. Make the package available locally

npm link

  1. Create a seperate project and add the local package

npm link typescript-discriminated-union

Questions

Questions can be posted via GitHub issues on the official repository.

Publishing

Test the build prior to publishing

npm run prepublish

Update the version

npm version [major|minor|patch|<version>|etc..]

run npm version --help for more info

Publish the package

npm publish