view src/app/app.component.html @ 250:c60b03098bae

Rename to indicate not all responses are sent.
author Lucas Thompson <dev@lucas.im>
date Thu, 27 Apr 2017 10:37:26 +0100
parents 53ea6406d601
children 82d476b976e0
line wrap: on
line source
<div class="ugly-container">
  <div class="ugly-header">
    <md-toolbar color="primary">
      <md-icon svgIcon="duck"></md-icon>

      <span class="ugly-toolbar-filler"></span>

      <ugly-playback-control></ugly-playback-control>
      <ugly-recording-control
        (finishedRecording)="onFileOpened($event)"
      ></ugly-recording-control>

      <!-- This fills the remaining space of the current row -->
      <span class="ugly-toolbar-filler"></span>


      <ugly-audio-file-open
        (fileOpened)="onFileOpened($event)"
      ></ugly-audio-file-open>
      <!-- menu opens when trigger button is clicked -->
      <button md-icon-button (click)="sidenav.toggle()">
        <md-icon>extension</md-icon>
      </button>
    </md-toolbar>
  </div>

  <div class="ugly-content">
    <md-sidenav-container>
      <md-sidenav #sidenav align="start" mode="over">
        <ugly-feature-extraction-menu
          (requestOutput)="extractFeatures($event)"
          [disabled]="!canExtract">
        </ugly-feature-extraction-menu>
      </md-sidenav>
      <ugly-notebook-feed
        [analyses]="analyses.toIterable()"
        [rootAudioUri]="rootAudioUri"></ugly-notebook-feed>
    </md-sidenav-container>
  </div>
</div>