atomic-recs-interface

This is for:

Developer
In this article

The atomic-recs-interface component is the parent to all other atomic components in a recommendation interface. It handles the headless recommendation engine and localization configurations.

Properties

Property Attribute Description Type Default

analytics

analytics

Whether analytics should be enabled.

boolean

true

engine

The recommendation interface headless engine.

RecommendationEngine<{}> | undefined

fieldsToInclude

fields-to-include

A list of non-default fields to include in the query results, separated by commas.

string

i18n

The recommendation interface i18next instance.

i18n

i18next.createInstance()

iconAssetsPath

icon-assets-path

The icon assets path. By default, this will be a relative URL pointing to ./assets.

Example: "/mypublicpath/icons"

string

'./assets'

language

language

The recommendation interface language.

string

'en'

languageAssetsPath

language-assets-path

The language assets path. By default, this will be a relative URL pointing to ./lang.

Example: "/mypublicpath/languages"

string

'./lang'

logLevel

log-level

The severity level of the messages to log in the console.

"debug" | "error" | "fatal" | "info" | "silent" | "trace" | "warn" | undefined

pipeline

pipeline

The recommendation interface query pipeline.

string | undefined

searchHub

search-hub

The recommendation interface search hub.

string

'default'

timezone

timezone

The tz database identifier of the time zone to use to correctly interpret dates in the query expression, facets, and result items. By default, the timezone will be guessed.

Example: "America/Montreal"

string | undefined

Methods

getRecommendations

Fetches new recommendations.

Signature: getRecommendations() => Promise<void>

Returns: Promise<void>

initialize

Initializes the connection with the headless recommendation engine using options for accessToken (required), organizationId (required), renewAccessToken, and platformUrl.

Signature: initialize(options: RecsInitializationOptions) => Promise<void>

Returns: Promise<void>

initializeWithRecommendationEngine

Initializes the connection with an already preconfigured headless recommendation engine. This bypasses the properties set on the component, such as analytics, recommendation, searchHub, language, timezone & logLevel.

Signature: initializeWithRecommendationEngine(engine: RecommendationEngine) => Promise<void>

Returns: Promise<void>