Tell stories with friends with Programmable Chat and JavaScript

July 14, 2017
Written by
Kevin Lewis
Contributor
Opinions expressed by Twilio contributors are their own

Hh70cyJBAafy_yH9TvNyKyTw_wdAOO7-2bvUih34RXhJLvo_Nhx8QgWbGtmnHix5g4TwI4WrDEY-gq2uqD0Hf429fRAepxy4hHIhxV1h4YVay_7mgXPkpKJgGd3tALabw3Vd2HOK

One of my favourite icebreakers is to play a game called Once Upon a Time, which is popular enough to have its own card game. When playing, friends get to write one line of a story at a time and each player can only see the one immediately before theirs. The results are always hilarious as stories go off in all kinds of directions. I wanted the ability to play anytime with friends, where all they need is an internet-connected device. In this post I’ll show you how to create a basic online version of the game using Twilio Programmable Chat.

Our tools

Setting up our project

The first thing to do is download the Node.js starter app from the Twilio Docs. Follow the Node.js instructions to get it running – this will lead you through configuring your account information and installing your project dependencies. Once you’re all done, run npm install in your terminal and let’s get rolling!

Looking at the sample project

Here’s the important files in the sample project:

  • src/token_generator.js – a module for provisioning access tokens to the client
  • src/router.js – handles user routes, such as /token and /chat/messages (which we’ll create later)
  • public/chat/index.js – handles all client-side code

Creating an endpoint for our messages

By default, our sample project will get any new messages sent to the server from the time we join the channel. However, any past messages won’t get loaded but fortunately they are stored and can be retrieved in just a few lines of code. Let’s create a new route in src/router.js just before the last line:


router.get('/config', (req, res) => {
  res.json(config);
});

const client = require('twilio')(config.TWILIO_API_KEY, config.TWILIO_API_SECRET, {accountSid: config.TWILIO_ACCOUNT_SID}).ipMessaging;
const service = client.services(config.TWILIO_CHAT_SERVICE_SID);

router.get('/chat/messages',(req, res) => {
  service.channels(req.query.channel).messages.list()
  .then((response) => {
    res.send(
      response.map(({ sid, body, from }) => ({ sid, from, text: body }))
    );
  });
});

module.exports = router;

The first two lines are where we declare our constants for setting-up Programmable Chat. In the next two lines, we’re telling Express to respond to the users when they navigate to “/chat/messages?channel=CHANNEL_SID” and then grab a list of the messages in that channel. We then use a JavaScript map to respond with the data we want.

Let’s see how this works. Go to your terminal, cd into your directory and then type node app.js to start the application. Then navigate to http://localhost:3000 to see the project. Add a few messages to your chat and then grab your Channel’s SID from the your browser’s developer tools.

Navigate to http://localhost:3000/chat/messages?channel=CHANNEL_SID and if you’ve done everything correctly you should see your messages returned from the server.

The best thing about this is that you can now get all of your messages, even if they were published before a user joins the channel.

Even though we have all the messages accessible by the endpoint, we need some way to get this data back to the client. Let’s work on that next…

Getting all of our messages in the browser

Now that we’ve created our endpoint, let’s create two functions inside of “public/chat/index.js” to get that data in the browser. We’re going to add this code just below the setupChannel() function:

function grabMessages(callback) {
  $.getJSON('/chat/messages?channel=' + generalChannel.sid, function(data) {
    callback(data);
  });
}

function displayLatestMessage() {
  grabMessages(function(data) {
    if(data.length > 0) {
      printMessage(data[data.length-1].from, data[data.length-1].text);
    } else {
      $chatWindow.html('');
      $chatWindow.append('<p>No messages yet - try writing one below!</p>');
    }
  });
}

The grabMessages() function calls our new endpoint and returns that data – this function is small and reusable as it stops us from having to type out the full call every time we want to retrieve data.

The displayLatestMessage() function uses grabMessages(). If there’s no messages, it will encourage users to start their stories, but if there’s at least one message, it’ll grab the latest one and display it on the screen using theprintMessage() function.

Let’s rewrite the printMessage() function so it will only show the latest message, instead of all of them:

function printMessage(fromUser, message) {
  $chatWindow.html('');
  $chatWindow.append('<p>The last line was written by ' + fromUser + '.</p><h2>' + message + '</h2>');
}

Finally, let’s get the game to automatically show the latest message the the user when they first join the channel. We’ll do this by adding one line to our setupChannel() function:


function setupChannel() {
  generalChannel.join().then(function(channel) {
    print('Joined channel as ' + '<span class="me">' + username + '</span>.', true);
    displayLatestMessage();
  });

  generalChannel.on('messageAdded', function(message) {
    printMessage(message.author, message.body);
  });
}

At this point, let’s try it out! Open http://localhost:3000 in your browser, and once you join the channel it should only display the latest message to you.

Creating our buttons to show the full picture

We’ve now got a way to get all of our messages but we’ve not got a way to display all of them on the browser yet. Let’s change that! First create the buttons in “public/chat/index.html” by replacing the contents of the

element:

<header>
    <h2>Your name is: <span class='name'></span></h2>
    <button id='full-story'>See complete story</button>
    <button id='latest-message'>See latest message only</button>
</header>

In the sample project each user gets assigned a random name when joining the channel. As we clear the screen when the project loads, users have no easy way to see what their name is – we can do better than this. Inside of “public/chat/index.js”, add the following line:


generalChannel.join().then(function(channel) {
  print('Joined channel as ' + '<span class="me">' + username + '</span>.', true);
  $('header .name').text(username);
  displayLatestMessage();
});

Just below the displayLatestMessage() function, let’s tell the browser what to do when the buttons are pressed:


function displayLatestMessage() {
...
}

$('#full-story').on('click', function() {
  grabMessages(function(data) {
    $chatWindow.html('');
    for(var i = 0; i < data.length; i  ) {
      $chatWindow.append('<p><b>'   data[i].from   '</b>: '   data[i].text   '</p>');
    }
  });
});

$('#latest-message').on('click', displayLatestMessage);

When the ‘full story’ button is pressed, we get all the messages and then display each one along with their author on the screen. When we click the ‘latest message only’ button, we run the displayLatestMessage() function. Refresh your browser and give it a go – trying out the buttons at the bottom of the page.

Using Programmable Chat is a doozy

We’ve managed to take the sample application which does a lot of the heavy lifting in getting started with Programmable Chat and created a simple version of Once Upon a Time. We can host the application, give friends a link and play.

We can create a custom endpoint to get all messages from a server and retrieve them from the client. Here’s some ideas on how you can extend this project further:

Now you have everything you need to play Once Upon a Time with friends using Programmable Chat. If you have any questions, or hilarious stories which get created, let me know on Twitter (I’m @_phzn).