Dashboard Pages
Use feature flags on dashboard pages.
Dashboard pages are rendered at request time, and may require authenticated users.
The example below shows how to use feature flags to show a feature to specific users on a dashboard page. They are flagged in based on their user id. The buttons below allow you to either act as a flagged in user or as a regular user.
Definition
The example above works by first defining a feature flag.
The definition includes an identify
function. The
identify
function is used to establish the evaluation
context.
The example reads the user id directly from the cookie. In a real dashboard you would likely read a signed JWT instead.
Usage
Any server-side code can evaluate the feature flag by calling it.
Since dashboard pages are typically dynamic anyhow the async call to evaluate the feature flag should fit right in.
Identifying
The example flag calls identify
to establish the evaluation
context. This function returns the entities that are used to evaluate
the feature flag.
The decide
function then later gets access to the
entities
returned from the identify
function.
Learn more about identify
Evaluation Context
Feature Flags used on dashboard will usually run in the Serverless
Function Region, close to the database. This means it is acceptable for
a feature flag's decide
function to read the database
when establishing the evaluation context. However, ideally, it would
only read from the JWT as this will lead to lower overall latency.
Deduplication
The identify
call uses dedupe
to avoid
duplicate work when multiple feature flags depend on the same evaluation
context.
Learn more about dedupe