Smart Fields

This is the official documentation of the agent_ruby Ruby agent.

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.

You can find the full documentation of field customization here.

Code cheatsheet

Legacy agent
New agent

get: (record) => { ... }

"values": proc { |records| ... }

set: (record, value) => { ... }

.replace_field_writing(...)

filter: ({ condition, where }) => { ... }

.replace_field_operator(...) .emulate_field_operator(...) .emulate_field_filtering(...)

type: 'String'

columnType: 'String'

enums: ['foo', 'bar']

"column_type": "Enum", "enum_values": ['foo', 'bar']

reference: 'otherCollection.id'

Do you still need a computed field?

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.

Steps

Step 1: Implement a read-only version of the field

Computed fields in the new agent are declared by calling the add_field function on the appropriate collection.

Many changes have been made to the API.

Dependencies are explicit

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 values function depends on. Unlike the legacy agent, the new agent will not automatically fetch the whole record.

You can fetch data from relations and fetch data from other computed fields.

Fields now work in batches

Even if it adds some complexity, exposing a batch API to our customers is a much better solution for performance.

The function now returns a value called values which is an array of values, one for each record, in the same order. It no longer takes a single record as its first argument, but an array of records.

Other changes

There are other minor changes to the API:

  • the type property was renamed to column_type.

  • The field property no longer exists. The field name is now the first argument of the add_field function.

  • The reference property no longer exists: use the smart relationships guide.

  • The enums property was renamed to enum_values.

Example

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.

class Forest::User
  collection :User

  field :full_address, type: 'String' do
    addr = GeoWebService.get_address(user.address_id)
    [addr.line_1, addr.line_2, addr.city, addr.country].join("\n")
  end
end

Step 2: Implement write handler

If you want your computed field to be writable, you will need to call the .replace_field_writing() 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.

class Forest::User
  collection :User

  set_full_address = lambda do |address_params, full_address|
    full_address = full_address.split("\n")
    address_params[:line_1] = full_address[0]
    address_params[:line_2] = full_address[1]
    address_params[:city] = full_address[2]
    address_params[:country] = full_address[3]

    address_params
  end

  field :full_address, type: 'String', set: set_full_address do
    ...
  end
end

Step 3: Implement the filters you use

Structure

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.

Also note that unlike in the legacy agent, automatic operator replacement will be performed by the agent, so the number of operators that you need to implement to unlock all filtering is much lower.

Return value

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.

Instead, you'll be building a condition tree that will be translated to the appropriate database syntax by the agent.

Emulation

At the cost of performance, you can tell the agent to emulate the behavior of a given operator by calling the function.

Example

class Forest::User
  collection :User

  def filter_fullname(operator, value)
    case operator
    when 'equal'
      # ...
    when 'less_than'
      # ...
    end
  end

  field :full_address, type: 'String', filter: filter_fullname do
    # same as before
  end
end

Last updated

Was this helpful?