Giter VIP home page Giter VIP logo

Comments (4)

fabian-hiller avatar fabian-hiller commented on May 27, 2024

Have you read the documentation? Here is an example schema. Try it out in our playground.

import * as v from 'valibot';

const FormSchema = v.object({
  value: v.union([
    v.transform(v.string([v.regex(/^\s*$/u)]), () => null),
    v.string([v.toTrimmed(), v.minLength(3), v.maxLength(10)]),
  ]),
});

from valibot.

snrmwg avatar snrmwg commented on May 27, 2024

Of course I read the documentation 🙂
But I did not see the union for a solution. Thanks for your hint, Fabian.

I will try it this way:

const EmptyStringToNullTransform = transform(string([regex(/^\s*$/u)]), () => null)
const FormString = union([
    EmptyStringToNullTransform,
    string([toTrimmed()]),
  ])

const form = object({
  firstname: union([
    EmptyStringToNullTransform,
    string([toTrimmed()]),
  ]),
  lastname: string([toTrimmed(), minLength(2, 'too short')]),
  zipCode: union([
    EmptyStringToNullTransform,
    string([toTrimmed(), minLength(4, 'too short'), maxLength(5, 'too long')]),
  ]),
})

And I can simplify it like this:

const optionalFormString = (extraValidations: BaseValidation[] = []) => 
    union([
      EmptyStringToNullTransform,
      string([toTrimmed(), ...extraValidations]),
    ])

const form2 = object({
  firstname: optionalFormString(),
  lastname: optionalFormString([minLength(2, 'too short')]),
  zipCode: optionalFormString([
        minLength(4, 'too short'), 
        maxLength(5, 'too long')]),
})

What do you think about it?

from valibot.

snrmwg avatar snrmwg commented on May 27, 2024

As good as it looks. It could not make it work with Svelte Superforms.

In Zod it looks like this and it works:

const nullableFormString = (zs: ZodString = z.string()) => z.preprocess((v) => {
  if (typeof v === 'string') {
    const trimmed = v.trim()
    if (trimmed.length) return trimmed
  }
  return null
}, zs.nullable())

const SearchBoosterSchema = z.object({
  text: nullableFormString()
})

My Validbot schema looks like this:

export const SearchBoosterSchema = z.object({
  text: optionalFormString()
})

But then Superforms struggles with type problems "null vs. undefined". I can't see where source of undefined is.

from valibot.

fabian-hiller avatar fabian-hiller commented on May 27, 2024

You can to the same with Valibot. Check it out in our playground.

import * as v from 'valibot';

const Schema = v.coerce(
  v.nullable(v.string([v.minLength(3)])),
  (input) => (typeof input === 'string' && input.trim()) || null
);

from valibot.

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.