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

@blackbox-vision/mui-audio-player

v2.1.0

Published

Material-UI based Audio Player

Downloads

10

Readme

MUI Audio Player npm version License: MIT Known Vulnerabilities

Material-UI based Audio Player. Check out the demo.

Installation

NPM

npm i @blackbox-vision/mui-audio-player

YARN

yarn add @blackbox-vision/mui-audio-player

Usage

The usage is really simple:

import React from 'react';
import Grid from '@material-ui/core/Grid';

import pink from '@material-ui/core/colors/pink';
import deepPurple from '@material-ui/core/colors/deepPurple';

import createTheme from '@material-ui/core/styles/createMuiTheme';
import ThemeProvider from '@material-ui/core/styles/MuiThemeProvider';

import { AudioPlayer } from '@blackbox-vision/mui-audio-player';

const theme = createTheme({
  palette: {
    type: 'light',
    primary: deepPurple,
    secondary: pink,
  },
});

export default class App extends React.Component {
  render() {
    return (
      <ThemeProvider theme={theme}>
        <Grid
          justify="center"
          alignContent="center"
          alignItems="center"
          container
          style={{ height: '100vh', backgroundColor: deepPurple['500'] }}
        >
          <Grid md={4} item />
          <Grid md={4} item>
            <AudioPlayer
              src="https://s9.converto.io/download-file/zwXZbmwDyWGN7qkqvVPMcQm0pIajpwdE/file.mp3"
              autoPlay={false}
              rounded={true}
              elevation={1}
              width="100%"
            />
          </Grid>
          <Grid md={4} item />
        </Grid>
      </ThemeProvider>
    );
  }
}

As you can see in the example, this component is pretty well themeable.

Props

These are the properties used by the AudioPlayer component:

| Properties | Types | Default Value | Description | | ---------- | ------- | ------------- | -------------------------------------------------------------------- | | src | string | none | Determines the url used by the player to load the audio source. | | autoPlay | boolean | false | Determines if the player starts reproducing the audio automatically. | | rounded | boolean | false | Determines if the player container has rounded borders. | | elevation | number | 1 | Determines if the player container has box-shadow applied. | | width | string | 500px | Determines the width of the player. | | height | string | 45px | Determines the height of the player. | | classNames | object | {} | Determines the classNames to be applied. (*) |

(*) classNames is a special property:

| Properties | Types | Default Value | Description | | ------------------- | ------ | ------------- | ----------------------------------------------------------------- | | classNames.player | string | none | Determines the className to be applied to the root container. | | classNames.loopIcon | string | none | Determines the classNames to be applied to the loop icon element. | | classNames.playIcon | string | none | Determines the classNames to be applied to the play icon element. | | classNames.muteIcon | string | none | Determines the classNames to be applied to the mute icon element. | | classNames.slider | string | none | Determines the classNames to be applied to the slider element. | | classNames.track | string | none | Determines the classNames to be applied to the track element. | | classNames.thumb | string | none | Determines the classNames to be applied to the thumb element. | | classNames.text | string | none | Determines the classNames to be applied to the text element. |

TODO

  • [ ] Add volume bar.
  • [ ] Add more tests.
  • [ ] Add better styles for responsive design.

Issues

Please, open an issue following one of the issues templates. We will do our best to fix them.

Contributing

If you want to contribute to this project see contributing for more information.

License

Distributed under the MIT license. See LICENSE for more information.