Skip to content

BrandynL/typescript-disciminated-union

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A discriminated union utility for typescript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published