Other interfaces
Provides additional parameters to custom message action or conversation action events.
Any number of key/value pairs that will be sent with the action event.
Add to action buttons in your theme components with the syntax data-<key>=<value>
, or to action buttons in messages with the syntax action?<key>=<value>
.
Examples:
The following action button theme component will emit a color
action event when you click it, with a parameter called choice
that takes the value red
:
<ActionButton action="color" data-choice="red">Red</ActionButton>
The following action button message markup will emit a color
message action event when you click it, with a parameter called choice
that takes the value blue
:
<actionbutton:color?choice=blue|Blue>
Both the key and the value must be strings; arbitrarily deeply nested JSON is not supported.
Encapsulates an active conversation between two parties.
Use this object to send system messages to the conversation or to programmatically select a conversation by passing it to Inbox.select.
Conversation objects are created with the deprecated Session.getOrStartConversation method.
Deprecated. Use Session.getOrCreateConversation instead
The ID of the conversation
Optional custom conversation meta data
Set any property to null
to delete the existing value (if any). When omitted or undefined
, the existing value remains unchanged.
An optional URL to a photo which will be shown as the photo for the conversation.
Set to null
to delete the existing value (if any). When omitted or undefined
, the existing value remains unchanged.
An optional conversation subject which is displayed in the chat header
Set to null
to delete the existing value (if any). When omitted or undefined
, the existing value remains unchanged.
Emitted from Chatbox.onCustomConversationAction when a user clicks on a custom action in a conversation within the TalkJS UI
The value will be null
if the conversation action is triggered from inside the ConversationListHeader
component.
This represents the interface of the event triggered from Inbox.onConversationSelected.
The current conversation object
The current TalkJS User
The participants in the conversation, including the current user
Deprecated.
When you are the only participant in the conversation, this property includes the current user. Use participants
and filter out the current user instead.
The other participants in the conversation that are not the current user
Used to store additional metadata on users, conversations and messages
Any number of key/value pairs of your choosing to be stored along with the associated resource. You can use custom data for all kinds of purposes, such as customizing a user's email notification text, transmitting contextual user data, or making email login tokens.
Both the key and the value must be strings; arbitrarily deeply nested JSON is not supported. Example:
1{"country":"nl", "itemId": "720"}
Set to null
to delete the existing value (if any). When omitted or undefined
, the existing value remains unchanged.
Defines a custom emoji
Image file URL
Must be a fully-qualified URL of image file, eg an SVG, GIF or PNG. The image must be square (same width and height) and is always scaled down to the size of an emoji.
Hides this emoji from the emoji picker and autocompleter
Hidden emojis can't be sent in new messages, or used in new emoji reactions, but they still display properly in existing messages and reactions. This lets you safely remove previously used custom emoji from the chat UI.
This event is triggered when desktop notifications are toggled.
Boolean indicating if desktop Notifications are enabled or not
Fullstory organization ID
Fullstory hostname
Emitted through Chatbox.onKeyup when the user presses a key. All fields except isInputFocused
precisely match the corresponding fields in the browser's KeyboardEvent.
True if the event was triggered while an element was focused that can handle keyboard events.
Triggered when the user clicks a "Leave conversation" action in the chat UI.
preventDefault | Call this to prevent the conversation from being left, ie to cancel the user action. |
The conversation that the user intends to leave
leaveConversationEvent.preventDefault()
Call this to prevent the conversation from being left, ie to cancel the user action.
Doing this will turn the "Leave conversation" action into a no-op, so you might want to display some sort of error message to the user so they understand why their click didn't do anything.
You can only call preventDefault
from inside the onLeaveConversation
event handler or a function immediately invoked from it. Calling preventDefault
later, or after some promise resolved, has no effect.
Returns
Triggered when the user clicks a "Mark as unread" action in the chat UI.
preventDefault | Call this to prevent the conversation from being marked as unread, ie to cancel the user action. |
The conversation that the user intends to mark as unread
markConversationAsUnreadEvent.preventDefault()
Call this to prevent the conversation from being marked as unread, ie to cancel the user action.
Doing this will turn the "Mark as unread" action into a no-op, so you might want to display some sort of error message to the user so they understand why their click didn't do anything.
You can only call preventDefault
from inside the onMarkConversationAsUnread
event handler or a function immediately invoked from it. Calling preventDefault
later, or after some promise resolved, has no effect.
Returns
Emitted from Chatbox.onCustomMessageAction when a user clicks on a custom action, as defined on the "Chat UI" page of the dashboard.
Encapsulates the message entry field tied to the currently selected conversation.
focus | Focuses the message entry field. |
getText | Gets the current content of the message field. |
setText | Sets the message field to |
setVisible | Sets the visibility of the Message Field to a given value or to a certain predicate. |
typeText | Types the given |
messageField.focus()
Focuses the message entry field.
Note that on mobile devices, this will cause the on-screen keyboard to pop up, obscuring part of the screen.
This method will silently fail if the participant only has "Read" access in the current conversation.
Returns
messageField.getText(): Promise<string>
Gets the current content of the message field.
Returns
messageField.setText(text)
Sets the message field to text
.
Useful if you want to guide your user with message suggestions. If you want to start a UI with a given text showing immediately, call this method before calling Inbox.mount
This method will silently fail if the participant only has "Read" access in the current conversation.
Parameters
The text to be displayed in the message entry field
Returns
messageField.setVisible(visible)
Sets the visibility of the Message Field to a given value or to a certain predicate.
See MessageFieldOptions.visible for examples.
Parameters
boolean or a more advanced predicate.
Returns
messageField.typeText(text)
Types the given text
into the message field.
Inserts text
wherever the cursor currently is.
This method may be useful for various bot/simulation scenarios. Additionally, it lets you make it so that any regular keypress lets the user start typing into the message field, even if it is not focused.
This method will silently fail if the participant only has "Read" access in the current conversation.
To do that, capture the keypress using a regular window event listener, ensure that the user isn't typing into a different input, and then call this method to type the key, followed by focus. Note that TalkJS already does this out-of-the box when the chat UI iframe has focus and ChatboxOptions.captureKeyboardEvents is off.
Parameters
The text to be inserted in the message entry field
Returns
Determines whether the message field should automatically focus when the user navigates.
Defaults to "smart", which means that the message field gets focused whenever a conversation is selected, if possible without negative side effects. I.e. only when:
- The message field is inside the browser viewport (so focusing will not unexpectedly cause the page to scroll)
- The user is likely on a desktop/laptop computer (so focusing will not unexpectedly expand a mobile on-screen keyboard).
Note: If you need more control, consider setting autofocus
to false and calling MessageField.focus at appropriate times.
If set to true
, pressing the enter key sends the message (if there is text in the message field). When set to false
, the only way to send a message is by clicking or touching the "Send" button. Defaults to true
.
Overrides the "placeholder" in the message field, which displays a dimmed text when no text has yet been entered.
Defaults to "Say something..." (or a translation thereof).
Specifies whether the spellcheck attribute is set on the message field. Note that setting this to true
may also enable autocorrect on some mobile devices. Defaults to false
.
Determines whether the message field is visible. Pass either a boolean (false
to hide it), or a ConversationPredicate. The latter approach lets you show/hide the message field based on properties of the current conversation.
For example, to hide the message field when the current user has no write access to the current conversation, do the following:
1// this predicate holds iff the current user's `access` to the current conversation is2// set to "ReadWrite"`:3const showMessageField = { access: ["==", "ReadWrite"] };4session.createInbox(conversation, { messageField: { visible: showMessageField } });
Defaults to true
.
Event data triggered from Inbox.onSelectConversation.
preventDefault | Prevents the clicked conversation from being selected. |
The current conversation object
The current TalkJS User
The participants in the conversation, including the current user
Deprecated.
When you are the only participant in the conversation, this property includes the current user. Use participants
and filter out the current user instead.
The other participants in the conversation that are not the current user
The id of the message to scroll to (This property only exists when a message search result has been selected)
selectConversationEvent.preventDefault()
Prevents the clicked conversation from being selected.
Returns
Only show messages from senders who have particular custom fields set to particular values.
Every key must correspond to a key in a user's custom data that you have set. It is not necessary for all senders to have these keys.
Each value must be one of the following:
A string, equal to "exists"
or "!exists"
A 2-element array of [operator, operand]
structure. The operand must be either a string or an array of strings (for the oneOf
operators). Valid operators are: "=="
, "!="
, "oneOf"
, and "!oneOf"
.
Example, assume you have some users with the alternateRole
field in their custom data:
1// Only show messages from senders that have the field alternateRole set:2{custom: {alternateRole: "!exists" }}34// Only show messages from senders that have the field alternateRole set to "support":5{custom: {alternateRole: ["==", "support"]}}
Only show messages from a sender(s) with a given id.
For example:
1// Don't show messages sent by user with ID 12{sender: {id: ["!=", "1"]}}
Only show messages from senders with a given locale.
For example:
1// Only show messages from senders with locale: en-GB or en-US2{sender: {locale: ["oneOf", ["en-GB", "en-US"]}}
Only show messages from senders who have a particular role.
For example:
1// Only show messages from senders with role: Admin and locale: en-GB2{sender: {role: ["==", "Admin"], locale: ["==", "en-GB"]}}
The event triggered when listening for the sendMessage event on the Inbox, Chatbox and Popup. This event is triggered before the message is sent to TalkJS, allowing you to modify the contents of the message or its metadata by using override()
.
The current conversation object
The current TalkJS user
The message that was sent
This function allows you to modify the contents of the message or its metadata before the message is sent
A message that was sent to TalkJS
The ID of the conversation that the message belongs to
The message ID of the message that was sent
Contains an Array of User.id's that have read the message
Contains the user ID for the person that sent the message
Identifies the message as either a User message or System message
Only given if the message contains a file. An object with the URL and filesize (in bytes) of the given file. Attachment dimensions (in px) are sometimes available for image and video attachments, used to set the size of the thumbnail before loading, to prevent content shift when loading media on slower connections.
Only given if the message contains a location. An array of two numbers which represent the longitude and latitude of this location, respectively. Only given if this message is a shared location.
Example:
1[51.481083, -3.178306]
Contains the message's text
Allows you to filter conversations down to a specific subset.
Use with Inbox.setFeedFilter or pass InboxOptions.feedFilter to Session.createInbox. For example, to hide read conversations, use:
inbox.setFeedFilter({ hasUnreadMessages: true })
.
To show everything (ie to disable the filter), use an empty object:
inbox.setFeedFilter({})
.
Only select conversations that the current user as specific access to.
Must be an 2-element array of [operator, operand]
structure. Valid operators are: "=="
, "!="
, "oneOf"
, and "!oneOf"
.
The operand must be either a string (one of "ReadWrite"
, "Read"
or "None"
) or an array of strings (for the oneOf
operators).
Example:
1// to remove conversations that the user has no access to anymore, do:2{ access: ["!=", "None"] }
Only select conversations that have been created in a particular time interval.
Must be an 2-element array of [operator, operand]
structure. Valid operators are: ">"
, "<"
, ">="
, "<="
, "between"
, and "!between"
.
The operand must be either a number or a 2-element array of numbers (for the between
operators).
Example:
1// to show only the conversations that have been created after the UNIX timestamp 16792983715862{ createdAt: [">", 1679298371586] }
Only select conversations that have particular custom fields set to particular values.
Every key must correspond to a key in the custom conversation data that you set (by passing custom
to ConversationBuilder.setAttributes). It is not necessary for all conversations to have these keys.
Each value must be one of the following:
A string, equal to "exists"
or "!exists"
A 2-element array of [operator, operand]
structure. The operand must be either a string or an array of strings (for the oneOf
operators). Valid operators are: "=="
, "!="
, "oneOf"
, and "!oneOf"
.
Examples, assuming you have set a category
custom field on your conversations:
1// only show conversations that have no category set:2{ custom: { category: "!exists" } }34// only show conversations of category "shoes"5{ custom: { category: ["==", "shoes"] } }67// only show conversations either category "shoes" or "sandals"8{ custom: { category: ["oneOf", ["shoes", "sandals"] ] } }910// only show conversations about shoes that are marked visible.11// this assumes you also have a custom field called `visibility`12{ custom: { category: ["==", "shoes"], visibility: ["==", "visible" ] } }
Set this field to only select conversations that have, or don't have any, unread messages.
Only select conversations that have the last message sent in a particular time interval.
Must be an 2-element array of [operator, operand]
structure. Valid operators are: ">"
, "<"
, ">="
, "<="
, "between"
, and "!between"
.
The operand must be either a number or a 2-element array of numbers (for the between
operators).
Example:
1// to show only the conversations that have the last message sent after the UNIX timestamp 16792983715862{ lastMessageTs: [">", 1679298371586] }
Only select conversations that have the subject set to particular values.
Must be an 2-element array of [operator, operand]
structure. Valid operators are: "=="
, "!="
, "oneOf"
, and "!oneOf"
.
The operand must be either a string or an array of strings (for the oneOf
operators).
Example:
1// to show only the conversations that have "Black leather boots" or "Hair Wax 5 Gallons" as the subject2{ subject: ["oneOf", ["Black leather boots", "Hair Wax 5 Gallons"]] }
Lets you show only specific messages in the chat panel of a Chatbox, Inbox or Popup.
Used in methods like Chatbox.setMessageFilter. For example, to hide all system messages (eg only show user messages), do:
chatbox.setMessageFilter({type: ["==", "UserMessage"]})
To show all messages (ie disable the filter), just pass an empty object:
chatbox.setMessageFilter({})
Only select messags that have been sent in a particular time interval.
Must be an 2-element array of [operator, operand]
structure. Valid operators are: ">"
, "<"
, ">="
, "<="
, "between"
, and "!between"
.
The operand must be either a number or a 2-element array of numbers (for the between
operators).
Example:
1// to show only the messages that have been sent after the UNIX timestamp 16792983715862{ createdAt: [">", 1679298371586] }
Only select messages that have particular custom fields set to particular values.
Every key must correspond to a key in the custom message data that you have set. It is not necessary for all messages to have these keys.
Each value must be one of the following:
A string, equal to "exists"
or "!exists"
A 2-element array of [operator, operand]
structure. The operand must be either a string or an array of strings (for the oneOf
operators). Valid operators are: "=="
, "!="
, "oneOf"
, and "!oneOf"
.
Examples, assuming you have set a category
custom field on your messages:
1// Only show messages that have no category set:2{ custom: { category: "!exists" } }34// Only show messages of that have the category "shoes"5{ custom: { category: ["==", "shoes"] } }67// Only show messages that have the 'topic' either "inquiry" or "reservation"8{ custom: { topic: ["oneOf", ["inquiry", "reservation"] ] } }910// Only show messages about shoes that are marked visible.11// this assumes you also have a custom field called `visibility`12{ custom: { category: ["==", "shoes"], visibility: ["==", "visible" ] } }
Only show messages that were sent by users (web), through the REST API (rest), via reply-to-email (email) or via the import REST API (import).
For example:
1// Don't show messages that were sent via the REST API2{ origin: ["!=", "rest"] }
Only show messages that are sent by a sender that has all of the given properties
For example:
1// Only show messages sent by users with the role of 'admin' and if the user ID is 1.2{sender: {role: ["==", "admin"], id: ["==", "1"]}}
Only show messages of a given type, for example:
1{type: ["==", "SystemMessage"]}
A subscription to an event
unsubscribe | Stop receiving events for this subscription |
subscription.unsubscribe()
Stop receiving events for this subscription
Returns
A map of values that will be available to your theme under the theme.custom
namespace. The values can be anything that can be JSON-serialized. String and numeric values will also be made available as CSS custom properties in themes, available as var(--theme-<key>)
. where <key>
is the value's key in the object.
The name of the theme to use in this widget If no theme name is given, TalkJS will use the theme set in the user's role, falling back to the default theme if the user has no role.
Used to configure supported third-party integrations with TalkJS. See third party integrations
This event is triggered when the user toggles real-time message translation using the built-in toggle.
Conversation for which translation has been toggled
Boolean indicating if translation is enabled or not
TalkJS Error class, inherits from the global Error class.
TalkJS methods may throw (or reject promises with) instances of this class if specific catchable information can be provided through the code
property.
Machine-readable error code
Human-readable error message
A machine-readable error code enum.
Supports the following values:
- NOTIFICATIONS_PERMISSION_DENIED
- NOTIFICATIONS_NOT_SUPPORTED
- ARGUMENT_INVALID
Allows you to filter conversations down to a specific subset.
Use with Inbox.setFeedFilter or pass InboxOptions.feedFilter to Session.createInbox.
The first element must be the string "any", and the second element a list of SimpleConversationPredicate objects.
For example, to match all the conversations to which you have read access, or whose custom "accountId" field has the "my_account" value, use the following:
1["any", [{"access": ["==", "Read"]}, {"custom": {"accountId": ["==", "my_account"]}}]]
See SimpleConversationPredicate for all available options.
Lets you show only specific messages in the chat panel of a Chatbox, Inbox or Popup.
Used in methods like Chatbox.setMessageFilter.
The first element must be the string "any", and the second element a list of SimpleMessagePredicate objects.
For example, to match all the messages that are either of the type SystemMessage, or whose sender has the "admin" role, use the following:
1["any", [{"type": ["==", "SystemMessage"]}, {"sender": {"role": ["==", "admin"]}}]]
See SimpleMessagePredicate for all available options.
A string that must be "ReadWrite"
, "Read"
or "None"
.
Allows you to filter conversations down to a specific subset.
Use with Inbox.setFeedFilter or pass InboxOptions.feedFilter to Session.createInbox.
The ConversationPredicate can be either of the following:
- a single SimpleConversationPredicate object that filters based on all the fields of the predicate
- an array that gives you all the conversations that satisfy at least one of the SimpleConversationPredicates
See SimpleConversationPredicate and CompoundConversationPredicate for all available options.
A string or a two-element array that forms a predicate about a string field in a custom
field.
Used in MessagePredicate and ConversationPredicate. Allows all forms in FieldPredicate plus the following:
- "exists"
- "!exists"
A two-element array that forms a predicate about a field.
Used in MessagePredicate and ConversationPredicate. Possible forms:
- ["==", "someValue"]
- ["!=", "someValue"]
- ["oneOf", ["someValue", "someOtherValue"]]
- ["!oneOf", ["someValue", "someOtherValue"]]
Lets you show only specific messages in the chat panel of a Chatbox, Inbox or Popup.
Used in methods like Chatbox.setMessageFilter.
The MessagePredicate can be either of the following:
- a single SimpleMessagePredicate object that filters based on all the fields of the predicate
- an array that gives you all the messages that satisfy at least one of the SimpleMessagePredicates
See SimpleMessagePredicate and CompoundMessagePredicate for all available options.
A two-element array that forms a predicate about a numeric field.
Used in ConversationPredicate. Possible forms:
- [">", someNumber]
- ["<", someNumber]
- [">=", someNumber]
- ["<=", someNumber]
- ["between", [lowerBound, upperBound]]
- ["!between", [lowerBound, upperBound]]