interface ContextDefinition {
    listing: true;
    recommendation: true;
    search: true;
    standalone: true;
    buildWithProps(
        engine: CommerceEngine,
        props?: ContextOptions,
        solutionType?: SolutionType,
    ): Context & ControllerWithKind;
}

Hierarchy

Methods

  • Creates an instance of the given controller.

    Parameters

    • engine: CommerceEngine

      The search engine.

    • Optionalprops: ContextOptions

      The controller properties.

    • OptionalsolutionType: SolutionType

      The type of solution for which the controller should be built (e.g. search or listing). This option only applies to sub-controllers.

    Returns Context & ControllerWithKind

    The created controller instance.

Properties

listing: true
recommendation: true
search: true
standalone: true