rx-form-data
Minimal, Reactive Form data handling
- Fully written in Typescript
- Turns form into a signal of field values (user input & some metadata)
- Framework Agnostic
- Easy integration with any custom validation logic
- Super tiny with ZERO dependencies
Table of Contents
Install
npm install --save @metronlabs/rx-form-data
import RxFormData from "@metronlabs/rx-form-data";
const RxFormData = require("@metronlabs/rx-form-data");
The UMD build is also available on unpkg:
<script src="https://unpkg.com/@metronlabs/rx-form-data/lib/index.umd.js"></script>
You can find the library on window.RxFormData
.
Usage
import RxFormData from "@metronlabs/rx-form-data";
const { subscribe, register, dispatch, ACTION_TYPE } = RxFormData(
"some-form-id",
(formvalues, formvalidation, formdata) => {
console.log(
"ON SUBMIT HANDLER CALLED",
formvalues,
formvalidation,
formdata
);
return Promise.resolve([formvalues]);
}
);
dispatch(ACTION_TYPE.REGISTER_ALL);
dispatch(ATION_TYPE.REGISTER, ["some-field-x", "some-field-y"]);
const unregister = register(["some-field-x", "some-field-y"]);
dispatch(ACTION_TYPE.ADD_DECODERS, [
{
name: "validation-for-some-field-x",
use: [
(formvalues) => {
return true;
}
],
messages: ["Input is invalid"]
}
]);
const unsubscribe = subscribe((formvalues, formvalidation) => {
console.info("FORM DATA SUBSCRIBER", formvalues, formvalidation);
});
const unsubscribe2 = subscribe((formvalues, formvalidation) => {
console.info("FORM DATA SUBSCRIBER II", formvalues, formvalidation);
});
setTimeout(() => {
unsubscribe();
unsubscribe2();
}, 2 * 60 * 1000);
setTimeout(() => {
dispatch(ACTION_TYPE.DESTROY);
}, 3 * 60 * 1000);
API
Scan the type declarations (@types
folder) for some insights on implementation details:
RxFormData
Main package function. Use this to create an RxFormData instance.
const { subscribe, register, dispatch, ACTION_TYPE } = RxFormData(
"...",
(formvalues, formvalidation, formdata) => {...}
);
subscribe
Sets up subscriptions to form values and form validation updates. Takes a function as argument.
const unsubscribe = subscribe((formvalues, formvalidation) => {...});
unsubscribe()
register
Registers form field elements. Accepts a list of field names or regex expressions that are meant to match one or multiple field names.
const unregister = register(["username", "email", /^password.*/]);
unregister();
unregister(true);
dispatch
& ACTION_TYPE
Utilities to interface with the RxFormData instance
{
REGISTER: "REGISTER_FIELDS",
REGISTER_ALL: "REGISTER_ALL_FIELDS",
UNREGISTER: "UNREGISTER_FIELDS",
UNREGISTER_ALL: "UNREGISTER_ALL_FIELDS",
ADD_DECODERS: "ADD_DECODERS",
REMOVE_DECODERS: "REMOVE_DECODERS",
CLEAR_DECODERS: "CLEAR_DECODERS",
DESTROY: "DESTROY_PROGRAM"
};
dispatch(ACTION_TYPE.REGISTER, payload: Array<string | RegExp>);
dispatch(ACTION_TYPE.REGISTER_ALL);
dispatch(ACTION_TYPE.UNREGISTER, payload: Array<string | RegExp>);
dispatch(ACTION_TYPE.UNREGISTER, payload: { use: payload: Array<string | RegExp>, keepvalues: boolean });
dispatch(ACTION_TYPE.UNREGISTER_ALL, keepvalues?: boolean);
dispatch(ACTION_TYPE.ADD_DECODERS, payload: Array<{
name: string;
use: Array<(formvalues: Readonly<Record<string, ...>>) => boolean>;
messages: string[] | (context: Record<string, unknown>) => string | string[];
}>);
dispatch(ACTION_TYPE.REMOVE_DECODERS, payload: Array<string | RegExp>);
dispatch(ACTION_TYPE.CLEAR_DECODERS);
dispatch(ACTION_TYPE.DESTROY);
Contribute
First off, thanks for taking the time to contribute!
Now, take a moment to be sure your contributions make sense to everyone else.
Reporting Issues
Found a problem? Want a new feature? First of all see if your issue or idea has already been reported.
If not, just open a new clear and descriptive issue.
Submitting pull requests
Pull requests are the greatest contributions, so be sure they are focused in scope, and do avoid unrelated commits.
- Fork it!
- Clone your fork:
git clone https://github.com/<your-username>/@metronlabs/rx-form-data
- Navigate to the newly cloned directory:
cd @metronlabs/rx-form-data
- Create a new branch for the new feature:
git checkout -b features/my-new-feature
- Install the tools necessary for development:
npm install
- Make your changes.
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin features/my-new-feature
- Submit a pull request with full remarks documenting your changes.
License
MIT License © Ahmed Tadde
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice aTd this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.