GithubHelp home page GithubHelp logo

Comments (1)

sinclairzx81 avatar sinclairzx81 commented on May 26, 2024 1

@MentalGear Hi,

Check

TypeBox will terminate on the first error with Check by default. Internally, this is done using chained logical expressions (A && B && C) where if A fails, condition B and C are not checked.

const A = () => { console.log('A'); return false } 
const B = () => { console.log('B'); return true } 
const C = () => { console.log('C'); return true } 

const R = A() && B() && C() // only A is printed

All checks are implemented using logical expressions like the above.

Errors

Unlike Check, TypeBox uses an iterator system for Errors. Because errors may need to be exhaustive, the Check logic is re-implemented for the Errors to "NOT use chained expressions" and to "NOT terminate on error". Instead the Errors function will yield at each failure case and continue....the caller receiving the errors can chose to yield only the first (terminate on error) or all (exhaustive checking)

const T = Type.Object({ ... })

const F = Value.Errors(T, { ... }).First()  // terminate at first error

const A = [...Value.Errors(T, { ... })]     // exhaustive errors

This means that there no need to implement a strict mode, as the caller can chose either first or exhaustive processing by receiving values of the iterator.

Usage

Putting it all together, the following implements a Parse function using both Check and Errors.

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

export function Parse<T extends TSchema>(schema: T, value: unknown): Static<T> {
  if(Value.Check(schema, value)) return value        // check and return
  const first = Value.Errors(schema, value).First()! // optionally gather diagnostics
  throw Error(first.message)                         // ... and throw
}

const A = Parse(Type.String(), 'hello')

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.