ringcentral-c2d
TypeScript icon, indicating that this package has built-in type declarations

2.0.3 • Public • Published

RingCentral Click To Dial library

NPM Version

This library can help you to get phone numbers in web page and show a RingCentral Click-to-Call and Click-to-Text shortcut when hover on phone number text.

clicktodial

See Demo

Install

via npm

npm install ringcentral-c2d

via yarn

yarn add ringcentral-c2d

Overview

This library mainly contains 3 parts

  1. Matchers - For matching phone numbers in the provided page content
  2. Observers - For watching any DOM changes of the page
  3. Widgets - For injecting UI widgets for user to interact with

Get Start

With webpack:

webpack.config.js

import { RingCentralC2D, WidgetEvents } from 'ringcentral-c2d';

const clickToDial = new RingCentralC2D();

clickToDial.widget.on(WidgetEvents.call, (phoneNumber) => {
    console.log('Click to Call:', phoneNumber);
});

clickToDial.widget.on(WidgetEvents.text, (phoneNumber) => {
    console.log('Click to Text:', phoneNumber);
});

// Stop
clickToDial.dispose();

CDN

<script src="https://unpkg.com/ringcentral-c2d@2.0.2/build/index.js"></script>
<script>
    var clickToDial = new RingCentralC2D();

    clickToDial.widget.on('call', function (phoneNumber) {
        console.log('Click to Call:', phoneNumber);
    });

    clickToDial.widget.on('text', function (phoneNumber) {
        console.log('Click to Text:', phoneNumber);
    });

    // Stop
    clickToDial.dispose();
</script>

Advanced

Custom your own widget by referencing this sample code

SampleWidget.ts

// Implement it by referencing sample code
class MyWidget {}

const myWidget = new MyWidget({
    // Any arguments your widget needs
});

// Bind any events as you need
myWidget.on('your-event-name', () => {
    // Your event handler
});

const clickToDial = new RingCentralC2D({
    widget: myWidget,
});

// Stop
clickToDial.dispose();

Readme

Keywords

none

Package Sidebar

Install

npm i ringcentral-c2d

Weekly Downloads

202

Version

2.0.3

License

MIT

Unpacked Size

1.4 MB

Total Files

201

Last publish

Collaborators

  • u9520107
  • embbnux