@scrbbl/scribblelive-toolkit-likes

0.0.10 • Public • Published

Scribblelive Toolkit Likes

This package allows developers to easily use Scribblelive Likes.

Installation

To install the package run npm i @scrbbl/scribblelive-toolkit-likes within the project that contains the Scribblelive Toolkit Core.

Prerequisites

Likes Example

This example assumes the use of npm and a module bundler such as webpack.

const SLToolkit = require('@scrbbl/scribblelive-toolkit-core');

const token = 'my-token';

const Core = new SLToolkit({token});
const streamId = 123;
const postId = 123456;

// Function to simulate a like for a post being clicked
const likeClick = (postId) => {
  // Post being liked on with a given streamId
  Core.Likes.post(streamId, postId).then(
    res => console.log('res', res),
    err => console.log('err', err)
  );
};


const cb = (err, res) => {
  console.log(err, res);
};

// Getting any Likes
Core.Likes.getLikes(streamId, [postId], cb);

// Polling for new Likes
Core.Likes.pollLikes(streamId, [postId], cb);

// In 10 seconds it will cancel the polling for any new Likes
setTimeout(() => {
  Core.Likes.clearAllPolls();
}, 10000)

Likes Example (non-npm)

index.html

<html>
<head>
  <script src="SLToolkit.js"></script>
</head>
<body>
  <button onclick="voteClick(123456, 123)">
      vote
  </button>
  <script src="app.js"></script>
</body>
</html>

app.js

var token = 'my-token';

var Core = new SLToolkit({token});
var streamId = 123;
var pollId = 123456;

// Function to call when vote is clicked
function likeClick(pollId, selectionId) {
  Core.Poll.vote({streamId, pollId, selectionId}).then(
    res => console.log('res', res),
    err => console.log('err', err)
  );
};

function callback(err, res) {
  console.log(err, res);
}

Core.Likes.getLikes(streamId, [pollId], callback);

Likes Methods

Promise post(int streamId, int postId, function callback)

This function will return a promise that when resolved would have liked the specified post in the given stream.

Promise getLikes(int streamId, Array postIds, function callback)

This function will return a promise that when resolved will provide like data for the specified postIds.

int pollLikes(int streamId, Array postIds, function callback)

This function will return a poll identifier and will call the callback with new likes information. This poll identifier can be used to stop polls.

void killPoll(int pollIdentifier)

This function will stop polling for new likes.

Array getAllPolls()

This function will return an array of all running polling for likes.

void clearAllPolls()

This function will stop all polling for any likes.

Made with ❤️ at ScribbleLive

Readme

Keywords

none

Package Sidebar

Install

npm i @scrbbl/scribblelive-toolkit-likes

Weekly Downloads

1

Version

0.0.10

License

ISC

Last publish

Collaborators

  • scrbbl