Popup
The Popup
component represents a popup UI for a single conversation.
A Popup
must be a descendant of Session
.
It does not need to be a direct descendant.
Name | Type | Description |
---|---|---|
string | Required unless syncConversation is provided.The id of the conversation to display. If the conversation does not exist, the "Not found" screen is shown. | |
Talk.ConversationBuilder | () => Talk.ConversationBuilder | Required unless conversationId is provided.Creates or updates the conversation to display using the supplied ConversationBuilder, then selects it. See example here. | |
boolean | Specifies whether to add a user as a guest. Defaults to false if not provided. | |
string | The CSS class name for the div that will contain the popup. | |
string[] | An array of words to highlight in messages. Call with an empty array to disable highlighting. | |
ReactNode | A React node that will be shown while the popup is loading. | |
React.Ref | A React mutable ref object that holds the current TalkJS popup object. See an example of how to use popupRef in your application. | |
boolean | Whether the popup should be visible or not. If not given, defaults to true . |
You can use all options in Talk.PopupOptions
as props to fine-tune the behavior of your chat UI.
If any of these props change, <Popup>
will apply it directly through a setter such as setFeedFilter
. If no such setter exists, it will recreate the Talk.Popup
.
See below for an example of how to use popup options.
You can pass all events (methods with names starting with on
) accepted by the Popup
in the JavaScript SDK to the Popup
component as props with the same name.
See below for an example of how to use event props.
This section gives some examples that demonstrate how to use the Popup
component.
For all examples, you must create your Popup
component as a child of your Session
component.
Create a popup and load the existing conversation with an id
of welcome
:
1import { Popup } from '@talkjs/react';23// ...45<Popup6 conversationId="welcome"7 style={{ width: 400, height: 600 }}8 className="chat-container"9/>;
Create or update user data with the syncConversation
prop. This prop expects a callback that uses the regular TalkJS JavaScript SDK to create a ConversationBuilder
object with getOrCreateConversation
:
1import { useCallback } from 'react';2import { Popup } from '@talkjs/react';3import Talk from 'talkjs';45// ...67const syncConversation = useCallback((session: Talk.Session) => {8 // regular TalkJS JavaScript code here9 const conversation = session.getOrCreateConversation('welcome');10 conversation.setParticipant(session.me);11 return conversation;12}, []);1314<Popup15 syncConversation={syncConversation}16 style={{ width: 400, height: 600 }}17 className="chat-container"18/>;
To display a placeholder component while TalkJS is loading, pass a React node to the loadingComponent
prop:
1import { Popup } from '@talkjs/react';23// ...45<Popup conversationId="welcome" loadingComponent={<h1>Loading..</h1>} />;
To reference a popup outside the Popup
component, assign the underlying Talk.Popup
object to a ref:
1import { useRef, useCallback } from 'react';2import { Popup } from '@talkjs/react';34const popup = useRef<Talk.Popup>();56// ...78const onSomeEvent = useCallback(async () => {9 // do something with the popup10 if (popup.current?.isAlive) {11 popup.current.sendLocation();12 }13}, []);1415<Popup conversationId="welcome" popupRef={popup} />;
The ref will be set once the Talk.Popup
object has been created, and it will be set back to undefined
once it has been destroyed.
Make sure you always check the isAlive
property to ensure that the object is not destroyed because React is prone to trigger race conditions here (especially when React.StrictMode
is enabled or when using a development setup with hot reloading, both of which cause a lot of destroying).
Respond to events (in this case, sending a message and triggering a custom message action) by printing details to the console:
1import { Popup } from '@talkjs/react';23// ...45<Popup6 conversationId="welcome"7 onSendMessage={(event) => console.log(event.message.text)}8 onCustomMessageAction={(event) => console.log(event.action)}9/>;
Customize the popup with any options from Talk.PopupOptions
. This example removes the back button on mobile, and customizes the message field placeholder text:
1<Popup2 showMobileBackButton={false}3 messageField={{ placeholder: 'Write a message..' }}4 //...5/>