Skip to content

Commit

Permalink
use html instead of icons for button notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
alyyousuf7 committed Mar 25, 2024
1 parent 8d775b1 commit 56cc064
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions src/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export function showNotification(text, time = 3000) {

const elm = document.createElement('div');
const elmInner = document.createElement('div');
elmInner.innerText = text;
elmInner.innerHTML = text;
elmInner.classList.add('message');
elmInner.classList.add('message-hidden');
elm.appendChild(elmInner);
Expand All @@ -214,7 +214,20 @@ export function showNotification(text, time = 3000) {
}, time);
}

// This returns HTML, to be used in notification messages
// Make sure to use color such that it passes the contrast checker: https://webaim.org/resources/contrastchecker/
function textWithBgColor(text, color) {
const el = document.createElement('span');
el.style.backgroundColor = color;
el.style.paddingInline = '5px';
el.innerText = text;

return el.outerHTML;
}

setTimeout(() => {
showNotification('Press 🟩 to open YTAF configuration screen');
showNotification('Press 🟥 to toggle on/off SponsorBlock');
const GREEN = textWithBgColor('GREEN', '#006600');
const RED = textWithBgColor('RED', '#B30000');
showNotification(`Press ${GREEN} to open YTAF configuration screen`);
showNotification(`Press ${RED} to toggle on/off SponsorBlock`);
}, 2000);

0 comments on commit 56cc064

Please sign in to comment.