Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@blackbox-vision/mui-audio-player
Advanced tools
Material-UI based Audio Player. Check out the demo.
npm i @blackbox-vision/mui-audio-player
yarn add @blackbox-vision/mui-audio-player
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.
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. |
volume bar
.Please, open an issue following one of the issues templates. We will do our best to fix them.
If you want to contribute to this project see contributing for more information.
Distributed under the MIT license. See LICENSE for more information.
FAQs
Material-UI based Audio Player
We found that @blackbox-vision/mui-audio-player demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.