🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

blockly-field-player

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blockly-field-player

A Blockly audio player field

1.0.1
latest
Source
npm
Version published
Weekly downloads
3
-25%
Maintainers
1
Weekly downloads
 
Created
Source

blockly-field-player Built on Blockly

A Blockly audio player field.

About

Audio player capabilities right from the Google Blockly Field.

  • Interactive audio visualization using Web Audio and Canvas based on wavesurfer.js
  • Public API: load(), unload(), play(), pause(), stop()
  • Player state change events
  • Audio source cache
  • Audio source autoload
  • XHR fetch with credentials
  • Color scheme configuration

blockly-field-player

Installation

npm

npm install --save blockly-field-player

yarn

yarn add blockly-field-player

Build

npm run build

or

yarn build

Usage

JavaScript

import * as Blockly from 'blockly'
import {FieldPlayer} from 'blockly-field-player'

Blockly.Blocks['test_field'] = {
  init: function () {
    this.appendDummyInput()
      .appendField(new FieldPlayer('http://localhost/test.mp3'), 'FIELDNAME')
  }
};

JSON

import * as Blockly from 'blockly'
import 'blockly-field-text-box'

Blockly.defineBlocksWithJsonArray([
    {
        "type": "test_field",
        "message0": "%1",
        "args0": [
            {
                "type": "field_player",
                "name": "FIELDNAME",
                "src": "http://localhost/test.mp3"
            }
        ]
    }])

Run in browser

<script src="./dist/index.js"></script>

note: you need to build the package first.

Configuration

You can provide options object:

Blockly.defineBlocksWithJsonArray([
    {
        "type": "test_field",
        "message0": "%1",
        "args0": [
            {
                "type": "field_player",
                "name": "FIELDNAME",
                "src": "http://localhost/test.mp3",
                "options": {
                    primaryColor: '#DEA922',
                    secondaryColor: '#E2D0A7',
                    backgroundColor: '#FCF3D8'
                }
            }
        ]
    }])

Options list

  • primaryColor
  • secondaryColor
  • backgroundColor
  • autoLoad (see notes about Autoload option)

Events

You can listen for various of player state events, such as:

  • notloaded
  • readytoload
  • unloaded
  • loading
  • loaded
  • playing
  • paused
  • error

Just subscribe to state events from the player instance:

Blockly.Blocks['test_field'] = {
  init: function () {
      const player = new FieldPlayer('http://localhost/test.mp3')
      player.on('state', state => console.debug(state))
      this.appendDummyInput().appendField(player, 'FIELDNAME')
  }
};

Autoload

By default, even if media source is provided, player will not load it automatically. If you want to change this behaviour and load media to cache during field render, set autoLoad option to true.

const player = new FieldPlayer('http://localhost/test.mp3', { autoLoad: true })

License

Apache 2.0

Keywords

blockly

FAQs

Package last updated on 13 Aug 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts