Evaluation Context
Segment by any criteria, using an evaluation context
It is common for features to be on for some users, but off for others. For example team members working on a new setting might need to see and use the setting, while the rest of the team need the setting to be hidden.
The flag
declaration accepts an identify
function. The entities returned from the identify
function
are passed as an argument to the decide
function.
Example
A trivial case to illustrate the concept:
Having first-class support for an evaluation context allows decoupling the identifying step from the decision making step.
Type safety
The entities can be typed using the flag
function.
Headers and Cookies
The identify
function is called with headers
and cookies
arguments, which is useful when dealing with
anonymous or authenticated users.
The arguments are normalized to a common format so the same flag to be
used in Edge Middleware and within SvelteKit server contexts (load functions, server endpoints) without having to
worry about the differences in how headers
and
cookies
are represented there.
Deduplication
Calls to identify
will be deduped based on the object id of the passed function. That means, in order to ensure that an identify
function is only called once per request,
make sure to extract it to a named function and reuse it across your flags.
Precomputing and targeting
The Marketing Pages example which shows how to identify and target users using cookies when precomputing pages.
Full example
See the Marketing Pages example