This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// VSCODE SETTINGS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import WaveSurfer from 'wavesurfer.js'; | |
import { WaveformContianer, Wave, PlayButton } from './Waveform.styled'; | |
class Waveform extends Component { | |
state = { | |
playing: false, | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import WaveSurfer from 'wavesurfer.js'; | |
import { WaveformContianer, Wave, PlayButton } from './Waveform.styled'; | |
class Waveform extends Component { | |
componentDidMount() { | |
const track = document.querySelector('#track'); | |
this.waveform = WaveSurfer.create({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { WaveformContianer, Wave, PlayButton } from './Waveform.styled'; | |
class Waveform extends Component { | |
render() { | |
return ( | |
<WaveformContianer> | |
<PlayButton> // This is a <button /> | |
Play |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styled from 'styled-components'; | |
export const WaveformContianer = styled.div` | |
display: flex; | |
flex-direction: row; | |
align-items: center; | |
height: 80px; | |
width: 100%; | |
background: #fff; | |
padding: 0px 0px 5px 10px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
class Waveform extends Component { | |
render() { | |
return ( | |
<div /> | |
); | |
} | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Production Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Production Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Production Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Production Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: |
NewerOlder