Skip to content
This repository has been archived by the owner on Jan 17, 2024. It is now read-only.

React component that renders a form based on a yaml schema using Bootstrap 4 and a bunch of other stuff.

Notifications You must be signed in to change notification settings

MaximeGoyette/react-yaml-form

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React-yaml-form

React component that renders a form based on a yaml schema using Bootstrap 4 and a bunch of other stuff. This component probably has too many dependencies to be relevant but whatever ¯\(ツ)/¯. The developer has control over the onSubmit event, which returns the final values of the fields.

Example

// App.js

import React, { Component } from 'react'
import Form from './components/Form'
import form1 from './forms/form1.yml'

export default App extends Component {
    render() {
        const initialValues = {
            email: 'admin@admin.com',
            password: 'admin',
            chckbx: true
        }

        return (
            <Form
                {...form1}
                initialValues={initialValues}
                onSubmit={(values, { onSuccess, onError }) => {
                    if (values.email === 'admin@admin.com' && values.password === 'admin') {
                        onSuccess('Login successful.', () => {console.log('this is the callback')})
                    } else {
                        onError('Invalid creds.')
                    }
                }}
            />
        )
    }
}
# ./forms/form1.yml

name: 'login-form'
title: 'Login form'

fields:
  - name: 'email'
    type: 'email'
    label: 'Email address'
    placeholder: 'Enter your email address here'
    tooltip: 'Type your email address in this field'

  - name: 'password'
    type: 'password'
    label: 'Password'
    placeholder: 'Enter your password here'
    tooltip: 'Type your password in this field'

  - name: 'chckbx'
    type: 'checkbox'
    label: 'A random checkbox'
    tooltip: 'Toggle on or off the button by clicking on it'

submitText: 'Login'

Result

About

React component that renders a form based on a yaml schema using Bootstrap 4 and a bunch of other stuff.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published