ContextView
ContextView allows apps to render next to Stripe content in a drawer so users can look at them side by side and share context.
The root view of your app must be a ContextView
.
These in-context modules allow the app to meet users in their existing workflows and provide contextual information and actions.
A user’s interaction with an app always begins with a view type called a ContextView
view. Each app must have a single ContextView
view (per viewport), which acts as the default view when the page loads (similar to the index.html
of a website).
Note
To create a view within an existing ContextView
, see FocusView.
Props
Prop | Type | Description |
---|---|---|
title Required |
| The title of the ContextView. This will be displayed at the top
of the drawer under that app's name. |
actions |
| A React fragment containing up to three Buttons that will be displayed
directly under the header and above the children of the ContextView. |
banner |
| A Banner component that will be displayed directly under the header and
above the children of the ContextView. |
brandColor |
| A CSS color that contrasts well with `brandIcon`. |
brandIcon |
| A square, 1-color SVG that contrasts well with `brandColor`. |
children |
| The contents of the ContextView. |
description |
| A description of the view's purpose, can also be used as a subtitle. |
externalLink |
| A link to an external webpage. This should generally allow the user to
view related information on another site with more context than what
the app makes available in the app drawer. |
footerContent |
| React node adjacent to any actions in the footer. |
primaryAction |
| A primary call to action ("Save" or "Continue") button placed in the footer. |
secondaryAction |
| A secondary call to action ("Cancel") button placed in the footer. |
Example
import { Box, Button, ContextView, } from '@stripe/ui-extension-sdk'; import appIcon from './icon.svg'; const HappyView = () => ( <ContextView title="Get started with Stripe Apps" actions={ <> <Button>Action 1</Button> <Button>Action 2</Button> </> } brandColor="#635bff" brandIcon={appIcon} > <Box> Example Content </Box> </ContextView> );