Managing operators
A common requirement of React Query Builder implementations is to limit or alter the operators based on the selected field. For example, when a field represents a date value, a label of "before" might be more appropriate for the <
operator than the default "<"
. A number-type field might use a label of "less than" for the <
operator, while a text field probably wouldn't use the <
operator at all.
Field operators
property
The first way to address this requirement is with the field operators
property. The operators
property of a field determines which operators are displayed once the user selects that field in the field selector. The downside of this method is that the operators list must be fully defined for each field, potentially duplicating lists across fields with equivalent data types.
getOperators
prop
The operators
field property is useful when individual fields deviate from the default operator list, but the getOperators
function prop allows you to put all operator lists and logic in one place.
getOperators
is passed a single argument, the field
name. Based on that, you can gather information from the same array provided to the fields
prop (or any other data source) and return a list of operator names and labels.
The example below takes advantage of the ability to add arbitrary properties to field definitions. A non-standard datatype
property on each field is used to determine which operators are displayed and how they are labeled. The defaultOperators
export is utilized where appropriate. It also shows how, if present, a field's operators
property will take precedence over the result of the getOperators
function (see the fourth rule, where the field selection of "Favorite Movie" limits the operator list to "is" even though its datatype
is "text").