Mercurial > hg > ugly-duckling
view src/app/visualisations/notes/notes.component.ts @ 384:7119d62121f0
ViewChild properties are, of course, inherited (why wouldn't they be?!). So, further de-duping.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Wed, 31 May 2017 19:21:02 +0100 |
parents | 1241ca979fd9 |
children | afe2fa4a3215 |
line wrap: on
line source
/** * Created by lucast on 31/05/2017. */ import {WavesComponent} from '../waves-base.component'; import { AfterViewInit, ChangeDetectionStrategy, Component, ElementRef, Input, ViewChild } from '@angular/core'; import {Note} from '../FeatureUtilities'; import Waves from 'waves-ui-piper'; @Component({ selector: 'ugly-notes', templateUrl: '../waves-template.html', styleUrls: ['../waves-template.css'], changeDetection: ChangeDetectionStrategy.OnPush }) export class NotesComponent extends WavesComponent<Note[]> { @Input() set notes(notes: Note[]) { this.feature = notes; } protected get featureLayers(): Layer[] { return [ new Waves.helpers.PianoRollLayer( this.feature, { height: this.height, color: this.colour, yDomain: findVerticalRange(this.feature) } ) ]; } } // TODO there might be scope to create a generic utility function like this function findVerticalRange(notes: Note[]): [number, number] { let [min, max] = notes.reduce((acc, note) => { const [min, max] = acc; return [Math.min (min, note.pitch), Math.max (max, note.pitch)]; }, [Infinity, -Infinity]); if (min === Infinity || min < 0 || max < 0) { min = 0; max = 127; } // round min and max to octave boundaries (starting at C as in MIDI) return [ 12 * Math.floor(min / 12), 12 * Math.ceil(max / 12) ]; }