43 lines
2.4 KiB
HTML
43 lines
2.4 KiB
HTML
<template name="studySeriesQuickSwitch">
|
|
<div class="quickSwitchWrapper {{side}}">
|
|
<div class="quickSwitch js-quick-switch clearfix rp-t-1 {{#if eq side 'left'}}rp-r-3{{else}}rp-l-3{{/if}}">
|
|
<div class="switchSection switchSectionStudy rp-x-1 {{#if eq side 'left'}}pull-right{{else}}pull-left{{/if}}">
|
|
<div class="label">Study</div>
|
|
<div class="studySwitch">
|
|
<div class="studyBox"></div>
|
|
<div class="switchHover studyHover clearfix">
|
|
<div class="scrollArea">
|
|
{{>studyTimepointBrowser timepointViewType='key' currentStudy=this.currentStudy viewportIndex=this.viewportIndex}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="switchSection switchSectionSeries rp-x-1 {{#if eq side 'left'}}pull-right{{else}}pull-left{{/if}}">
|
|
{{#let thumbnailsList=(studyThumbnails currentStudy)}}
|
|
<div class="label">Series</div>
|
|
<div class="seriesSwitch clearfix">
|
|
{{#each thumbnail in thumbnailsList}}
|
|
{{#if lt @index 8}}
|
|
<div class="seriesItem {{#if eq side 'left'}}pull-right{{else}}pull-left{{/if}} {{#if isSeriesActive thumbnail.stack.seriesInstanceUid viewportIndex}}active{{/if}}"></div>
|
|
{{else}}
|
|
{{#if eq @index 8}}
|
|
<div class="seriesItem count {{#if eq side 'left'}}pull-right{{else}}pull-left{{/if}}">{{thumbnailsList.length}}</div>
|
|
{{/if}}
|
|
{{/if}}
|
|
{{/each}}
|
|
<div class="switchHover seriesHover clearfix">
|
|
<div class="scrollArea">
|
|
<div class="thumbnailsWrapper">
|
|
{{#each thumbnail in thumbnailsList}}
|
|
{{>thumbnailEntry thumbnail=thumbnail viewportIndex=viewportIndex}}
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/let}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|