Skip to content

Commit 52c5042

Browse files
committed
refactor(avatar): for src add deferrable view with placeholder
1 parent 995c9c8 commit 52c5042

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

projects/coreui-angular/src/lib/avatar/avatar.component.html

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
<ng-content>
22
@if (src()) {
3-
<img [ngSrc]="src() ?? ''" fill class="avatar-img" alt="{{alt()}}" />
3+
@defer (prefetch on idle) {
4+
<img [ngSrc]="src() ?? ''" fill="" class="avatar-img" alt="{{alt()}}" />
5+
} @placeholder () {
6+
<svg aria-label="Avatar placeholder"
7+
focusable="false"
8+
preserveAspectRatio="xMidYMid slice"
9+
role="img"
10+
xmlns="http://www.w3.org/2000/svg"
11+
class="avatar-img"
12+
style="position: absolute; width: 100%; height: 100%; inset: 0;">
13+
<rect fill="#868e96" height="100%" width="100%"></rect>
14+
</svg>
15+
}
416
}
517
</ng-content>
618
@if (!!status()) {

projects/coreui-angular/src/lib/avatar/avatar.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { Component, computed, HostBinding, input, InputSignal } from '@angular/core';
21
import { NgClass, NgOptimizedImage } from '@angular/common';
2+
import { Component, computed, HostBinding, input, InputSignal } from '@angular/core';
33

44
import { Colors, Shapes, Sizes, TextColors } from '../coreui.types';
55
import { TextColorDirective } from '../utilities';

0 commit comments

Comments
 (0)