UNPKG

@thoughtspot/visual-embed-sdk

Version:
160 lines (142 loc) 4.95 kB
import { ViewConfig, Param } from '../types'; import { TsEmbed } from './ts-embed'; import { Conversation as ConversationService } from '../utils/graphql/nlsService/conversation-service'; import { getEmbedConfig } from './embedConfig'; import { getQueryParamString } from '../utils'; /** * Configuration for bodyless conversation options. * @group Embed components */ export interface SpotterAgentEmbedViewConfig extends ViewConfig { /** * The ID of the worksheet to use for the conversation. */ worksheetId: string; /** * Optional CSS class name to add to the container div. */ containerClassName?: string; } /** * Configuration for conversation options. * @deprecated from SDK: 1.38.0 | ThoughtSpot: 10.10.0.cl * Use {@link SpotterAgentEmbedViewConfig} instead * @group Embed components */ // eslint-disable-next-line @typescript-eslint/no-empty-object-type export interface BodylessConversationViewConfig extends SpotterAgentEmbedViewConfig {} interface SpotterAgentMessageViewConfig extends SpotterAgentEmbedViewConfig { sessionId: string; genNo: number; acSessionId: string; acGenNo: number; } class ConversationMessage extends TsEmbed { constructor(container: HTMLElement, protected viewConfig: SpotterAgentMessageViewConfig) { viewConfig.embedComponentType = 'bodyless-conversation'; super(container, viewConfig); } public getIframeSrc() { const { sessionId, genNo, acSessionId, acGenNo, } = this.viewConfig; const path = 'conv-assist-answer'; const queryParams = this.getBaseQueryParams(); queryParams[Param.HideActions] = [...(queryParams[Param.HideActions] ?? [])]; queryParams[Param.isSpotterAgentEmbed] = true; let query = ''; const queryParamsString = getQueryParamString(queryParams, true); if (queryParamsString) { query = `?${queryParamsString}`; } const tsPostHashParams = this.getThoughtSpotPostUrlParams({ sessionId, genNo, acSessionId, acGenNo, }); return `${this.getEmbedBasePath(query)}/embed/${path}${tsPostHashParams}`; } public async render(): Promise<ConversationMessage> { await super.render(); const src = this.getIframeSrc(); await this.renderIFrame(src); return this; } } /** * Create a conversation embed, which can be integrated inside * chatbots or other conversational interfaces. * @example * ```js * import { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk'; * * const conversation = new SpotterAgentEmbed({ * worksheetId: 'worksheetId', * }); * * const { container, error } = await conversation.sendMessage('show me sales by region'); * * // append the container to the DOM * document.body.appendChild(container); // or to any other element * ``` * @group Embed components * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl */ export class SpotterAgentEmbed { private conversationService: ConversationService; constructor(private viewConfig: SpotterAgentEmbedViewConfig) { const embedConfig = getEmbedConfig(); this.conversationService = new ConversationService( embedConfig.thoughtSpotHost, viewConfig.worksheetId, ); } public async sendMessage(userMessage: string) { const { data, error } = await this.conversationService.sendMessage(userMessage); if (error) { return { error }; } const container = document.createElement('div'); if (this.viewConfig.containerClassName) { container.className = this.viewConfig.containerClassName; } const embed = new ConversationMessage(container, { ...this.viewConfig, sessionId: data.sessionId, genNo: data.genNo, acSessionId: data.stateKey.transactionId, acGenNo: data.stateKey.generationNumber, }); await embed.render(); return { container, viz: embed }; } } /** * Create a conversation embed, which can be integrated inside * chatbots or other conversational interfaces. * @deprecated from SDK: 1.38.0 | ThoughtSpot: 10.10.0.cl * Use {@link SpotterAgentEmbed} instead * @example * ```js * import { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk'; * * const conversation = new SpotterAgentEmbed({ * worksheetId: 'worksheetId', * }); * * const { container, error } = await conversation.sendMessage('show me sales by region'); * * // append the container to the DOM * document.body.appendChild(container); // or to any other element * ``` * @group Embed components */ export class BodylessConversation extends SpotterAgentEmbed { constructor(viewConfig: BodylessConversationViewConfig) { super(viewConfig); } }