${artists.map((a) => {
const hue = nameToHue(a.name);
return html`
this.navigateToArtist(a)}
role="button"
tabindex="0"
@keydown=${(e: KeyboardEvent) => {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault();
this.navigateToArtist(a);
}
}}
>
${this.artistImageCache.get(a.mbid)
? html`
})
`
: (a.englishName || a.name).charAt(0).toUpperCase()}
${a.englishName || a.name}
${a.englishName
? html`
${a.name}
`
: nothing}
${a.disambiguation
? html`
${a.disambiguation}
`
: nothing}
${a.country
? html`
${a.country}
`
: nothing}