0.12.3 • Published 4 years ago

@lit-any/forms v0.12.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

@lit-any/forms codecov

Construct HTML forms from lightweight snippets for each field using lit-html

Installation

yarn add @lit-any/forms lit-html lit-element

Form setup

First you have to define a contract which will drive the form's appearance and functionality.

const contract = {
  fields: [{
    title: 'Age',
    property: 'age',
    type: 'http://www.w3.org/2001/XMLSchema#integer'
  }]
}

The contract will be used on a lit-form element to create an interactive form:

<lit-form .contract=${contract}
          submit-button-label="Register"
          @submit=${submitModel}></lit-form>

When the Register button is clicked submitModel will be called where the code will retrieve the form's value from event.detail.value.

function submitModel(e) {
  // submit lit-form's value
  fetch(e.detail.target, {
    method: e.detail.method,
    body: e.detail.value,
  })
}

The above is not enough to build a rich, convincing user experience as the form does not know how to receive the user's input. A plain <input type="text"> will be rendered.

Field setup

There are two ways for influencing the appearance of individual form input fields.

Pre-built component sets

The recommended way is to use a component to go with each field. Those components are imported as sets of elements which share design features and look & feel. Currently there are two such component sets being worked on:

The snippet below would be used to render a Vaadin text input for the age property used above

import { FieldTemplates } from '@lit-any/forms'
import { textbox } from '@lit-any/forms/components'
import vaadin from '@lit-any/components-vaadin'

// register Vaadin components to be used
FieldTemplates.default.useComponents(vaadin)

// render textbox when type in xds:integer
FieldTemplates.default.when
  .fieldMatches(field => field.type === 'http://www.w3.org/2001/XMLSchema#integer')
  .renders(textbox({
    type: 'single line',
  }))

Custom form fields

Alternatively the element's template can be handcrafted:

import { FieldTemplates } from '@lit-any/forms'

FieldTemplates.default.when
  .fieldMatches(field => field.type === 'http://www.w3.org/2001/XMLSchema#integer')
  .renders((field, id, value, set) => {
    return html`<input type=number value=${value} id=${id}
                       @change=${e => set(Number.parseInt(e.target.value, 0))}>`
  })

The field parameter is the description from the contract.

The id is unique id which can be set to the field.

The value is the initial value, if any. Setting it back will have no effect.

The set parameter is a function used to set tha value back to the form's model and has to be bound to the input control.

0.12.2

4 years ago

0.12.3

4 years ago

0.12.1

4 years ago

0.11.1

4 years ago

0.11.0

5 years ago

0.10.1

5 years ago

0.10.0

5 years ago

0.9.4

5 years ago

0.9.3

5 years ago

0.9.2

5 years ago

0.9.1

5 years ago

0.9.0

5 years ago

0.9.0-a3

5 years ago

0.9.0-a2

5 years ago

0.9.0-a1

5 years ago