phanpy/src/components/avatar.jsx

99 lines
2.6 KiB
React
Raw Normal View History

2022-12-10 09:14:48 +00:00
import './avatar.css';
2023-03-13 02:10:21 +00:00
import { useRef } from 'preact/hooks';
2023-10-21 04:21:05 +00:00
import mem from '../utils/mem';
2022-12-10 09:14:48 +00:00
const SIZES = {
s: 16,
m: 20,
l: 24,
xl: 32,
xxl: 50,
xxxl: 64,
2022-12-10 09:14:48 +00:00
};
const alphaCache = {};
2023-06-14 03:15:05 +00:00
const canvas = window.OffscreenCanvas
? new OffscreenCanvas(1, 1)
: document.createElement('canvas');
2023-09-09 06:26:08 +00:00
const ctx = canvas.getContext('2d', {
willReadFrequently: true,
});
2023-06-14 03:15:05 +00:00
2023-04-10 16:26:43 +00:00
function Avatar({ url, size, alt = '', squircle, ...props }) {
2022-12-10 09:14:48 +00:00
size = SIZES[size] || size || SIZES.m;
2023-03-13 02:10:21 +00:00
const avatarRef = useRef();
2023-03-21 07:52:26 +00:00
const isMissing = /missing\.png$/.test(url);
2022-12-10 09:14:48 +00:00
return (
<span
2023-03-13 02:10:21 +00:00
ref={avatarRef}
2023-04-10 16:26:43 +00:00
class={`avatar ${squircle ? 'squircle' : ''} ${
alphaCache[url] ? 'has-alpha' : ''
}`}
2022-12-10 09:14:48 +00:00
style={{
width: size,
height: size,
}}
title={alt}
{...props}
2022-12-10 09:14:48 +00:00
>
{!!url && (
2023-03-13 02:10:21 +00:00
<img
src={url}
width={size}
height={size}
alt={alt}
loading="lazy"
2023-06-14 12:31:02 +00:00
decoding="async"
2023-03-21 07:52:26 +00:00
crossOrigin={
alphaCache[url] === undefined && !isMissing
? 'anonymous'
: undefined
}
onError={(e) => {
if (e.target.crossOrigin) {
e.target.crossOrigin = null;
e.target.src = url;
}
}}
2023-03-13 02:10:21 +00:00
onLoad={(e) => {
2023-03-13 08:22:41 +00:00
if (avatarRef.current) avatarRef.current.dataset.loaded = true;
if (alphaCache[url] !== undefined) return;
2023-03-21 07:52:26 +00:00
if (isMissing) return;
2023-12-28 02:50:54 +00:00
queueMicrotask(() => {
try {
// Check if image has alpha channel
const { width, height } = e.target;
if (canvas.width !== width) canvas.width = width;
if (canvas.height !== height) canvas.height = height;
ctx.drawImage(e.target, 0, 0);
const allPixels = ctx.getImageData(0, 0, width, height);
// At least 10% of pixels have alpha <= 128
const hasAlpha =
allPixels.data.filter(
(pixel, i) => i % 4 === 3 && pixel <= 128,
).length /
(allPixels.data.length / 4) >
0.1;
if (hasAlpha) {
// console.log('hasAlpha', hasAlpha, allPixels.data);
avatarRef.current.classList.add('has-alpha');
}
alphaCache[url] = hasAlpha;
ctx.clearRect(0, 0, width, height);
} catch (e) {
// Silent fail
alphaCache[url] = false;
}
2023-12-28 02:50:54 +00:00
});
2023-03-13 02:10:21 +00:00
}}
/>
2022-12-10 09:14:48 +00:00
)}
</span>
);
2022-12-16 05:27:04 +00:00
}
2023-10-21 04:21:05 +00:00
export default mem(Avatar);