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

@ovh-ux/ng-ovh-swimming-poll

v5.1.1

Published

A poller to swim easily to success status!

Downloads

32

Readme

ng-ovh-swimming-poll

A poller to swim easily to success status!

npm version Downloads Dependencies Dev Dependencies

Install

$ yarn add @ovh-ux/ng-ovh-swimming-poll

Usage

import angular from 'angular';
import ngOvhSwimmingPoll from '@ovh-ux/ng-ovh-swimming-poll';

angular.module('myApp', [ngOvhSwimmingPoll]);

Features

  • Understand standard Task states
  • Customizable states (with object or function)
  • Can share the result between different scopes
  • Can retry when error rejection is triggered (with retryMaxAttempts, retryCountAttempts and retryTimeoutDelay task options)

With OVH standard task

The poller can manage return from OVH Task standard. This library understand OVH status and return promise when the task is finished.

function createPoller(Poller) {
  const url = '/task/42';
  Poller.poll(
    url,
    null, // params
    {
      namespace: 'a_namespace',
      method: 'get',
      scope: $scope.$id,
    },
  ).then(
    (result) => {
      console.log('result contains http response if task status is successful');
    },
    (result) => {
      console.log(
        'result contains http response if task status is in error state',
      );
    },
    (result) => {
      console.log(
        'result contains http response if task status is in pending state',
      );
    },
  );
}

With custom validation rules

When you want to poll another thing that an OVH task, you had to define your custom validation rules.

function createPoller(Poller) {
  const url = '/ip/192.168.1.1/status';
  Poller.poll(
    url,
    {
      headers: 'demo',
    },
    {
      namespace: 'a_namespace',
      method: 'get',
      scope: $scope.$id,
      successRule: {
        status: 'yeah_it_works',
        billingStatus(elem) {
          return elem.billing.status === 'nietMeerGeld';
        },
      },
      errorRule: {
        status: 'oh_damned',
        billingStatus(elem) {
          return elem.billing.status === 'verdom';
        },
      },
    },
  ).then(
    (result) => {
      console.log('result contains http response if status is yeah_it_works');
    },
    (result) => {
      console.log('result contains http response if status is oh_damned');
    },
    (result) => {
      console.log(
        'result contains http response if status is not oh_damned and not yeah_it_works',
      );
    },
  );
}

With custom validations rules, on a listing

You can do a polling on listing request. In this case:

  • promise will return success when all elements of the list are successful.
  • promise will return error when one element or more in the list is in error state and all other are in success state
  • else, promise will send a notify with the http response
function createPoller(Poller) {
  const url = '/ip';
  Poller.poll(
    url,
    {
      headers: 'demo',
    },
    {
      namespace: 'a_namespace',
      method: 'get',
      scope: $scope.$id,
      successRule: {
        status: 'yeah_it_works',
        billingStatus(elem) {
          return elem.billing.status === 'nietMeerGeld';
        },
      },
      errorRule: {
        status: 'oh_damned',
        billingStatus(elem) {
          return elem.billing.status === 'verdom';
        },
      },
    },
  ).then(
    (result) => {
      console.log(
        'result contains http response if all statuses are yeah_it_works',
      );
    },
    (result) => {
      console.log(
        'result contains http response if one or more status is oh_damned and other yeah_it_works',
      );
    },
    (result) => {
      console.log(
        'result contains http response if one or more status is not a finalized status',
      );
    },
  );
}

With time interval

You can specify the interval as a fix value or a function

function createPoller(Poller) {
  const url = '/task/42';
  Poller.poll(
    url,
    null, // params
    {
      namespace: 'a_namespace',
      method: 'get',
      scope: $scope.$id,
      interval(iteration) {
        return 10 * Math.exp(iteration);
      },
    },
  ).then(
    (result) => {
      console.log('result contains http response if task status is successful');
    },
    (result) => {
      console.log(
        'result contains http response if task status is in error state',
      );
    },
    (result) => {
      console.log(
        'result contains http response if task status is in pending state',
      );
    },
  );
}

Test

$ yarn test

Contributing

Always feel free to help out! Whether it's filing bugs and feature requests or working on some of the open issues, our contributing guide will help get you started.

License

BSD-3-Clause © OVH SAS