[WIP] Multi Editor
Simple Form Manager for UI-Frameworks
👀 Example
const multiEditor = createMultieditor(editor => ({
initialData: {
id: "myId",
email: undefined,
name: undefined,
},
onSubmit: async (data) => {
console.log("Submitted ", data);
},
fixedProperties: ["id"],
validationSchema: {
email: agileResolver(isString, isEmail, isRequired),
name: yupResolver(Yup.string().required().max(10).min(2)),
}
}));
<label>First Name:</label>
<input
onChange={(e) => signUpEditor.setValue("firstName", e.target.value)}
defaultValue={signUpEditor.getItemInitialValue("firstName")}
/>
<ErrorMessage error={signUpEditor.getStatus("firstName")?.message} />
multiEditor.submit();
⛳️ Sandbox
Test the Multieditor yourself in a codesandbox.
It's only one click away. Just select your preferred Framework below.
More examples can be found in the Example section.
❓ Why Multieditor
🚅 Straightforward
Write minimalistic, boilerplate-free code that captures your intent.
agileResolver(isRequired, isString('custom error message'), isEmail);
yupResolver(Yup.string().email());
computeMethods: {
name: (value) => {
return value.toLowerCase();
}
}
🤸 Flexible
- Works in nearly any UI-Framework (currently supported are React, React-Native and Vue).
- Surly behaves with the workflow that suits you best.
- Has 0 external dependencies.
⚡️ Fast
Minimizes the number of re-renders
and validate computation.
⬇️ Installation
npm install @agile-ts/multieditor
The multieditor
package is an extension of AgileTs and doesn't work without the core
package,
which functions as the brain of AgileTs and is indispensable.
Unfortunately, we can't combine each core
with multieditor
version.
Therefore, we have created a table which shows which versions fit together without restrictions.
@agile-ts/multieditor | @agile-ts/core | NPM Version |
---|
v0.0.22+ | v0.2.5+ | v6+ |
Other Versions aren't supported anymore
📄 Documentation
Does the Multieditor sound interesting to you?
Take a look at our documentation,
to learn more about its functionalities and capabilities.
If you have any further questions,
feel free to join our Community Discord.
We will be happy to help you.
👨💻 Contribute
Get a part of AgileTs and start contributing. We welcome any meaningful contribution. 😀
To find out more about contributing, check out the CONTRIBUTING.md.
♥️ Contributors
Become a contributor