This example shows you how to display information from a JSON field using smart fields.
Here a user record has a field contact of the type JSONB that includes an email and a phone attribute. On the users collection, we want to implement smart fields (called email and phone) that will display the value of information contained within the JSON as separate fields and be able to update these fields.
Requirements
An admin backend running on forest-express-sequelize
A PostgreSQL database including a table with a JSONB column
How it works
Directory: /models
This directory contains the users.js file where the model is declared.
This directory contains the users.js file where the smart fields email and phone are implemented.
The get() method retrieves the value that will be displayed in the UI and the set() method allows to specify the logic to be followed with regards to the input value entered upon edit. Here we will handle the update at the routes level so we just pass the object as a result of the set() method.
This directory contains the users.js file where the implementation of the PUT route for the update action is handled.
Note that a JSON field cannot be updated attribute per attribute, it needs to be updated as a whole as not to erase the values already contained in it.