Coder Social home page Coder Social logo

material-ui-react-hook-form-builder's Introduction

material-ui-react-hook-form-builder

Create easy forms via config file in react using material-ui

NPM JavaScript Style Guide

Install

npm install --save [email protected]:desarrollo/simply-form-builder.git

Usage

Need to install @material-ui/icons in your main app. Create forms via config file

config.js

// Libraries
import { string } from 'yup'

// Icons
import CategoryIcon from '@material-ui/icons/Category'
import DescriptionIcon from '@material-ui/icons/Description'

export default {
  name: {
    type: 'input',
    name: 'name',
    label: 'Name',
    icon: CategoryIcon,
    validation: string()
  },
  description: {
    type: 'textarea',
    name: 'description',
    label: 'Description',
    validation: string(),
    icon: DescriptionIcon,
    multiline: true,
    rows: 4
  }
}

App.js

import React, { useState } from 'react'

import BuildForm from 'material-ui-react-hook-form-builder'

import config from './config'

const App = () => {
  const [formData] = useState(() => {
    const data = Object.assign({}, config)
    return data
  })

  const handleSubmit = (formData) => {
    console.log('formData', formData)
  }

  return (
    <BuildForm
      config={formData}
      onSubmit={handleSubmit}
      loading={false}
      submitErrors={{}}
    />
  )
}

export default App

License

MIT ©

material-ui-react-hook-form-builder's People

Contributors

matiasniz avatar julian-linux avatar

Watchers

James Cloos avatar

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.