mirror of
https://github.com/QwIT-Development/firka-extension.git
synced 2026-06-12 03:41:39 +02:00
82 lines
2.5 KiB
JavaScript
82 lines
2.5 KiB
JavaScript
(() => {
|
|
async function transformLogoutPage() {
|
|
const theme =
|
|
await storageManager.get("themePreference", null) ||
|
|
localStorage.getItem("themePreference") ||
|
|
"light-green";
|
|
const instituteCode = await storageManager.get("schoolSubdomain", null);
|
|
document.documentElement.setAttribute("data-theme", theme);
|
|
|
|
const newHTML = `
|
|
<div class="logout-container">
|
|
<header class="logout-header">
|
|
<p class="logo-text">
|
|
<img src=${chrome.runtime.getURL("images/firka_logo.png")} alt="Firka" class="logo">
|
|
Firka
|
|
</p>
|
|
</header>
|
|
|
|
<div class="logout-card">
|
|
<div class="logout-message">
|
|
<strong>Sikeres kijelentkezés!</strong>
|
|
</div>
|
|
|
|
<div class="redirect-timer" id="automaticRedirectTimer">5</div>
|
|
|
|
<a href="https://${instituteCode}.e-kreta.hu" class="btn-continue">Tovább</a>
|
|
</div>
|
|
|
|
<footer class="logout-footer">
|
|
<a href="https://tudasbazis.ekreta.hu/pages/viewpage.action?pageId=4064926"
|
|
target="_blank" class="privacy-link">
|
|
Adatkezelési tájékoztató
|
|
</a>
|
|
</footer>
|
|
</div>
|
|
`;
|
|
helper.clearElement(document.body);
|
|
const template = document.createElement('template');
|
|
template.innerHTML = newHTML;
|
|
const tempDiv = template.content;
|
|
while (tempDiv.firstChild) {
|
|
document.body.appendChild(tempDiv.firstChild);
|
|
}
|
|
|
|
const timerElement = document.getElementById("automaticRedirectTimer");
|
|
let remainingTime = 5;
|
|
|
|
const countdownInterval = setInterval(() => {
|
|
remainingTime--;
|
|
if (timerElement) {
|
|
timerElement.textContent = remainingTime;
|
|
}
|
|
|
|
if (remainingTime <= 0) {
|
|
clearInterval(countdownInterval);
|
|
window.location.href = `https://${instituteCode}.e-kreta.hu`;
|
|
}
|
|
}, 1000);
|
|
|
|
document.querySelector(".btn-continue")?.addEventListener("click", (e) => {
|
|
e.preventDefault();
|
|
clearInterval(countdownInterval);
|
|
window.location.href = `https://${instituteCode}.e-kreta.hu`;
|
|
});
|
|
}
|
|
|
|
if (document.readyState === "loading") {
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
setTimeout(() => {
|
|
if (typeof loadingScreen !== 'undefined') {
|
|
loadingScreen.hide();
|
|
}
|
|
}, 100);
|
|
transformLogoutPage();
|
|
});
|
|
} else {
|
|
if (typeof loadingScreen !== 'undefined') {
|
|
loadingScreen.hide();
|
|
}
|
|
transformLogoutPage();
|
|
}
|
|
})(); |