Provides React UI components, hooks, and utilities for rendering a Quote browse and details page in My Account.
This library provides a few primary components that can be dropped in and represent entire pages along with exposing the various sub-components to allow users to easily customize their views using some premade components.
There is also a Component Registry concept similar to the Admin where individual sub-components like buttons and links can be overridden easily.
The following are the primary components:
-
BrowseQuotes
used for a new "My Quotes" list view for a customer to view all their quotes or for a CSR to view all quote requests.
-
QuoteDetails
that is used to display the details of a quote.
-
ConfigContextProvider
used to set up common configuration for the components:
-
Key properties
-
cartContextUri
: URI that maps to the root cart view context. Defaults to /cart
-
checkoutContextUri
: URI that maps to the root checkout view context. Defaults to /checkout
-
customerScope
: Security scope(s) for customers to test access or get access tokens with
-
csrScope
: Security scope(s) for CSR to test access or get access tokens with
-
gatewayHost
: The URL host of the gateway application
-
preview
: Optional. Preview options to include in requests when in sandbox-preview mode
-
productRoutePrefix
: Value to prefix to product URLs if any such as /product
-
quoteContextUri
: URI that maps to the root quote view context. Defaults to /my-account/quotes
-
quoteBrowsePageSize
: Size of the page of quotes
-
ComponentRegistry
: Similar to the admin concept where components can be registered by name to replace default internal components like buttons, links, and icons
-
ComponentRenderer
: Component responsible for rendering named components.
It consults the ComponentRegistry
for any overrides for the defaults.