Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get access to formik.isSubmitting #289

Open
adambedford opened this issue May 19, 2022 · 1 comment
Open

Get access to formik.isSubmitting #289

adambedford opened this issue May 19, 2022 · 1 comment

Comments

@adambedford
Copy link

Is there a way to get access to formik.isSubmitting within the form to disable the submit button?

@soren121
Copy link

soren121 commented Jun 3, 2022

Just roll your own Form component like so:

import { Formik } from 'formik';
import { Form } from 'react-bootstrap';

export const FormikComponent = ({ children, ...props }) => (
    <Formik {...props}>
        {(formikBag) => (
            <Form
                onSubmit={formikBag.handleSubmit}
                onReset={formikBag.handleReset}
            >
                {children(formikBag)}
            </Form>
        )}
    </Formik>
);
import { FormikComponent } from './formikComponent';
import { Form as RBF } from 'react-bootstrap-formik';
const { Input } = RBF;

<FormikComponent initialValues={{ email: '' }} onSubmit={handleSubmit}>
    {({ isSubmitting }) => (
        <Input name="email" label="Email" />
    )}
</FormikComponent>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants