https://fresh.leveluptutorials.com/
yarn add @leveluptuts/fresh
import { Form, Field } from '@leveluptuts/fresh';
<Form
onSubmit={({ data }) => {
console.log(data);
}}
>
<Field>Name</Field>
<Field type="number">Number</Field>
<Field type="select" options={options} />
</Form>;
import { Form, Field } from '@leveluptuts/fresh';
<Form onSubmit={onSubmit}>
<Field>Name</Field>
<Field type="email">Email</Field>
<Field type="password">Password</Field>
<Field type="tags">Tags</Field>
<Field type="number">Number</Field>
<Field required type="select" options={options}>
Type
</Field>
<Field type="textarea">Text Area</Field>
<Field type="markdown">Markdown</Field>
<Field type="toggle">Markdown</Field>
</Form>;
The wrapper around your fields.
Prop | Type | Default | Description |
---|---|---|---|
onSubmit | func | () => {} | Can be any of the following types. text (default), email, number, select, password, tags. (See types below) |
buttons | boolean | true | if submit and cancel are shown |
cancelButton | boolean | true | if cancel is shown |
disabled | boolean | false | if the form is disabled |
The common API is shared among all elements. Type specific fields are found below.
Prop | Type | Default | Description |
---|---|---|---|
type | string | 'text' | Can be any of the following types. text (default), email, number, select, password, tags. (See types below) |
required | boolean | false | if a field is required |
label | boolean | true | if a field has a label |
Prop | Type | Default | Description |
---|---|---|---|
strength | boolean | true | Shows or hides the password strength meter below the field |
Prop | Type | Default | Description |
---|---|---|---|
options | array of strings | [] | The text and values of a select list. *Object support coming soon |
Not complete / in use yet, just standard html 5 validation
This library makes some calls to keep the API easy to use and maintain. Using it with another library that tries to bring it's own inputs in isn't really needed at this time.
yarn
yarn start
cd example
yarn
yarn start
I am huge fan of simple, easy APIs that take care of 90% of jobs easily. One form library I really enjoyed was https://kozea.github.io/formol/ . The API was simple in all of the ways that I love, but there were some aspects of the library that just didn't fit for us and our workflow. I wanted to make something that was more simple, but just as easy but with more configuration options. I'm also inspired by AutoForm for Meteor https://github.com/aldeed/meteor-autoform for future generation features.
MIT © leveluptuts