open-nomad/ui/app/templates/components/distribution-bar.hbs
Buck Doyle 244157786a
Add explicit this to templates (#8388)
This is the result of running the no-implicit-this-codemod, some manual fixes,
and the addition of a linting rule to prevent future ambiguity.
2020-07-09 15:19:07 -05:00

29 lines
831 B
Handlebars

<svg>
<defs>
<clipPath>
<rect class="mask" x="0" y="0" width="100%" height="100%" rx="2px" ry="2px" />
</clipPath>
</defs>
<g class="bars"></g>
</svg>
{{#if hasBlock}}
{{yield (hash
data=this._data
activeDatum=this.activeDatum
)}}
{{else}}
<div class="chart-tooltip {{if this.isActive "active" "inactive"}}" style={{this.tooltipStyle}}>
<ol>
{{#each this._data as |datum index|}}
<li class="{{if (eq datum.label this.activeDatum.label) "active"}}">
<span class="label {{if (eq datum.value 0) "is-empty"}}">
<span class="color-swatch {{if datum.className datum.className (concat "swatch-" index)}}" />
{{datum.label}}
</span>
<span class="value">{{datum.value}}</span>
</li>
{{/each}}
</ol>
</div>
{{/if}}