svelte-formup
TypeScript icon, indicating that this package has built-in type declarations

0.6.2 • Public • Published

svelte-formup

form helpers for svelte

License Latest Release View changelog Bundle Size

CI Coverage Status PRs Welcome Conventional Commits

What?

Not standing in the way and keeping everything smooth.

  • Plug'n'Play. Input elements in, values out.
  • Works just like a normal form. Except it does all the tedious work for you.
  • Extendable. Work with native form elements and custom input components out of the box.
  • Two-Way Binding. svelte-formup is two-way bound by default. Change a value in your object, and it changes in your inputs.
  • Async Validation. Everything is validated asynchronously for uninterrupted user experience.

Why?

sveltes action feature is a unique way to attach custom logic to DOM elements. Combined with its great way of two-way binding and its reactive stores this allows to write very native looking forms with no boilerplate.

Adding yup allows to define a schema for value parsing and validation. Yup schema are extremely expressive and allow modeling complex, interdependent validations, or value transformations.

Styling forms in a consistent way has always been a problem. Everyone has her own opinion about it. svelte-formup allows flexibel error reporting supporting both native and programmatic usage. Invalid form elements are marked supporting several validity state specific css selectors like :invalid. Additionally svelte-formup adds CSS classes (is-error, is-success, is-dirty, is-pristine, is-validating, is-submitting and is-submitted) for further custom styling. These classes maybe added to surrounding fieldsets or form group element depending on the validity state of the contained form elements. On non form elements these classes are set using the has- prefix instead of is-.

Installation

npm install svelte-formup

And then import it:

// using es modules
import { formup } from 'svelte-formup'
 
// common.js
const { formup } = require('svelte-formup')

Alternatively use UNPKG or jsDelivr packages.

Hotlinking from unpkg: (no build tool needed!)

import { formup } from 'https://unpkg.com/svelte-formup?module'

Usage

Native HTML form elements

Edit laughing-hopper-7il5k

<script>
  import * as yup from 'yup'
 
  import { formup } from 'svelte-formup'
 
  const { values, errors, dirty, validate, validity } = formup({
    schema: yup.object().shape({
      title: yup.string().oneOf(['Mr.', 'Mrs.', 'Mx.']).required(),
      name: yup.string().required(),
      email: yup.string().email().required(),
    }),
    onSubmit(data, context) {
      console.log('onSubmit', { data, context })
    },
  })
</script> 
 
<form use:validate>
  <p use:validity>
    <label for="title">title</label>
    <select id="title" bind:value="{$values.title}">
      <option></option>
      <option>Mr.</option>
      <option>Mrs.</option>
      <option>Mx.</option>
    </select>
  </p>
 
  <p use:validity>
    <label for="name">name</label>
    <input id="name" bind:value="{$values.name}" type="text" />
  </p>
 
  <p use:validity>
    <label for="email">email</label>
    <input id="email" bind:value="{$values.email}" type="email" />
  </p>
 
  <p>
    <button type="submit">Submit</button>
    <button type="reset">reset</button>
  </p>
</form>

Error Messages

Edit naughty-buck-t5yx4

svelte-formup does not provide any svelte components. Most projects have their own way of reporting errors. Below is an example component to simplify error handling.

<script>
  import { getFormupContext } from 'svelte-formup'
 
  export let at
 
  const { invalid } = getFormupContext()
 
  let error
 
  $: error = $invalid.get(at)
</script> 
 
{#if error}
<span class="error" aria-live="polite">
  <slot {error}>{error.message}</slot>
</span>
{/if}

This could be used like (omitting identical code for brevity)

<script>
  import IfError from './if-error.svelte'
</script> 
 
<form use:validate>
  <label for="name">name</label>
  <input id="name" bind:value="{$values.name}" type="email" />
  <IfError at="name" />
</form>

API

svelte-formup exports two functions:

Polyfills

TODO

  • add css class for each test per node: yup.string().email().required() => email required
  • what about invalid path (validate and validateAt)
  • debounce during testing: Timer Mocks
  • add aria based on schema: ARIA Forms
  • how to handle disabled fields, skip validation?
  • a guide how to implement a custom component
  • focus first error field after submit with error
  • on focus add css class: maybe a focused store?
  • provides IfError, Input, Select, Choice components using yup schema values to reduce boilerplate via 'svelte-formup-components'
  • svelte-society/recipes-mvp recipy: form validation with yup
  • examples like informed
  • style guide: form > :global(.valid.dirty)

Related Projects

Support

This project is free and open-source, so if you think this project can help you or anyone else, you may star it on GitHub. Feel free to open an issue if you have any idea, question, or you've found a bug.

Contribute

Thanks for being willing to contribute!

Working on your first Pull Request? You can learn how from this free series How to Contribute to an Open Source Project on GitHub

We are following the Conventional Commits convention.

Develop

  • npm start: Starts a snowpack dev server using src/__preview__
  • npm test: Run test suite including linting
  • npm run build: Generate bundles

NPM Statistics

NPM

License

svelte-formup is open source software licensed as MIT.

Package Sidebar

Install

npm i svelte-formup

Weekly Downloads

149

Version

0.6.2

License

MIT

Unpacked Size

228 kB

Total Files

18

Last publish

Collaborators

  • sastan