${this.isLoading
? html`
${translateText("map_component.loading")}
`
: this.mapWebpPath
? html`
`
: html`
${translateText("map_component.error")}
`}
${this.showMedals && this.hasNations
? html`
${this.renderMedals()}
`
: null}
${this.translation || this.mapName}
`;
}
private renderMedals() {
const medalOrder: Difficulty[] = [
Difficulty.Easy,
Difficulty.Medium,
Difficulty.Hard,
Difficulty.Impossible,
];
const colors: Record