GithubHelp home page GithubHelp logo

uselesspickles / ts-string-visitor Goto Github PK

View Code? Open in Web Editor NEW
10.0 10.0 1.0 512 KB

Generic TypeScript Visitor for String Enums and String Literal Union Types

License: MIT License

TypeScript 100.00%

ts-string-visitor's People

Contributors

uselesspickles avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

gitter-badger

ts-string-visitor's Issues

Compiler cannot infer the type of the visitor method parameter if you use enum values as the property names.

Cannot infer the type of the visitor method parameter if you use the enum value as the property name.

I reported this issue on the github TypeScript repo and was promptly informed that the issue is already fixed in development for the "next" version of TypeScript (currently named v2.7.0-dev).

There are two work-arounds to this:

  1. Explicity declare the type of the parameter.
  2. Use a string literal for the property name.

Example:

enum RGB {
    R = "r",
    G = "g",
    B = "b"
}

function rgbIdentity(rgb: RGB): RGB {
    return visitString(rgb).with<RGB>({
        // ERROR: type of `value` not inferred properly!
        // Type is implicitly 'any'
        [RGB.R]: (value) => {
            return value;
        },
        // Work-around option #1
        [RGB.G]: (value: RGB.G) => {
            return value;
        },
        // Work-around option #2
        "b": (value) => {
            return value;
        }
    });
}

After the new version fo TypeScript is released, add a unit test for this situation.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.