2020-08-26 15:44:50 -07:00
|
|
|
{{#if @linkParams}}
|
|
|
|
<DynamicLink
|
|
|
|
class={{this.baseClass}}
|
|
|
|
@params={{@linkParams}}
|
2020-09-29 16:04:25 -07:00
|
|
|
onmouseenter={{action this.hideTooltipIfUntruncated}}
|
2020-08-26 15:44:50 -07:00
|
|
|
>
|
|
|
|
{{@text}}
|
|
|
|
{{#if this.showTooltip}}
|
2020-09-29 16:04:25 -07:00
|
|
|
<EmberTooltip
|
2020-08-26 15:44:50 -07:00
|
|
|
@text={{@text}}
|
2020-09-29 16:04:25 -07:00
|
|
|
@tooltipClass="truncated-text-with-tooltip__tooltip"
|
2020-08-26 15:44:50 -07:00
|
|
|
/>
|
|
|
|
{{/if}}
|
|
|
|
</DynamicLink>
|
|
|
|
{{else}}
|
|
|
|
<span
|
|
|
|
class={{this.baseClass}}
|
2020-09-29 16:04:25 -07:00
|
|
|
onmouseenter={{action this.hideTooltipIfUntruncated}}
|
2020-08-26 15:44:50 -07:00
|
|
|
role="tooltip"
|
|
|
|
>
|
|
|
|
{{@text}}
|
|
|
|
{{#if this.showTooltip}}
|
2020-09-29 16:04:25 -07:00
|
|
|
<EmberTooltip
|
2020-08-26 15:44:50 -07:00
|
|
|
@text={{@text}}
|
2020-09-29 16:04:25 -07:00
|
|
|
@tooltipClass="truncated-text-with-tooltip__tooltip"
|
2020-08-26 15:44:50 -07:00
|
|
|
/>
|
|
|
|
{{/if}}
|
|
|
|
</span>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{yield}}
|