Giter VIP home page Giter VIP logo

Comments (2)

sinclairzx81 avatar sinclairzx81 commented on July 20, 2024

@eXigentCoder Hi,

TypeBox does't generate enum schematics....currently. Instead it preferences anyOf because this keyword generalizes to all types, (not limited to string, number, boolean, etc), and also means TypeBox can maintain a singular code path for inferring and processing unions (where enum would introduce a secondary path).

This said, I am looking into supporting the enum string representation, but it's not going to be ready for some time. The work involves implementing a infrastructure to remap Enum into Union when attempting to apply type transforms and composition, of which attempts to introduce this under the current infrastructure would be untenable given the complexity of unions.


StringEnum

Even though TypeBox doesn't generate these schematics, you can write a custom type that does. The following is one way to approach it.

import { Type, Static } from '@sinclair/typebox'

const StringEnum = <T extends string[]>(items: [...T]) => 
  Type.Unsafe<T[number]>({ type: 'string', enum: items })

// ...

const T = StringEnum(['A', 'B', 'C'])

type T = Static<typeof T>

If using the TypeCompiler / Value modules to validate this type, have a read over the TypeRegistry section of the readme as you will need to register for schematics of this form.

https://github.com/sinclairzx81/typebox#typeregistry

Hope this helps
S

from typebox.

eXigentCoder avatar eXigentCoder commented on July 20, 2024

Hey there,
Thanks so much for the feedback, makes a lot of sense and thank you for a really awesome library!

from typebox.

Related Issues (20)

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.