2.0.3 • Published 5 months ago

@vgip/vonage-dialer-sdk v2.0.3

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
5 months ago

Vonage CTI Dialer SDK

by Vonage Integration Platform

Installation

npm install @vgip/vonage-dialer-sdk

Demo

https://plnkr.co/edit/TGj0HCbDU6yapgfL

Javascript

const VonageDialer = require('@vgip/vonage-dialer-sdk');

VonageDialer.init({ debug: true }, (dialer) => { // (optional)
  dialer.setOnDialerEvent((event) => {
    switch (event.type) {
      case 'CALL_START': {
        break;
      }
      case 'CALL_ANSWER': {
        break;
      }
      case 'CALL_END': {
        console.log(event.data); // VGIP Call Detail Record
        break;
      }
      default: {
        this.debugLog('Unhandled event', event);
      }
    }
  });
});

Plain HTML

<!DOCTYPE html>
<html>
  <head>
    <script type="text/javascript" src="vonage.dialer.sdk.js"></script>
  </head>
  <body>
    ...
  </body>
</html>

Dot vs Embed mode

By default, the script creates a Vonage Dot button and inserts it inside the host page. You can drag and reposition the Dot button everywhere on the page and it will remember its position on reload. The dialer becomes shown when a phone call is started or when the Dot button is clicked.

In order to place the dialer into a designated container on the page, create an HTML element with CSS class .vonage-dialer-container;

<div class='vonage-dialer-container' style='width: 280px; height: 460px; position: relative;'></div>

Customization

You can extend the dialer with additional behavior, implement contacts autocomplete and add extra settings. Find out how in the Dialer SDK documentation.

2.0.3

5 months ago

2.0.2

7 months ago

2.0.1

1 year ago

2.0.0

1 year ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

5 years ago

1.0.0

5 years ago