UNPKG

@thoughtspot/visual-embed-sdk

Version:
126 lines 4.04 kB
import { SearchLiveboardCommonViewConfig, BaseViewConfig, DefaultAppInitData } from '../types'; import { TsEmbed } from './ts-embed'; import { SearchOptions } from './search'; /** * @group Embed components */ export interface SearchBarViewConfig extends BaseViewConfig, SearchLiveboardCommonViewConfig { /** * The array of data source GUIDs to set on load. * Only a single data source is supported currently. * * Supported embed types: `SearchBarEmbed` * @deprecated Use `dataSource` instead * @version: SDK: 1.1.0 | ThoughtSpot: 8.1.1-sw * @example * ```js * const embed = new SearchBarEmbed('#tsEmbed', { * ... //other embed view config * dataSources:['id-2345','id-2345'], * }) * ``` */ dataSources?: string[]; /** * Pass the ID of the source to be selected. * * Supported embed types: `SearchBarEmbed` * @version: SDK: 1.19.0, ThoughtSpot 9.0.0.cl, 9.0.1.sw * @example * ```js * const embed = new SearchBarEmbed('#tsEmbed', { * ... //other embed view config * dataSource:'id-2345', * }) * ``` */ dataSource?: string; /** * Boolean to define if the last selected data source should be used * * Supported embed types: `SearchBarEmbed` * @version: SDK: 1.24.0, ThoughtSpot 9.5.0.cl, 9.5.0.sw * @example * ```js * const embed = new SearchBarEmbed('#tsEmbed', { * ... //other embed view config * useLastSelectedSources:false, * }) * ``` */ useLastSelectedSources?: boolean; /** * Configuration for search options. * Includes the following properties: * * `searchTokenString`: Search tokens to pass in the query. * * `executeSearch`: Boolean to define if the search should be executed or not. * If it is executed, the focus is placed on the results. * If it’s not executed, the focus is placed at the end of * the token string in the search bar. * * Supported embed types: `SearchBarEmbed` * @version: SDK: 1.2.0 | ThoughtSpot: 9.4.0.sw * @example * ```js * const embed = new SearchBarEmbed('#tsEmbed', { * ... //other embed view config * searchOptions: { * searchTokenString: '[quantity purchased] [region]', * executeSearch: true, * } * }) * ``` */ searchOptions?: SearchOptions; /** * Exclude the search token string from the URL. * If set to true, the search token string is not appended to the URL. * * Supported embed types: `SearchBarEmbed` * @version: SDK: 1.35.7 | ThoughtSpot: 10.8.0.cl * @example * ```js * const embed = new SearchEmbed('#tsEmbed', { * searchOptions: { * searchTokenString: '[quantity purchased] [region]', * executeSearch: true, * }, * excludeSearchTokenStringFromURL: true, * }); * ``` */ excludeSearchTokenStringFromURL?: boolean; } export interface SearchAppInitData extends DefaultAppInitData { searchOptions: SearchOptions; } /** * Embed ThoughtSpot search bar * @version: SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1-sw * @group Embed components */ export declare class SearchBarEmbed extends TsEmbed { /** * The view configuration for the embedded ThoughtSpot search bar. */ protected viewConfig: SearchBarViewConfig; protected embedComponentType: string; constructor(domSelector: string, viewConfig: SearchBarViewConfig); /** * Construct the URL of the embedded ThoughtSpot search to be * loaded in the iframe * @param dataSources A list of data source GUIDs */ private getIFrameSrc; /** * Render the embedded ThoughtSpot search */ render(): Promise<SearchBarEmbed>; protected getSearchInitData(): { searchOptions: SearchOptions; }; protected getAppInitData(): Promise<SearchAppInitData>; } //# sourceMappingURL=search-bar.d.ts.map