Code Monkey home page Code Monkey logo

Comments (3)

gustavoguichard avatar gustavoguichard commented on May 28, 2024 4

@mahrz24 and @zolzaya when you use Zod's .refine on a schema it is not a Schema anymore, it will become z.ZodEffects.
The remix-forms' Form element should receive a schema though.

The solution is to save the schema in a const and refine it only in the domain function like so:

// Your schema file
const schema = z.object({
    email: z.string().min(1).email(),
    password: z.string().min(1),
    passwordConfirmation: z.string().min(1)
})

// Your component
const MyComponent = () => {
  return <Form schema={schema} />
}

// Your domain file
const df = makeDomainFunction(
  schema.refine((data) => data.password === data.passwordConfirmation, {
    message: 'Passwords do not match',
    path: ['passwordConfirmation'],
  })
)(async ({ email, password, passwordConfirmation }) => {
  // ...
})

This solution should make the Form work on both client and server.

I'll be closing this issue for now, feel free to reopen it if my solution doesn't suffice ;) .

from remix-forms.

zolzaya avatar zolzaya commented on May 28, 2024 1

@gustavoguichard cool thanks :)

from remix-forms.

zolzaya avatar zolzaya commented on May 28, 2024

I have a same issue. Did you solve it?

from remix-forms.

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.