GithubHelp home page GithubHelp logo

Comments (12)

timothyallan avatar timothyallan commented on May 20, 2024 1

Okay cool, thanks. I was only able to get it going by exporting a function like this:

import { Form } from 'react-form';

export default () =>
  <Form
    validate={validateMethods}
  > ...
)

from form.

vladra avatar vladra commented on May 20, 2024

Ah, I've just missed that API is changed and it should be used different way...

from form.

timothyallan avatar timothyallan commented on May 20, 2024

Ahh, what changed? I'm getting the same error, might be nice to put a solution for others who come here.

from form.

tannerlinsley avatar tannerlinsley commented on May 20, 2024

from form.

timothyallan avatar timothyallan commented on May 20, 2024

The same one in the OP:
Warning: Something is calling a React component directly. Use a factory or JSX instead. See: https://fb.me/react-legacyfactory
Dynamic page loading failed TypeError: Cannot read property '__reactAutoBindPairs' of undefined

Dying on export default Form({ validate: validateMethods })(RegisterForm);

which was working great previously.

from form.

tannerlinsley avatar tannerlinsley commented on May 20, 2024

The new Form export is now a react component instead of a factory. Use it like so:

import { Form } from 'jumpsuit'
export default (
  <Form
    defaultValues={{...}}
    validate={(values) => {...}}
    ...
  >
    {(api) => (
      <div>
        ...your form compoment
      </div>
    )}
  </Form>
)

from form.

tannerlinsley avatar tannerlinsley commented on May 20, 2024

Right. That's intended. So basically, you could make your own factory like the old one by doing something like:

export default function FormFactory (props) {
  return (component) => <Form {...props}>{component}</Form>
}

// Usage
const MyForm = FormFactory(defaults)(component)
(
  <MyForm validate={() => {...}} />
)

from form.

timothyallan avatar timothyallan commented on May 20, 2024

Hrmm, it's late and I'm overlooking something trying to get a Factory going based of that example.
I keep getting expected a string (for built-in components) or a class/function (for composite components) but got: object.. I've tried wrapping the FormFactory export in a function, and while I don't get an error that way, I also don't get any Form content.

FormFactory.js

import React, { PropTypes } from 'react';
import { Form } from 'react-form';

export default function FormFactory(props) {
  return (component) => <Form {...props}>{component}</Form>;
}

RegisterForm.js

class RegisterForm extends Component {
  render() {
    return (
      <form>
        <div className="grid1">
.....

export default FormFactory({
  validate: validateMethods,
  defaultValues: {
    test: true,
  }
})(RegisterForm)

from form.

tannerlinsley avatar tannerlinsley commented on May 20, 2024

from form.

timothyallan avatar timothyallan commented on May 20, 2024

Yep, that's what I'd thought as well. Doing that still gives React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: object..

The component that FormFactory gets ends up being
Object $$typeof:Symbol(react.element) _owner:null _self:null type:RegisterForm() ....

from form.

thg303 avatar thg303 commented on May 20, 2024

is there any migration guide for this???

from form.

thg303 avatar thg303 commented on May 20, 2024

migration guide

old versions:

import React from 'react'
import {Form, Text} from 'react-form

// form component
const MyFormComponent = ({submitForm}) => {
	return (
		<form>
			<label>test</label>
			<Text field="name" placeholder="name" />
			<button type='submit'>Submit</button>
		</form>
	)
})

const MyForm = Form({
  validate={({ name }) => {
      return {
        name: !name ? 'A name is required' : undefined
      }
    }}
})(MyFormComponent)

export default MyForm

// usage:
import MyForm from './MyForm'

const FormViewer = () => {
	return (
		<MyForm onSubmit={(values) => console.log('Success!', values)}/>
	)
}

should become like:

import React from 'react'
import { Form, Text } from 'react-form'

const myForm = (
  <Form
    onSubmit={(values) => {
      console.log('Success!', values)
    }}
    validate={({ name }) => {
      return {
        name: !name ? 'A name is required' : undefined
      }
    }}
  >
    {({submitForm}) => {
      return (
        <form onSubmit={submitForm}>
          <Text field='name' />
          <button type='submit'>Submit</button>
        </form>
      )
    }}
  </Form>
)

from form.

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.