An embeddable chatbox built on Matrix
Go to file
Sharon Kennedy 569a8e76c2 1.1.5 2020-05-26 10:43:14 -04:00
__mocks__ cleaned up for github 2020-05-07 10:45:17 -04:00
dist cleaned up for github 2020-05-07 10:45:17 -04:00
jest cleaned up for github 2020-05-07 10:45:17 -04:00
public cleaned up for github 2020-05-07 10:45:17 -04:00
src remove rem font size in dark mode 2020-05-26 10:42:53 -04:00
vendor cleaned up for github 2020-05-07 10:45:17 -04:00
.eslintrc cleaned up for github 2020-05-07 10:45:17 -04:00
.gitignore cleaned up for github 2020-05-07 10:45:17 -04:00
.travis.yml add travis ci 2020-05-21 10:48:33 -04:00
README.md update readme 2020-05-07 10:53:03 -04:00
package.json 1.1.5 2020-05-26 10:43:14 -04:00
renovate.json cleaned up for github 2020-05-07 10:45:17 -04:00
webpack.config.js cleaned up for github 2020-05-07 10:45:17 -04:00
yarn.lock Bump acorn from 5.7.3 to 5.7.4 2020-05-07 14:52:02 +00:00

README.md

Embeddable Matrix Chatbox

Demo video of chatbox

Live demo: https://nomadic-labs.github.io/safesupport-chatbox/

Built on:

Usage

<script src="https://unpkg.com/safesupport-chatbox" type="text/javascript"></script>
<script>
  var config = {
    matrixServerUrl: 'https://matrix-client.matrix.org',
    botId: '@your-help-bot:matrix.org',
    roomName: 'Support Chat',
    termsUrl: 'https://tosdr.org/',
    introMessage: 'This chat application does not collect any of your personal data or any data from your use of this service.',
    agreementMessage: 'Do you want to continue?',
    confirmationMessage: 'Waiting for a facilitator to join the chat...',
    exitMessage: 'The chat is closed. You may close this window.',
    chatUnavailableMessage: 'The chat service is not available right now. Please try again later.',
    anonymousDisplayName: 'Anonymous',
  }

  EmbeddableChatbox.mount(config);
</script>

Options:

Name Description Default
matrixServerUrl (required) URL for the Matrix homeserver you want to connect to https://matrix-client.matrix.org
botId (required) User ID for the bot account that handles invites null
introMessage (optional) First message the user sees before agreeing to the Terms of Use This chat application does not collect any of your personal data or any data from your use of this service.
termsUrl (optional) URL for the Terms of Use for the chat service https://tosdr.org/
roomName (optional) Name of the chatroom generated in Riot 'Support Chat'
agreementMessage (optional) Text to show to request agreement to the Terms of Use Do you want to continue?
confirmationMessage (optional) Text to show to ask for agreement to continue Waiting for a facilitator to join the chat...
exitMessage (optional) Text to show if the user rejects the Terms of Use. The chat is closed. You may close this window.
anonymousDisplayName (optional) The display name for the chat user. Anonymous
chatUnavailableMessage (optional) Text to show if no-one is available to respond The chat service is not available right now. Please try again later.

Feature list

  • Can be embedded on any website with Javascript enabled
  • WCAG AA compliant
  • Light and dark theme
  • Support seekers are anonymous
  • Uses Matrix's end to end encryption
  • If encryption fails, falls back to unencrypted chat
  • Status notifications are customizeable
  • Only initiates chat after user agrees to Terms of Service
  • Upon exiting chat, user data is wiped - account deleted, local datastore cleared
  • If enabled, the bot account can provide transcript of the conversation
  • Automatically parses incoming text messages for URLs and adds the tags
  • Easy to customize colour scheme
  • Bookmarklet allows users to open the chat on any website

Bot account

This chatbox is meant to be used with a bot account that handles a number of functions:

  • Sends out invitations to facilitators to join the support chat
  • Revokes unused invitations when the first facilitator join the chat
  • Keeps a transcript of the conversation
  • Notifies user if there are not facilitators available

The bot account is invited to the chatroom when a support request is initiated.

You can find the code for the bot at safesupport-bot.

Bookmarklet

The bookmarklet is a special link that runs a script on any website. The user saves the link by dragging it to their bookmarks bar. Then they can click on the bookmark on any page to run the script and load the chatbox.

You can try this out on the live demo.

Local development

Clone the project:

git clone https://github.com/nomadic-labs/safesupport-chatbox.git

Install the dependencies:

cd safesupport-chatbox
yarn

Start the development server:

yarn start

Open the demo page at http://localhost:9000/

Don't forget to also set up the bot account, otherwise you'll never get the chat invitations on Riot. Follow the instructions at safesupport-bot.

Production build

yarn build