Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/saibotsivad/jsonapi-svelte-form

JSON:API based forms, built with Svelte.
https://github.com/saibotsivad/jsonapi-svelte-form

form json-api jsonapi svelte

Last synced: about 2 months ago
JSON representation

JSON:API based forms, built with Svelte.

Awesome Lists containing this project

README

        

# JSON:API Svelte Form

Tooling for building forms in Svelte for JSON:API backends.

If you use Svelte to build business webapps, and those webapps interact with [JSON:API](https://jsonapi.org/), than you've probably thought about building some tooling to help make it easier to build good forms, without so much boilerplate.

## How to Use

To import the Svelte components (documented below):

```js
import {
Field,
FieldSetter,
Form,
FormCreate,
FormRemove,
MakeDiff,
Relationship
} from 'jsonapi-svelte-form'
```

To import the mapper functions:

```js
import { saving, error, saved } from 'jsonapi-svelte-form/mapper'
```

## The Big Idea

Build a form with a couple Svelte component wrappers:

```html

import { Form, Field } from 'jsonapi-svelte-form'
export let form // a specially formed object

Inside your form, bind a property to an input element:

set(event.target.value)} />

```

Now, you can bind values using JSON Pointer paths.

There's a demo [here](https://saibotsivad.github.io/jsonapi-svelte-form/), or as a [Svelte REPL](https://svelte.dev/repl/ca6db8ec270d4f5c9f8cd679592e8441?version=3.43.0), to see how to use the tooling.

## Data Structure

When you get a response from a JSON:API server, you map it to a `JsonApiForm` object, typically using the `load` function:

```js
import { load } from 'jsonapi-svelte-form/mapper'
const fetchVehicle = () => fetch('/api/v1/vehicles/id001')
.then(response => response.json())
.then(load)
```

That structure of that object looks like this:

```js
const JsonApiForm = {
// This is the data you'll mutate with your form:
data: {
id001: {
id: 'id001',
type: 'car',
attributes: { /* ... */ }
}
},
// A copy is kept around that isn't allowed to change...
original: {
id001: {
id: 'id001',
type: 'car',
attributes: { /* ... */ }
}
},
// ...that way the changes between the two can be calculated:
changes: {
id001: [
{
op: 'add',
// (Note: the changes are JSON Patch objects, but
// the path is the array of accessors, instead of
// the escaped string.)
path: [ 'attributes', 'color' ],
value: 'red'
}
]
},
// If there are errors on a response, they can be mapped to this error
// object, which is a map to each resource:
errors: {
id001: {
attributes: {
color: [
// Each object is a valid JSON:API error object:
// https://jsonapi.org/format/#error-objects
{
code: 'TheServerErrorCode',
title: 'Human-readable summary.',
// etc.
}
]
}
}
}
}
```

## Field Component

When the `set` function of the `Field` component is called, e.g.:

```html

set(event.target.value)} />

```

the component updates the appropriate `form.data` property, and then updates the `form.changes` list by doing a diff against the `form.original` property.

> **Note:** your component is responsible for handling the difference between undefined and empty-string.

In the example above, when the input element is made to be empty, the default `event.target.value` is the empty string, so the `form.data` property would be set to the empty string. This matters when calculating the `changes` list for the `form` object: if the property was originally undefined and a change event is emitted where `value` is the empty string, the `form.changes` list will not be empty.

One way to handle that difference is simply:

```html
set(event.target.value || undefined)} />
```

This may be wanted or unwanted behaviour, so it is left up to your implementation to handle the difference.

## Field Component API

Required properties to set on the `Field` component:

* `form: JsonApiForm` - The form object needs to be bound for the reactivity to work.
* `id: String` - The resource identifier to bind to.
* `keypath: String | Array` - Either the JSON Pointer string, e.g. `"/path/to/thing"` or
the list, e.g. `[ "path", "to", "thing" ]`. (Note: using the string incurs a performance penalty, since
it will be converted to a list in the `Field` component.)

Optional properties:

* `debounceMillis: Integer` (default: `15`) - On every change, the diff between original and updated is calculated. This can get very expensive, and since it blocks the UI, it can cause the form to feel very jerky if many changes are made quickly. To counteract this, there is a debounce on the diff calculation, and you can modify the debounce delay with this property.

Emitted events:

**change** - Emitted after an object has been updated and the diff has been calculated. It emits an object with these properties.

* `id: String` - The resource identifier.
* `keypath: Array` - The JSON Pointer accessor tokens.
* `value: any` - The set value.

Slot properties:

* `value: any` - The value located at the resources keypath, or undefined.
* `errors: Array` - The list of errors, or an empty list.
* `set: Function` - Call this with the updated value, when it changes.
* `disabled: Boolean` - A convenient property which is true if the form is in the `saving` or `loading` state.

## Form Component

The `Form` component is responsible for handling creating and removing resources, so at the root of your form you'd have something like:

```html

create(resource)}Create

```

New resources are placed on the `form.data` object, with an id generated using a configurable prefix (by default `GID`) and an incrementing counter, e.g. `GID1` will be the id of the first generated resource.

The `create` function requires new resources to have their relationship defined, so e.g. on a car form you might make a `wheel` resource, but that relationship would need to be defined.

## Form Component Api

Required properties to set on the `Form` component:

* `form: JsonApiForm` - The form object needs to be bound for the reactivity to work.

Optional properties:

* `prefix: String` (default: `GID`) - The prefix used on the identifiers of created resources.
* `suffix: String` (default: blank string) - The suffix used on the identifiers of created resources.

Slot properties:

* `create: Function` - Used to create a new resource with a generated identifier. Call with
an object containing these properties:
* `relId: String` - The identifier of the resource to add this to, as a relationship.
* `relName: String` - The relationship accessor name of the relationship.
* `isArray: Boolean` (optional) - Set to true if the relationship is an array style.
* `type: String` - The type of the resource to create.
* `resource: Object` - The initial state of the created resource, with `id` and `type` set, e.g. `resource = { attributes, meta }`.
* `remove: Function` - Used to remove a resource. Call with an object containing these properties:
* `id: String` - The identifier of the resource to remove.
* `type: String` - The type of the resource to remove.
* `disabled: Boolean` - A convenient property which is true if the form is in the `saving` or `loading` state.

## License

Published and released under the [Very Open License](http://veryopenlicense.com).