Smart Fields
Last updated
Was this helpful?
Last updated
Was this helpful?
This is the official documentation of the forestadmin/laravel-forestadmin
v2+ and forestadmin/symfony-forestadmin
PHP agents.
In legacy agents declaring a smart field was done in one big step.
In the new agent, the process was split into multiple steps, depending on the capabilities of the field (writing, filtering, sorting, etc.).
This was done to reduce the complexity of the code and to make it easier to understand, but also because it allows customers to reuse the same API when customizing the behavior of normal fields, and thus reduce the API surface that you need to learn.
get: (record) => { ... }
getValues: (records) => { ... }
set: (record, value) => { ... }
.replaceFieldWriting(...)
filter: ({ condition, where }) => { ... }
.replaceFieldOperator(...) .emulateFieldOperator(...) .emulateFieldFiltering(...)
type: 'String'
columnType: 'String'
enums: ['foo', 'bar']
columnType: 'Enum', enumValues: ['foo', 'bar']
reference: 'otherCollection.id'
Smart fields were a powerful tool, but they were also a performance bottleneck.
In the new agent, we have introduced two new concepts that can replace many of the use cases of smart fields:
If you were using a smart field to move a field from one collection to another or to create a link to another record in the UI, you can likely use one of these much simpler solutions.
Computed fields in the new agent are declared by calling the addField
function on the appropriate collection.
Many changes have been made to the API.
You will notice that a new dependencies
property is required when declaring a computed field.
It is an array of field names that tells Forest Admin which fields the getValues()
function depends on. Unlike the legacy agent, the new agent will not automatically fetch the whole record.
Even if it adds some complexity, exposing a batch API to our customers is a much better solution for performance.
The get
function is now called getValues
: it no longer takes a single record as its first argument, but an array of records, and must return an array of values, one for each record, in the same order.
There are other minor changes to the API:
the type
property was renamed to columnType
.
The field
property no longer exists. The field name is now the first argument of the addField
function.
The enums
property was renamed to enumValues
.
In the following example, we will port a field that fetches the full address of a user from a third-party service.
Note that when displaying a list of records, the new agent will only make one call to your handler, and then display the results for all records, instead of making one call per record.
If you want your computed field to be writable, you will need to call the .replaceFieldWriting()
function.
This part is very similar to the legacy agent. The API change is because this function can be used to make any field writable, not just computed fields, or to change the default writing behavior of a normal field.
Implementing filters in the new agent is done operator by operator, instead of using a single function.
This allows more fine-grained control over the behavior of each operator and makes it possible to implement only the operators you need.
Because the new Forest Admin agent is designed to work with multiple databases, the return value of the filter function is not a Sequelize or Mongoose condition anymore.
You can and .
The reference
property no longer exists: use the .
Also note that unlike in the legacy agent, will be performed by the agent, so the number of operators that you need to implement to unlock all filtering is much lower.
Instead, you'll be building a that will be translated to the appropriate database syntax by the agent.
At the cost of performance, you can tell the agent to the behavior of a given operator by calling the .emulateFieldOperator()
function.