Skip to content

Commit 44f21bf

Browse files
committed
init formstate-x
1 parent ac5c57c commit 44f21bf

17 files changed

+7316
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
lib
3+
esm
4+
coverage

.npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
src
2+
jest.config.js
3+
tsconfig.json

README.md

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# formstate-x
2+
3+
Manage the state of your form with ease, inspired by awesome [formstate](https://github.com/formstate/formstate). formstate-x maintains and validates form state for you, totally automatically.
4+
5+
What we offer:
6+
7+
* **Type safety**: written in [Typescript](https://typescriptlang.org), you can compose complex form state without loss of type information
8+
* **Reactive**: based on [MobX](https://mobx.js.org), every dependency's change causes reaction automatically and you can easily react to state's change
9+
* **UI-independent**: formstate-x only deals with state / data, you can easily use it with any UI library you like
10+
11+
### Install
12+
13+
```shell
14+
npm i formstate-x
15+
// or
16+
yarn add formstate-x
17+
```
18+
19+
### Usage
20+
21+
```javascript
22+
import { FieldState, FormState, bindInput } from 'formstate-x'
23+
24+
const foo = new FieldState('')
25+
const bar = new FieldState(0)
26+
const form = new FormState({ foo, bar })
27+
28+
// handle submit
29+
async function handleSubmit(e) {
30+
e.preventDefault()
31+
const result = await form.validate()
32+
if (result.hasError) {
33+
alert('Invalid input!')
34+
return
35+
}
36+
// use the validated value
37+
await submitted = submit(result.value)
38+
}
39+
40+
// when render (with react)
41+
<form onSubmit={handleSubmit}>
42+
<FooInput {...bindInput(form.$.foo)}>
43+
<BarInput {...bindInput(form.$.bar)}>
44+
</form>
45+
```
46+
47+
### Comparison with [formstate](https://github.com/formstate/formstate)
48+
49+
formstate-x provides similar APIs with [formstate](https://github.com/formstate/formstate) because we like their simplicity. formstate has a very helpful document which we will recommend you to read. But there are some points of formstate that brought inconvenience to our development, and we got disagreement with formstate in related problems. That's why we build formstate-x:
50+
51+
1. formstate uses MobX but not embracing it, which constrained its ability (related issue: [#11](https://github.com/formstate/formstate/issues/11)). formstate-x leverages MobX's power substantially, so we can easily track all dependencies when do validation, including dynamic values or dynamic valdiators. That's also why realizing cross-field validation is extremly easy with formstat-x.
52+
2. formstate mixes validated, safe value with readable value (`$`), in some cases it's not suitable to use either `$` or `value`. formstate-x provides `value` as readable value, `$` as validated and safe value and `_value` for UI binding only.
53+
3. formstate doesn't provide a good way to extract value from `FormState` ( related issues: [#25](https://github.com/formstate/formstate/issues/25) [#28](https://github.com/formstate/formstate/issues/28)). formstate-x provides `value` as `FormState`'s serialized value, with full type info.
54+
4. formstate dosen't provide a good way to disable part of a `FormState`. `FormStateLazy` is like a hack and very different concept from `FieldState` & `FormState`. formstate-x provides `disableValidationWhen` to let you realize conditional validation with a single method call.
55+
56+
### API references
57+
58+
TODO.

jest.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
preset: 'ts-jest',
3+
testEnvironment: 'node',
4+
}

0 commit comments

Comments
 (0)