Actions and filters are WordPress concept mainly which is called "WordPress Hooks" but hey, this doesn't mean that this concept should be used in WordPress environment only, no, you can use it in your React app easily.
It gives you much flexibility.
Cool, but what are "WordPress Hooks"?
WordPress defines hooks as a way for one piece of code to interact/modify another piece of code at specific, pre-defined spots.
Think about it like custom events fired in different positions and you can add your own listener on any of these events.
Please read this doc to have more details about "@wordpress/hooks" package that we use to let you extend some functionality easily.
Also, please read this doc to have a detailed explaination about hooks.
That means that you should insert first @wordpress/hooks package in your package.json file and install it.
Well, there are a lot of use cases. For example, if you would like to add some functionality or send the form data to a third party after the user answers a specific question. Or you would like to track your users after each question answer, ... etc.
This action is called after the form is loaded directly. To add your own action after the form is loaded, you should do something like this:
import { addAction } from "@wordpress/hooks";
addAction('QuillForms.RendererCore.Loaded', 'myOwnAction', function() {
console.log("Form loaded");
// your code should go here!
});
This action is called after a specific field becomes active. To add your own action after the field has been active, you should do something like this:
import { addAction } from "@wordpress/hooks";
addAction('QuillForms.RendererCore.FieldActive', 'myOwnAction', function({ id, label} ) {
console.log(`field ${id} with label ${label} is active`);
// your code should go here!
// id is the field id
// label is the field label
});
This action is called after a specific field is answered while it is still active. To add your own action after the field is answered while it is active, you should do something like this:
import { addAction } from "@wordpress/hooks";
addAction('QuillForms.RendererCore.FieldAnsweredActive', 'myOwnAction', function({ id, label} ) {
console.log(`field ${id} with label ${label} is answered and still active`);
// your code should go here!
// id is the field id
// label is the field label
});
This action is called after the welcome screen is passed. To add your own action after the welcome screen is passed, you should do something like this:
import { addAction } from "@wordpress/hooks";
addAction('QuillForms.RendererCore.WelcomeScreenPassed', 'myOwnAction', function({ id} ) {
console.log(`Welcome screen ${id} has been passed!`);
// your code should go here!
});