GithubHelp home page GithubHelp logo

braaar / jam-assistant Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 7.0 1.63 MB

A web app you can use at a live jam session to come up with ideas. https://braaar.github.io/jam-assistant/

License: GNU General Public License v3.0

HTML 4.56% TypeScript 95.44%
live-music music music-theory react reactjs theme-ui typescript

jam-assistant's People

Contributors

braaar avatar gri-ffin avatar guilherme-svg avatar kashyap010 avatar naincykumariknoldus avatar rishikumarray avatar starboy-sharma avatar

Stargazers

 avatar

Watchers

 avatar

jam-assistant's Issues

Roadmap

Features we want in the future

  • Key center and key mode selection (e.g. "G" and "minor", "F" and "mixolydian", etc.)
  • Providing chord progressions instead of just random chords (see #14)
  • Time signature selection/randomization
  • Display chords in a chord chart (see example)
  • Different chord lengths
  • Special challenge cards (see #1)
  • Rarity system for weighted randomness (Common, Uncommon, Rare, Epic, Legendary)

Loose discussion about future ideas is welcome in this issue, but feel free to create issues for more specialised discussion of specific features.

Set up github workflows

Right now we have the bare minimum in terms of CI/CD. More actions could allow us to do more fancy stuff or facilitate good coding practices

  • linting
  • prettier
  • test and build on PR
  • github-pages release

Add navigation

A navigation in the header would be nice when we have multiple pages to navigate between.

I suggest we use React Router for navigation

  • Install React Router
  • Set up Routing
  • Add route for jam.tsx at / (root of the web page)
  • Add navigation link to / (using React Router's Link Element)

Add "about" page

I think an about page would be nice.

<Heading> About </Heading>
<Paragraph> Blabla bla </Paragraph>

For now we can just copy the text from the readme or something.

I think it could be useful to have a text that explains briefly how the page works, but ideally everything should be fairly self explanatory if we design it right.

We should add a route for it when we get the routing setup (see #10). I think /about is a nice path

Design a logo for favicon

Right now the app is using the default react favicon. We should perhaps come up with a logo or symbol to use instead.

Introduce some basic chord progressions

We want to have some kind of harmonic logic in the app so that you can get chords that fit together harmonically.

In the harmonic style of 18th century european musicians, chords are grouped into their harmonic functions with a number from 1 to 7.

Function Extension Notes
I The root (tonic)
II
III
IV Subdominant
V Dominant
VI
VII

In the C major scale, these chords are

  • I: C major
  • II: D minor
  • III: E minor
  • IV: F major
  • V: G major
  • VI: A minor
  • VII: B dim

We want to write a function that will take some numbers and translate them into actual chords

const fourChords = {
  chords: [1, 5, 6, 4],
  mode: "major"
}
const keyCenter = "C";

writeChordProgression(fourChords, keyCenter); // returns [ "C", "G", "Am", "F"]

We can use this function alongside a large catalogue of chord progressions to get a random chord progression from the selection. If you grab two progressions you now have an A and B part you can alternate between.

getRandomProgression("C", "major"); // returns [ "C", "G", "Am", "F"]
getRandomProgression("C", "major"); // returns [ "C", "F", "G", "F"]

Update meta description

We should update the description tag. Right now it says Web site created using create-react-app.

I would rather have it say something like A web app you can use at a live jam session to come up with ideas. (we can work on the description more, but it's a start).

<meta name="description" content="Web site created using create-react-app" />

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.