aboutsummaryrefslogtreecommitdiff
path: root/src/view/sequencer.ts
blob: 150f89b00942a0abcbfc7d87133ea4e2f8e287d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import h, { classNames } from 'lib/h'
import * as soundsLib from 'sounds'
import * as play from 'view/sequencer/play'
import * as addRemoveBeat from 'view/sequencer/addRemoveBeat'
import * as block from 'view/sequencer/block'

export function view() {
  let index = -1
  let blocks = [true]
  let blocksNode = h('div', 
    { className: 'g-Sequencer__Blocks' }, 
    block.view({ 
      checked: true,
      onCheck: checked => blocks[0] = checked
    })
  )

  let onNextStep = (sounds: soundsLib.Sounds) => {
    let oldIndex = index
    let newIndex = (index + 1) % blocks.length
    index = newIndex

    let oldBlock = blocksNode.childNodes[oldIndex] as HTMLElement
    if (oldBlock !== undefined) oldBlock.classList.remove('g-Sequencer__Block--Beat')

    let newBlock = blocksNode.childNodes[newIndex] as HTMLElement
    newBlock.classList.add('g-Sequencer__Block--Beat')

    if (blocks[newIndex]) soundsLib.playKick(sounds)
  }

  let sequencer = h('div', { className: 'g-Sequencer' },
    play.view({
      onNextStep,
      onStop: () => {
        let block = blocksNode.childNodes[index] as HTMLElement
        block.classList.remove('g-Sequencer__Block--Beat')
        index = -1
      }
    }),
    addRemoveBeat.view({
      initBeats: 1,
      onRemove: index => {
        let lastBlock = blocksNode.childNodes[index]
        blocksNode.removeChild(lastBlock)
        blocks.pop()
      },
      onAdd: index => {
        blocks.push(false)
        blocksNode.appendChild(block.view({ 
          checked: false,
          onCheck: checked => blocks[index] = checked
        })) 
      }
    }),
    blocksNode
  )

  return sequencer
}