PreviewCard: indicates loading
This commit is contained in:
parent
9b446aa846
commit
ed53f24ede
2 changed files with 14 additions and 0 deletions
|
@ -19,6 +19,10 @@
|
|||
background-color: var(--tutu-color-surface);
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
|
||||
&.loaded {
|
||||
background-color: #eeeeee;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover,
|
||||
|
|
|
@ -5,6 +5,14 @@ import { Title, Body1 } from "../../material/typography";
|
|||
import { averageColorHex } from "../../platform/blurhash";
|
||||
import "./PreviewCard.css";
|
||||
|
||||
function onResetImg(event: Event & { currentTarget: HTMLImageElement }) {
|
||||
event.currentTarget.classList.remove("loaded");
|
||||
}
|
||||
|
||||
function onImgLoaded(event: Event & { currentTarget: HTMLImageElement }) {
|
||||
event.currentTarget.classList.add("loaded");
|
||||
}
|
||||
|
||||
export function PreviewCard(props: {
|
||||
src: mastodon.v1.PreviewCard;
|
||||
alwaysCompact?: boolean;
|
||||
|
@ -81,6 +89,8 @@ export function PreviewCard(props: {
|
|||
>
|
||||
<Show when={props.src.image}>
|
||||
<img
|
||||
onLoadStart={onResetImg}
|
||||
onLoad={onImgLoaded}
|
||||
crossOrigin="anonymous"
|
||||
src={props.src.image!}
|
||||
width={props.src.width || undefined}
|
||||
|
|
Loading…
Reference in a new issue