Точки расширения страницы бизнес-поиска

UE BusinessSearchResultsExtraPanel

Позволяет добавить панель в заголовок перед результатами поисковой выдачи.

../../../../_images/image010.png

Имеет вид:

   type Resolver = (store: BusinessSearchDataStoreFacade) => boolean;

type Props = {
   searchStore: BusinessSearchDataStoreFacade;
}

type Meta = {
   order: number;
}

export type BusinessSearchResultsExtraPanel = UserExit<Resolver, Meta> & {
   component: ComponentType<Props>;
};

UE BusinessSearchResultsView

Позволяет добавить на страницу результатов поиска кастомный вид представления результатов.

../../../../_images/image011.png

Имеет вид:

   type Resolver = (store: BusinessSearchDataStoreFacade) => boolean;

type Props = {
   searchStore: BusinessSearchDataStoreFacade;
   cardComponent: ComponentType<{
       store: BusinessSearchDataStoreFacade;
       searchHit: SearchHit;
   }>;
}

type Meta = {
   order: number;
}

export type BusinessSearchResultsView = UserExit<Resolver, Meta> & {
   component: ComponentType<Props>;
};