我有一个带有“ dotdotdot” css类的以下模板,该模板添加 省略号正确溢出。
<div class="dotdotdot">{{data.trip.name}}</div>
我在这里要做的是实现一个指令,该指令在 省略号仅被激活。
这是指令中的当前代码:
import { Directive, OnInit, ElementRef } from '@angular/core';
declare var $: any;
@Directive({
selector: '.dotdotdot'
})
export class DotdotdotDirective implements OnInit {
private el: HTMLElement;
constructor(elRef: ElementRef) {
this.el = elRef.nativeElement;
}
ngOnInit() {
if (this.isEllipsisActive(this.el)) {
// TODO add title attribute to the div with value from text
$(this.el).tooltip();
}
}
isEllipsisActive(e) {
return (e.offsetWidth < e.scrollWidth);
}
}
我在上面的代码中有两个问题:
谢谢!
答案 0 :(得分:3)
您可以创建以下指令:
import { AfterViewInit, Directive, ElementRef, EventEmitter, Output } from
'@angular/core';
@Directive({
selector: '[isEllipsisActive]'
})
export class IsEllipsisActiveDirective implements AfterViewInit {
constructor(private elementRef: ElementRef) {}
ngAfterViewInit(): void {
setTimeout(() => {
const element = this.elementRef.nativeElement;
if(element.offsetWidth < element.scrollWidth){
element.title = element.innerHTML;
}
}, 500);
}
}
看看这个https://stackblitz.com/edit/angular-qjmg7m?file=src%2Fapp%2Fis-ellipsis-active.directive.ts
答案 1 :(得分:1)
ofir的很好答案-这是一个修改后的版本,如果初始化后文本发生更改,该版本将可以使用。
import { Directive, ElementRef, HostListener } from '@angular/core';
@Directive({
selector: '[isEllipsisActive]'
})
export class isEllipsisActiveDirective {
constructor(private elementRef: ElementRef) {}
@HostListener('mouseenter')
onMouseEnter(): void {
setTimeout(() => {
const element = this.elementRef.nativeElement;
if (element.offsetWidth < element.scrollWidth) {
element.title = element.textContent;
}
else if (element.title) element.removeAttribute('title');
}, 500);
}
}
答案 2 :(得分:0)
您可以使用disableTooltip属性,并设置是否要返回的功能。
答案 3 :(得分:0)
isEllipsisActive(e: HTMLElement): boolean {
return e ? (e.offsetWidth < e.scrollWidth) : false;
}
<mat-card>
<mat-card-title #galleryTitle [matTooltip]="gallery.name"
[matTooltipDisabled]="!isEllipsisActive(galleryTitle)">
{{gallery.name}}
</mat-card-title>
<mat-card>