mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
Update mod.js (#270)
This commit is contained in:
parent
7949d6e451
commit
0064ae35dc
@ -177,23 +177,29 @@ module.exports = {
|
||||
: `${iconData.sourceUrl}/${iconData.source}_${i}.${iconData.extension}`
|
||||
: iconData.source[i];
|
||||
|
||||
const icon = createElement(`<div class="notion-icons--icon"><img src="${iconUrl}" /></div>`);
|
||||
|
||||
iconSetBody.append(icon);
|
||||
garbageCollector.push(icon);
|
||||
icon.addEventListener('click', () => setPageIcon(iconUrl));
|
||||
|
||||
// Make sure elements load
|
||||
promiseArray.push(
|
||||
new Promise((resolve, reject) => {
|
||||
const icon = createElement(`<div class="notion-icons--icon"></div>`);
|
||||
if (iconData.enhancerIcons) {
|
||||
// Load sprite sheet
|
||||
icon.innerHTML =
|
||||
`<div style="width: 32px; height: 32px; background: url(${iconsUrl}${iconData.source}/sprite.png) 0 -${i * 32}px no-repeat; background-size: cover;"></div>`;
|
||||
} else {
|
||||
icon.innerHTML = `<img src="${iconUrl}" />`;
|
||||
// Make sure icons load
|
||||
promiseArray.push(
|
||||
new Promise((resolve, reject) => {
|
||||
icon.firstChild.onload = resolve;
|
||||
icon.firstChild.onerror = () => {
|
||||
reject();
|
||||
icon.classList.add('error');
|
||||
icon.innerHTML = '!';
|
||||
};
|
||||
})
|
||||
);
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
iconSetBody.append(icon);
|
||||
garbageCollector.push(icon);
|
||||
icon.addEventListener('click', () => setPageIcon(iconUrl));
|
||||
}
|
||||
|
||||
// Hide spinner after all icons finish loading
|
||||
@ -265,6 +271,7 @@ module.exports = {
|
||||
if (notionIconsData && notionIconsData.icons) {
|
||||
notionIconsData.icons.forEach(i => {
|
||||
i.sourceUrl = i.sourceUrl || (iconsUrl + i.source);
|
||||
i.enhancerIcons = true;
|
||||
iconSets.push( renderIconSet(i) );
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user