Skip to content

SimonaPiz/Drum-Machine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Drum Machine

A Drum Machine app

icon freecodecamp FreeCodeCamp certification project

preview

Links

Table of contents

Overview

Objective

Build an app that is functionally similar to this: drum-machine.freecodecamp.

drum-machine-preview

User Stories:

  • I should be able to see an outer container with a corresponding id="drum-machine" that contains all other elements.
  • Within #drum-machine I can see an element with a corresponding id="display".
  • Within #drum-machine I can see 9 clickable drum pad elements, each with a class name of drum-pad, a unique id that describes the audio clip the drum pad will be set up to trigger, and an inner text that corresponds to one of the following keys on the keyboard: Q, W, E, A, S, D, Z, X, C. The drum pads MUST be in this order.
  • Within each .drum-pad, there should be an HTML5 audio element which has a src attribute pointing to an audio clip, a class name of clip, and an id corresponding to the inner text of its parent .drum-pad (e.g. id="Q", id="W", id="E" etc.).
  • When I click on a .drum-pad element, the audio clip contained in its child audio element should be triggered.
  • When I press the trigger key associated with each .drum-pad, the audio clip contained in its child audio element should be triggered (e.g. pressing the Q key should trigger the drum pad which contains the string Q, pressing the W key should trigger the drum pad which contains the string W, etc.).
  • When a .drum-pad is triggered, a string describing the associated audio clip is displayed as the inner text of the #display element (each string must be unique).

My process

  1. 🗂 Initialize the project on GitHub and use Git for log my commits and versioning my work.

  2. ✏ I looked at the designs to start planning how to approach the project

  3. ⚙ Implemented project features:

    - Create React Elements ☑issue #1

    React Components

  • 🟧 Main component id="drum-machine"
    • 🟩 pads container
      • 🟦 9 clickable drum .drum-pad elements, , each with a unique id that describes the audio clip the drum pad will be set up to trigger, and an inner text that corresponds to one of the following keys on the keyboard: Q, W, E, A, S, D, Z, X, C. The drum pads MUST be in this order.
      • Within each .drum-pad, there should be an HTML5 audio element which has a src attribute pointing to an audio clip, a class name of clip, and an id corresponding to the inner text of its parent .drum-pad (e.g. id="Q", id="W", id="E" etc.).
    • 🟥 element id="display"

- Add Interactivity ☑issue #4

  • Menage Status with Redux ☑ issue #5
  • 🟦 When I click on a .drum-pad element, the audio clip contained in its child audio element should be triggered.
  • 🟦 When I press the trigger key associated with each .drum-pad, the audio clip contained in its child audio element should be triggered (e.g. pressing the Q key should trigger the drum pad which contains the string Q, pressing the W key should trigger the drum pad which contains the string W, etc.).
  • 🟥 When a .drum-pad is triggered, a string describing the associated audio clip is displayed as the inner text of the #display element (each string must be unique).

Test suite provided

✔ All tests passed

Built with

  • Semantic HTML5 markup
  • CSS/SCSS custom properties
  • Flexbox
  • React 18
  • Redux 5
  • react-redux 9
  • @reduxjs/toolkit 2

Author

Acknowledgements

This is a solution to the Build a Drum Machine project to earn the Front End Development Libraries certification by FreeCodeCamp.