npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

guardian-comment-count

v2.1.3

Published

Standalone widget for comment count

Downloads

13

Readme

Standalone widget for comment count

Installation

npm install --save guardian-comment-count

Alternatively you can use JSPM or any other package manager that supports NPM.

Usage

In your HTML use the custom tag

<comment-count discussion="1234"></comment-count>

In your JavaScript

import { load as loadCommentCount } from 'guardian-comment-count';

// Somewhere after page load
loadCommentCount({
    apiBase: '//api.comments.com',
    apiQuery: 'ids'
});

The widget will load the comment count of all custom tags in the page, batching requests. Once results are back, it'll simply append the text value to the tags.

You can style the custom tags independently of this widget as any other HTML tag.

Dependencies

The widget runs on modern browsers and assumes the following features are available

You can use dependency injection to pass them in case you're not using a polyfill.

Peer dependencies

Some libraries are kept as peer dependencies, users of this widget will have to provide them.

  • fastdom

Advanced Usage

Number formatting

By default the widget's text is set to whatever values comes from the server. You can apply custom formatting (e.g. convert from 1000 to 1,000) using the optional format function

import { load } from 'guardian-comment-count';
import { numberFormatting } from 'number-utility';

load({
    format: numberFormatting
});

Filtering

You might want to skip the comment count for certain elements depending on your A/B tests or other configuration. The filter function receives the custom DOM elements and works like Array.filter, return true to keep loading the comment count or false to skip it.

import { load } from 'guardian-comment-count';

load({
    filter (node) {
        // node is the custom DOM element
        const anything = node.getAttribute('data-anything');
        return ABTest.running() === anything;
    }
});

Update count

If you want to update the count of all elements you can simply call load again, but if you only want to load the value of nodes that haven't been loaded yet (for instance because you're ajax-ing in new one) you can call

import { load, update } from 'guardian-comment-count';

const widgetConfig = {
    apiBase: '//api.comments.com',
    apiQuery: 'ids'
};

load(widgetConfig);

eventBus.on('new-elements-added-to-the-page', () => {
    update(widgetConfig);
});

Error reporting

Both load and update return a Promise

import { load } from 'guardian-comment-count';

load({})
.then(() => {
    // All elements have been updated
})
.catch(error => {
    // Something's wrong
});

Update callback

Pass an optional callback to be notified of changes on custom tags

import { load } from 'guardian-comment-count';

load({
    onupdate: (node, count) => {
        // node is the DOM element
        // count the numerical comment count
    }
})
.catch(error => {
    // Errors in the onupdate method bubble up here
});

You can use the callback for instance to hide the icon of discussions with 0 comments. By default the widget does not set the text to 0.

Dependency Injection

import { load } from 'guardian-comment-count';
import { Promise } from 'bluebird';
import { customFetch } from 'fetch';

load({
    fetch: customFetch,
    Promise: Promise
});

Local development

The widget is written in ES2015 and transpiled to ES5 through babel + rollup.

Unit test

Tests run in Karma + Jasmine and collect coverage report with istanbul.

npm test

Watch unit tests

npm run dev

Alternatively you can run karma start if installed globally.

Runs karma in auto-watch mode. You can then connect your browser to http://localhost:9876/debug.html to run the tests locally.

Tests and source files are automatically transpiled with inline source maps.

Integration

If you want to test the full widget integration inside a standalone page run

npm run example

and open a browser to http://localhost:4000

The server automatically watches your source files and transpiles them using rollup.