3.0.1 • Published 4 years ago

jovo-component-schedule-meeting v3.0.1

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
4 years ago

Jovo Conversational Component: ScheduleMeeting

Getting Started

The component provides a prepackaged solution to book meetings using Google Calendar.

By delegating to the component, it will go through determining a meeting slot and emailing them the details.

Currently, you have to parse user's email to the component. A cleaner version, where the component collects the email itself is in the works.

To specify "office hours", i.e. intervals at which a user can book a meeting, you simply create an event inside your calendar and specify its title in the components configuration as an unique identifier. The interval from the beginning of the event to the end will be divided into multiple slots each x (configurable) minutes long that the users can book.

Booked meetings are saved inside the calendar as events, where the title is the user's email.

Find out more about Jovo's Conversational Components

Installation

You can install the component using npm:

$ npm install --save jovo-component-schedule-meeting

After that, you use the Jovo CLI to transfer the component's files to your project using the load command:

$ jovo load jovo-component-schedule-meeting

Now, include the component in your app.js:

// @language=typescript
// src/app.ts

import { ScheduleMeeting } from './components/jovo-component-schedule-meeting';

app.useComponents(new ScheduleMeeting());

// @language=javascript
// src/app.js

const { ScheduleMeeting } = require("../components/jovo-component-schedule-meeting");

app.useComponents(new ScheduleMeeting());

The last thing to do, is to set up the Google Calendar integration. For that you have to register the application on the Google API Console:

Google API Console Dashboard

After that you have to enable the Google Calendar API:

Google Calendar API Search

Now, you have to get your credentials:

Google Calendar API Dashboard

Click on configure consent screen after that:

Google Calendar API Credentials

Now, back to Credentials, since for some reason the option we're actually looking for only appears if we go to the OAuth consent screen first:

Google Calendar API OAuth Consent Screen

There you can now create OAuth client ID credentials:

Google Calendar API Create Credentials

Select other as the application type and name your credentials:

Google Calendar API OAuth Credentials

Now, download your credentials:

Google Calendar API Download Credentials

Add the credentials file to your project and add it's path to your config file:

// config.js

module.exports = {
    // ...
    components: {
        ScheduleMeeting: {
            credentialsPath: './credentials' // path to credentials from config file
        }
    }
};

Now, you have to run through the authorization process the get the initial token needed to access your Google Calendar. For that, run the postinstall script and follow its instructions:

# typescript:
$ npm run tsc
# from the root of your project:
$ node dist/src/components/ScheduleMeeting/src/scripts/postinstall

# javascript
# again from the root of your project
$ node src/components/ScheduleMeeting/src/scripts/postinstall

That's it for the installation.

Usage

While delegating to the component, you have to parse the user's email address in the data object:

this.delegate(scheduleMeeting.name, {
    onCompletedIntent: 'xyz',
    data: {
        email: 'xyz@jovo.tech'
    }
});

Sample Dialog

SSML tags are not included in sample dialogs, but might be included in the responses.

UserAlexa SpeechAlexa RepromptKeys
 Which days are most convenient for you? start-question
Friday   
 On friday I have 4 open slots. For example, at 8:30 AM, 9:15 AM and 14:00 PM PST. Which one should it be? date
8:30 AM   
 Are you sure you want to book a meeting on Friday the 26th of July at 8:30 AM? slot-confirmation
Yes   

----> delegation to GetEmail component <----

----> Send response back <----

UserAlexa SpeechAlexa RepromptKeys
 Which days are most convenient for you? start-question
Friday   
 On friday I have 4 open slots. For example, at 8:30 AM, 9:15 AM and 14:00 PM PST. Which one should it be? date
What about next tuesday?   
 On tuesday I have 6 open slots. For example, at 9:30 AM, 11:00 AM and 15:00 PM PST. Which one should it be? date
What about 12:00 PM?   
 Are you sure you want to book a meeting on tuesday the July 30 at 12:00 PM? slot-confirmation
Yes   

----> delegation to GetEmail component <----

----> Send response back <----

UserAlexa SpeechAlexa RepromptKeys
 Which days are most convenient for you? start-question
Friday   
 On friday I have 4 open slots. For example, at 8:30 AM, 9:15 AM and 14:00 PM PST. Which one should it be? date
What about 12:00 PM?   
 The slot you requested is not available. Please choose a different one. slot-unavailable
11:00 AM   
 Are you sure you want to book a meeting on Friday the 26th of July at 11:00 AM? slot-confirmation
Yes   

----> delegation to GetEmail component <----

----> Send response back <----

UserAlexa SpeechAlexa RepromptKeys
 Which days are most convenient for you? start-question
Friday   
 On friday I have 4 open slots. For example, at 8:30 AM, 9:15 AM and 14:00 PM PST. Which one should it be? date
8:30 AM   
 Are you sure you want to book a meeting on Friday the 26th of July at 8:30 AM? slot-confirmation
No   
 Ok, either choose a new date or a new slot for the current one! slot-confirmation-denied

----> selects and confirms available slot <----

----> delegation to GetEmail component <----

----> Send response back <----

Response

The component's $response has the following interface:

{
    status: "SUCCESSFUL" | "REJECTED" | "ERROR"
}

It doesn't return any kind of data. If the status is set to SUCCESSFUL a meeting was created and the user received an email containing the details

Find out more about Conversational Component's responses

Configuration

The component provides a variety of configurable options.

NameDescriptionsTypeRequired
calendarIdThe id of the calendar which the component should useStringYes
eventLengthInMinThe length of the bookable meeting slots in minutesNumberNo - Default: 15
intervalTitlesArray specifying the titles of the intervals that specify the "office hours"String[]Yes
eventOptionsObject specifying the options for the event which will be created for each booked slot. Google documentation. attendee, end, and start are set by the component.ObjectNo

Example:

// config.js

module.exports = {
    // ...
    components: {
        'jovo-component-schedule-meeting': {
            calendarId: `primary`,
            eventLengthInMin: 15,
            intervalTitles: ['Test', 'TestTwo'],
            eventOptions: {
                reminders: {
                    useDefault: false,
                    overrides: [
                        {
                            method: 'email',
                            minutes: 10
                        }
                    ]
                }
            }
        }
    }
};

Find out more about Conversational Component's configuration