Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

pubnub/chat-engine-uploadcare

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Uploadcare Plugin for Chat Engine

Adds the ability to upload images in a ChatEngine Chat via UploadCare service

Check out the UploadCare Setup Instructions

Quick Start

  1. Have a ChatEngine server running already, instantiate a client and connect it
const ChatEngine = ChatEngineCore.create({
    publishKey: 'pub-key-here',
    subscribeKey: 'sub-key-here'
});

ChatEngine.connect('Username');
ChatEngine.on('$.ready', () => { ... });
  1. Attach this plugin to the channel you want, in this case global
ChatEngine.global.plugin(ChatEngineCore.plugin['chat-engine-uploadcare']());
  1. Bind UploadCare to a UI element
const widget = uploadcare.Widget('[role=uploadcare-uploader]');
ChatEngine.global.uploadcare.bind(widget);
  1. Listen for the $uploadcare.upload events on your channel
ChatEngine.global.on('$uploadcare.upload', (payload) => {
    console.log(payload.data.cdnUrl);
});

Support

  • If you need help, have a general question a feature request or to file a bug, contact [email protected]

About

Easily add image uploads to chatrooms using UploadCare online service.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 5