Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                  
<div id="app"></div>
  
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>


              
            
!

CSS

              
                body {
  background-color: blue;
}
.keypad__holder {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
}


.drum__machine {
  max-width: 600px;
  margin: 0 auto;
}

.drum__machine__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nes-container>:last-child { margin-bottom: inherit; 
}
              
            
!

JS

              
                class DrumMachine extends React.Component {
  constructor(props) {
    super(props);
    this.state = { soundDescription: '' }
    this.playSound = this.playSound.bind(this);
    this.handleKeyPress = this.handleKeyPress.bind(this);
  }
  
  
  componentDidMount() {
    document.addEventListener("keydown", this.handleKeyPress);
  }
  
  playSound(sound) {
    console.log(`play sound clicked`);
    console.log(`sound passed in: ${sound}`);
    switch (sound) {
      case 'q':
        this.audioRefQ.play();
        this.setState({
          soundDescription: 'bump'
        })
        break;
      case 'w':
        this.setState({
          soundDescription: 'card match'
        }) 
        this.audioRefW.play();
        break;
      case 'e':
        this.audioRefE.play();
        this.setState({
          soundDescription: 'explosion'
        }) 
        break;
      case 'a':
        this.audioRefA.play();
        this.setState({
          soundDescription: 'flame ball'
        }) 
        break;
      case 's':
        this.audioRefS.play();
        this.setState({
          soundDescription: 'froggy hop'
        }) 
        break;
      case 'd':
        this.audioRefD.play();
        this.setState({
          soundDescription: 'jumping'
        }) 
        break;
      case 'z':
        this.audioRefZ.play();
        this.setState({
          soundDescription: 'shell'
        }) 
        break;
      case 'x':
        this.audioRefX.play();
        this.setState({
          soundDescription: 'squish'
        }) 
        break;
      case 'c':
        this.audioRefC.play();
        this.setState({
          soundDescription: 'wrong card'
        }) 
        break;
      default:
        break;
    }
  }
  
  handleKeyPress = event => {
    switch(event.keyCode) {
      case 81:
        this.playSound('q');
        break;
      case 87:
        this.playSound('w');
        break;
      case 69:
        this.playSound('e');
        break;
      case 65:
        this.playSound('a');
        break;
      case 83:
        this.playSound('s');
        break;
      case 68:
        this.playSound('d');
        break;
      case 90:
        this.playSound('z');
        break;
      case 88:
        this.playSound('x');
        break;
      case 67:
        this.playSound('c');
        break;
      default:
        break;
    }
  };
  
  render() {
    return(
      <div onKeyDown={this.handleKey} id="drum-machine" class="drum__machine">
      
        <DrumMachineHeader />

        <div class="keypad__holder nes-container is-rounded">
            
        <button type="button" class="drum-pad nes-btn is-primary" id="Q" onClick={()=>this.playSound('q')}>
    Q
        <audio ref={(q) => {this.audioRefQ = q}} src="https://bobmatyas.github.io/fcc-drum-machine/sounds/bump.mp3" class="clip" id="Q" />
        </button>
          
                 <button type="button" class="drum-pad nes-btn is-primary" id="W" onClick={()=>this.playSound('w')}>
    W
        <audio ref={(w) => {this.audioRefW = w}} src="https://bobmatyas.github.io/fcc-drum-machine/sounds/card_match.mp3" class="clip" id="W" />
        </button>
 
                 <button type="button" class="drum-pad nes-btn is-primary" id="E" onClick={()=>this.playSound('e')}>
    E
        <audio ref={(e) => {this.audioRefE = e}} src="https://bobmatyas.github.io/fcc-drum-machine/sounds/explosion.mp3" class="clip" id="E" />
        </button>

                  <button type="button" class="drum-pad nes-btn is-primary" id="A" onClick={()=>this.playSound('a')}>
    A
        <audio ref={(a) => {this.audioRefA = a}} src="https://bobmatyas.github.io/fcc-drum-machine/sounds/flame_ball.mp3" class="clip" id="A" />
        </button>
 
                  <button type="button" class="drum-pad nes-btn is-primary" id="S" onClick={()=>this.playSound('s')}>
    S
        <audio ref={(s) => {this.audioRefS = s}} src="https://bobmatyas.github.io/fcc-drum-machine/sounds/froggy_hop.mp3" class="clip" id="S" />
        </button>

                  <button type="button" class="drum-pad nes-btn is-primary" id="D" onClick={()=>this.playSound('d')}>
    D
        <audio ref={(d) => {this.audioRefD = d}} src="https://bobmatyas.github.io/fcc-drum-machine/sounds/jumping.mp3" class="clip" id="D" />
        </button>

                  <button type="button" class="drum-pad nes-btn is-primary" id="Z" onClick={()=>this.playSound('z')}>
    Z
        <audio ref={(z) => {this.audioRefZ = z}} src="https://bobmatyas.github.io/fcc-drum-machine/sounds/shell.mp3" class="clip" id="Z" />
        </button>

                  <button type="button" class="drum-pad nes-btn is-primary" id="X" onClick={()=>this.playSound('x')}>
    X
        <audio ref={(x) => {this.audioRefX = x}} src="https://bobmatyas.github.io/fcc-drum-machine/sounds/squish.mp3" class="clip" id="X" />
        </button>


                  <button type="button" class="drum-pad nes-btn is-primary" id="C" onClick={()=>this.playSound('c')}>
    C
        <audio ref={(c) => {this.audioRefC = c}} src="https://bobmatyas.github.io/fcc-drum-machine/sounds/wrong_card.mp3" class="clip" id="C" />
        </button>
          
        </div>    
        <DrumMachineSoundDisplay soundDescription={this.state.soundDescription}  />
      </div>
    )
  }
}

function DrumMachineHeader () {
  return(
    <div class="nes-container is-dark">
      <div class="drum__machine__logo"><i class="nes-mario"></i>  <h1>Drum Machine</h1>
      </div>
  </div>

  );
}

function DrumMachineSoundDisplay(props) {
  
  return (
      <div id="display" class="nes-container is-dark with-title">
  <p class="title">Sound Test</p>
  <p>{props.soundDescription}</p>
</div>
  );
}

ReactDOM.render(<DrumMachine />, document.getElementById('app'));


              
            
!
999px

Console