0.1.0 • Published 3 years ago

yafo v0.1.0

Weekly downloads
40
License
ISC
Repository
-
Last release
3 years ago

Yet Another Form Library for React

GitHub Workflow Status

Getting Started

Yafo is available through your favorite Node package manager:

npm install yafo

Yafo provides an interface for creating forms in a declarative way. Define your form fields once in a simple structure describing what each field is, then at the UI code, you place one-line rendered components, without having to hassle with callbacks and props and all kinds of custom logic for each field.

Check this example in CodeSandbox.

import { withForm, standardFieldComponents, FieldType, Field, Props, validate } from "yafo";

enum MyForm { FirstName, LastName }

const formFields = (): Field<MyForm>[] => [
    {
        id        : MyForm.FirstName,
        label     : "First name",
        type      : FieldType.Text,
        valid     : validate.regex(/[a-zA-Z{3,10}]/, "Invalid first name!"),
    },
    {
        id        : MyForm.LastName,
        label     : "Last name",
        type      : FieldType.Text,
        valid     : validate.regex(/[a-zA-Z{3,10}]/, "Invalid last name!"),
    },
    // Other fields...
]

const MyFormPage = ({ form }: { form: Props<MyForm> }) => (
    <div>
        <div>
            { form.field(MyForm.FirstName) }
            <br />
            { form.field(MyForm.LastName) }
            <br />
            <input type="submit" onClick={doSomething()} />
        </div>
        <br />
        <br />
        <div>
            Your full name is { form.value(MyForm.FirstName) } { form.value(MyForm.LastName) }
        </div>
    </div>
)

export default withForm(
    "my_form",
    standardFieldComponents,
    formFields,
    MyFormPage
)

Playground

The little project inside the playground folder provides a exemplary create-react-app based app showing Yafo in action. It's useful if you want to quickly try out Yafo and play around with its features without having to install it anywhere. The following commands need to be run in order to set up the playground:

npm run playground:build
npm run playground:start

With that, you should be able to try out Yafo by accessing localhost:3000.

FAQ

How is Yafo different than the countless other form libraries out there?

There are a number of good form abstractions for React out there, with many more features than I hope to add to Yafo. I wanted to build form pages where I wouldn't have to write <TextField /* a bunch of props and callbacks */ /> and then <ErrorMessage /*more props*/ /> at each field. I just wanted to write a placeholder where a field would be located, and move on. If there is one such library that gives me this, I admit I didn't search deeply enough.

In what circumstance would Yafo not be appropriate?

Yafo plays well if your form page consists of form fields that consistently follow the same UI style. For example, if two text fields don't look the same in your app, you're better off using something else probably.

The built-in Field Components are very simplistic and don't meet my requirements, what can I do?

Read about Field Components. You can either build your own Field Components satisfying your design's requirements or install an existing one.

I've built my form with Yafo, but in the end I didn't end up with fewer lines of code than if I used another form library. Why is that?

More lines of code isn't necessarily bad. Yafo separates declarative form definitions from UI/React logic. In the end you may have a large structure describing your form fields, but the actual UI/React logic is very simplistic, allowing you to just write a placeholder where a form field should be located. That data structure that makes your code large is more manageable than a bunch of component/props/callback logic.

0.1.0

3 years ago

0.1.0-beta-10

3 years ago

0.1.0-beta-9

3 years ago

0.1.0-beta-8

3 years ago

0.1.0-beta-6

3 years ago

0.1.0-beta-7

3 years ago

0.1.0-beta-5

3 years ago

0.1.0-beta-4

3 years ago

0.1.0-beta-2

3 years ago

0.1.0-beta-3

3 years ago

0.1.0-beta-1

3 years ago