Preload identicon on delayed avatar lookup

This commit is contained in:
the-djmaze 2024-10-29 11:33:46 +01:00
parent a83c3aacf8
commit 2809e75307

View file

@ -79,7 +79,7 @@
(from.name?.split(/[^\p{L}]+/gu) || []).reduce((a, s) => a + (s[0] || ''), '') (from.name?.split(/[^\p{L}]+/gu) || []).reduce((a, s) => a + (s[0] || ''), '')
.slice(0,2) .slice(0,2)
.toUpperCase(), .toUpperCase(),
setIdenticon = (msg, fn, cache) => { setIdenticon = (msg, fn, cb) => {
const from = email(msg); const from = email(msg);
if (identicons.get(from)) { if (identicons.get(from)) {
fn(identicons.get(from)); fn(identicons.get(from));
@ -92,7 +92,7 @@
)); ));
fn(uri); fn(uri);
identicons.set(email(msg), uri); identicons.set(email(msg), uri);
cache && avatars.set(getAvatarUid(msg), uri); cb?.(uri);
}); });
} }
}, },
@ -101,9 +101,10 @@
if (msg.from?.[0]) { if (msg.from?.[0]) {
if (getAvatarUri(msg)) { if (getAvatarUri(msg)) {
if (rl.pluginSettingsGet('avatars', 'delay')) { if (rl.pluginSettingsGet('avatars', 'delay')) {
setIdenticon(msg, fn); setIdenticon(msg, fn, ()=>{
queue.push([msg, fn]); queue.push([msg, fn]);
runQueue(); runQueue();
});
} else { } else {
fn(msg.avatar); fn(msg.avatar);
} }
@ -200,7 +201,7 @@
fn = url=>{element.src = url}; fn = url=>{element.src = url};
element.onerror = ()=>{ element.onerror = ()=>{
element.onerror = null; element.onerror = null;
setIdenticon(msg, fn, 1); setIdenticon(msg, fn, uri=>avatars.set(getAvatarUid(msg), uri));
}; };
if (url) { if (url) {
fn(url); fn(url);