Featurevisor

Framework guides

React SDK

Featurevisor comes with an additional package for React.js, for ease of integration in your React.js application for evaluating features (including their flags, variations and variables).

Installation

Install with npm:

$ npm install --save @featurevisor/react

Setting up the provider

Use FeaturevisorProvider component to set up the SDK instance in your React application:

import React from 'react'
import ReactDOM from 'react-dom'
import { createInstance } from '@featurevisor/sdk'
import { FeaturevisorProvider } from '@featurevisor/react'
const DATAFILE_URL = '...'
const datafileContent = await fetch(DATAFILE_URL)
.then(response => response.json())
const f = createInstance({
datafile: datafileContent,
})
f.setContext({
userId: '123',
})
ReactDOM.render(
<FeaturevisorProvider instance={f}>
<App />
</FeaturevisorProvider>,
document.getElementById('root'),
)

Hooks

The package comes with several hooks to use in your components:

useFeaturevisor

To access the bound methods coming from the underlying JavaScript SDK instance:

import React from 'react'
import { useFeaturevisor } from '@featurevisor/react'
function MyComponent(props) {
const {
isEnabled,
getVariation,
getVariable,
getVariableBoolean,
getVariableString,
getVariableInteger,
getVariableDouble,
getVariableArray,
getVariableObject,
getVariableJSON,
setContext,
getContext,
setSticky,
} = useFeaturevisor()
return <p>...</p>
}

Learn more about the API from original JavaScript SDK documentation.

The functions returned from the hook will not trigger any re-renders of the component if the datafile or context changes at the instance level.

The ones below are reactive.

useFlag

Check if a feature is enabled or not:

import React from 'react'
import { useFlag } from '@featurevisor/react'
function MyComponent(props) {
const isEnabled = useFlag('myFeatureKey')
if (isEnabled) {
return <p>Feature is enabled</p>
}
return <p>Feature is disabled</p>
}

useVariation

Get a feature's evaluated variation:

import React from 'react'
import { useVariation } from '@featurevisor/react'
function MyComponent(props) {
const variation = useVariation('myFeatureKey')
if (variation === 'b') {
return <p>B variation</p>;
}
if (variation === 'c') {
return <p>C variation</p>;
}
// default
return <p>Default experience</p>;
};

useVariable

Get a feature's evaluated variable value:

import React from 'react':
import { useVariable } from '@featurevisor/react'
function MyComponent(props) {
const colorValue = useVariable('myFeatureKey', 'color')
return <p>Color: {colorValue}</p>;
};

useSdk

If you want to access the full Featurevisor SDK instance:

import React from 'react'
import { useSdk } from '@featurevisor/react'
function MyComponent(props) {
const f = useSdk()
return <p>...</p>
}

Passing additional context

All the evaluation hooks accept an optional argument for passing additional component-level context:

const context = {
// ... additional context here in component
}
useFlag(featureKey, context)
useVariation(featureKey, context)
useVariable(featureKey, variableKey, context)

Reactivity

All the evaluation hooks are reactive. This means that your components will automatically re-render when:

The re-rendering logic is smart enough to compare previously known value with the new evaluated value, and will only re-render the component if the value has changed.

If you do not want any reactivity, you are better off using the Featurevisor SDK instance directly in your component either via useSdk or useFeaturevisor hooks.

Optimization

Given the nature of components in React, they can re-render many times.

You are advised to minimize the number of calls to Featurevisor SDK in your components by using memoization techniques.

Example repository

You can find a fully functional example of a React application using Featurevisor SDK here: https://github.com/featurevisor/featurevisor-example-react.

Previous
Roku