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

cordova-plugin-feed-fm

v2.1.1

Published

Cordova Plugin for the native Feed.fm SDK

Downloads

10

Readme

code style: prettier

Usage

Prerequisites

  • Cordova-iOS 3.x.x or higher
  • Cordova-Android x.x.x

Using the plugin

initialize the plugin and handle all future state with a switch statement. plugin will respond with the appropriate msg.type and msg.payload when native state changes.

CordovaPluginFeedFm.initializeWithToken(
  successCallback,
  errorCallback,
  token,
  secret,
  enableBackgroundMusic
);

// repeatedly returns callbacks to Cordova when state changes with the following Object shape
{type: "NAME_OF_STATE_OR_EVENT", payload:{...}}

Full example of every state that initialize will respond with:

CordovaPluginFeedFm.initializeWithToken(
  function(msg) {
    switch (msg.type) {
      case "REQUESTING_SKIP":
        console.log(msg.payload);
        // your logic here
        break;
      case "PLAYBACK_STARTED":
        console.log(msg.payload);
        // your logic here
        break;
      case "NEW_CLIENT_ID":
        console.log(msg.payload);
        // your logic here
        break;
      case "SET_ACTIVE_STATION_SUCCESS":
        console.log(msg.payload);
        // your logic here
        break;
      case "SET_ACTIVE_STATION_FAIL":
        console.log(msg.payload);
        // your logic here
        break;
      case "SKIP_FAIL":
        console.log(msg.payload);
        // your logic here
        break;
      case "INITIALIZE":
        console.log(msg.payload);
        // your logic here
        break;
      case "WAITING_FOR_ITEM":
        console.log(msg.payload);
        // your logic here
        break;
      case "READY_TO_PLAY":
        console.log(msg.payload);
        // your logic here
        break;
      case "PLAYING":
        console.log(msg.payload);
        // your logic here
        break;
      case "STALLED":
        console.log(msg.payload);
        // your logic here
        break;
      case "COMPLETE":
        console.log(msg.payload);
        // your logic here
        break;
      case "UNKNOWN":
        console.log(msg.payload);
        // your logic here
        break;
      case "OFFLINE_ONLY":
        console.log(msg.payload);
        // your logic here
        break;
      case "UNINITIALIZED":
        console.log(msg.payload);
        // your logic here
        break;
      case "UNAVAILABLE":
        console.log(msg.payload);
        // your logic here
        break;
      case "STATION_CHANGE":
        console.log(msg.payload);
        // your logic here
        break;
      case "READY_TO_PLAY":
        console.log(msg.payload);
        // your logic here
        break;
      case "PAUSED":
        console.log(msg.payload);
        // your logic here
        break;
      default:
        break;
    }
  },
  function(err) {},
  "token",
  "secret",
  false // background audio
);

set active station

CordovaPluginFeedFm.setActiveStation(12345);

play

CordovaPluginFeedFm.play();

pause

CordovaPluginFeedFm.pause();

skip

CordovaPluginFeedFm.skip();

stop

CordovaPluginFeedFm.stop();

createNewClientID:

CordovaPluginFeedFm.createNewClientID();

setVolume

CordovaPluginFeedFm.setVolume(5);

setClientId

CordovaPluginFeedFm.setClientId(12345);

requestClientId

CordovaPluginFeedFm.requestClientId(
  function(msg) {
    console.log(msg.payload);
  },
  function(error) {}
);

Contributing to this plugin

The dev environment used for this project was macOS. Instructions for any other OS aren't provided and will be unreliable.

You will need the following global dependencies:

  • npm
  • cordova

Directory Structure

Key files

.
├── example           # cordova example project
│   ├── www           # example assets
|   ├── package.json  # example config
|
├── src               # plugin native source
├── www               # plugin js interface
├── plugin.xml        # cordova plugin config
├── package.json      # npm config

Setting up local env

  1. cd example
  2. cordova platform add platformname
  3. cordova emulate platformname

Key Commands

  • cordova prepare in /example/ this compiles non-native assets (html/css/js)
  • cordova plugin rm cordova-plugin-feed-fm && cordova plugin add cordova-plugin-feed-fm --searchpath=../ --noregistry in /example/ to reinstall plugin, useful for js interface changes

Troubleshooting

Experiencing bug:

  • "D8: Program type already present: android.support.v4.media.MediaBrowserCompat$ConnectionCallback$StubApi21"
    • Solution: cordova plugin add cordova-plugin-androidx && cordova plugin add cordova-plugin-androidx-adapter