🧑💻 (typebot-js) Add closeChatBubble event data
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "typebot-js",
|
"name": "typebot-js",
|
||||||
"version": "2.2.12",
|
"version": "2.2.13",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"unpkg": "dist/index.global.js",
|
"unpkg": "dist/index.global.js",
|
||||||
"license": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { closeIframe } from '../embedTypes/chat/iframe'
|
||||||
import { TypebotPostMessageData, IframeCallbacks, IframeParams } from '../types'
|
import { TypebotPostMessageData, IframeCallbacks, IframeParams } from '../types'
|
||||||
import './style.css'
|
import './style.css'
|
||||||
|
|
||||||
@@ -55,6 +56,15 @@ export const listenForTypebotMessages = (callbacks: IframeCallbacks) => {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const closeChatBubbleIfExisting = () => {
|
||||||
|
const bubble = document.querySelector('#typebot-bubble') as
|
||||||
|
| HTMLDivElement
|
||||||
|
| undefined
|
||||||
|
if (!bubble) return
|
||||||
|
const iframe = bubble.querySelector('.typebot-iframe') as HTMLIFrameElement
|
||||||
|
closeIframe(bubble, iframe)
|
||||||
|
}
|
||||||
|
|
||||||
const processMessage = (
|
const processMessage = (
|
||||||
data: TypebotPostMessageData,
|
data: TypebotPostMessageData,
|
||||||
callbacks: IframeCallbacks
|
callbacks: IframeCallbacks
|
||||||
@@ -63,4 +73,5 @@ const processMessage = (
|
|||||||
if (data.newVariableValue && callbacks.onNewVariableValue)
|
if (data.newVariableValue && callbacks.onNewVariableValue)
|
||||||
callbacks.onNewVariableValue(data.newVariableValue)
|
callbacks.onNewVariableValue(data.newVariableValue)
|
||||||
if (data.codeToExecute) Function(data.codeToExecute)()
|
if (data.codeToExecute) Function(data.codeToExecute)()
|
||||||
|
if (data.closeChatBubble) closeChatBubbleIfExisting()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ export type TypebotPostMessageData = {
|
|||||||
redirectUrl?: string
|
redirectUrl?: string
|
||||||
newVariableValue?: Variable
|
newVariableValue?: Variable
|
||||||
codeToExecute?: string
|
codeToExecute?: string
|
||||||
|
closeChatBubble?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export const localStorageKeys = {
|
export const localStorageKeys = {
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
import { createIframe } from '../src/iframe'
|
import { createIframe } from '../src/iframe'
|
||||||
|
import * as Typebot from '../src'
|
||||||
|
import { TypebotPostMessageData } from '../src'
|
||||||
|
|
||||||
describe('createIframe', () => {
|
describe('createIframe', () => {
|
||||||
it('should create a valid iframe element', () => {
|
it('should create a valid iframe element', () => {
|
||||||
@@ -111,4 +113,27 @@ describe('createIframe', () => {
|
|||||||
expect(n).toBeUndefined()
|
expect(n).toBeUndefined()
|
||||||
expect(v).toBeUndefined()
|
expect(v).toBeUndefined()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('should close chat when receive close command', async () => {
|
||||||
|
expect.assertions(2)
|
||||||
|
const { open } = Typebot.initBubble({
|
||||||
|
url: 'https://typebot.io/typebot-id2',
|
||||||
|
})
|
||||||
|
const bubble = document.getElementById('typebot-bubble')
|
||||||
|
open()
|
||||||
|
await new Promise((resolve) => setTimeout(resolve, 50))
|
||||||
|
expect(bubble?.classList.contains('iframe-opened')).toBe(true)
|
||||||
|
const messageData: TypebotPostMessageData = {
|
||||||
|
closeChatBubble: true,
|
||||||
|
}
|
||||||
|
window.postMessage(
|
||||||
|
{
|
||||||
|
from: 'typebot',
|
||||||
|
...messageData,
|
||||||
|
},
|
||||||
|
'*'
|
||||||
|
)
|
||||||
|
await new Promise((resolve) => setTimeout(resolve, 50))
|
||||||
|
expect(bubble?.classList.contains('iframe-opened')).toBe(false)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user