phanpy/src/components/avatar.jsx

78 lines
1.9 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';
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 = {};
function Avatar({ url, size, alt = '', ...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();
2022-12-10 09:14:48 +00:00
return (
<span
2023-03-13 02:10:21 +00:00
ref={avatarRef}
class={`avatar ${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"
crossOrigin={alphaCache[url] === undefined ? '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;
try {
// Check if image has alpha channel
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
canvas.width = e.target.width;
canvas.height = e.target.height;
ctx.drawImage(e.target, 0, 0);
const allPixels = ctx.getImageData(
0,
0,
canvas.width,
canvas.height,
);
const hasAlpha = allPixels.data.some((pixel, i) => {
return i % 4 === 3 && pixel <= 128;
});
if (hasAlpha) {
console.log('hasAlpha', hasAlpha, allPixels.data);
avatarRef.current.classList.add('has-alpha');
alphaCache[url] = true;
}
} catch (e) {
// Ignore
}
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
}
export default Avatar;