Giter Club home page Giter Club logo

Comments (2)

wsmd avatar wsmd commented on May 31, 2024 1

Hi @melloc01!

I'm not exactly sure what your use case is. If possible, please provide code snippets or a live example to help me better understand this limitations (e.g. codesandbox).

It sounds like .raw() might be what you need here. It was introduced to handle this type of inputs that can have any shape.

For example, if you provide a custom component that controls Requests, you can treat all data related to Requests as a single unit/input in the form state (even though it can be represented as multiple inputs in the UI).

const Requests = ({ onChange, validate, value }) => {
  // maintaining the requests state independently
  const [requests, setRequests] = useState(value);
  const handleChange = useCallback((data) => {
    // update the requests data how like
    onChange(requests); // calling the input's onChange to update formState
  });
  return (
    // logic to render and update the requests fields
  );
}

const Form = () => {
  const [formState, { text, raw }] = useFormState({ requests: [] });
  return (
    <>
      <input {...text('name')} />
      <Requests {...raw('requests')} formState={formState} />
    </>
  );
};

Keep in mind that validation errors can be anything (an object or an array) which will be useful if you want to have multiple errors for a single input.

I hope that helps.

from react-use-form-state.

melloc01 avatar melloc01 commented on May 31, 2024

That's cool, solved it. thanks @wsmd and sorry for the late reply.

from react-use-form-state.

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.