Выпущен 0.1.3: UX convenience pack, unwrap/admin polish и cache-bust статики.
devops-tools/wrapped/wrapped-build/pipeline/head There was a failure building this commit

Добавлены Share/QR PNG, zip all, size meter, PWA-manifest, системная тема и haptic на copy; улучшены success/unwrap и статистика админки (EN/RU).
This commit is contained in:
2026-07-29 11:33:21 +03:00
parent 49df683281
commit 806f2bdb1b
26 changed files with 1317 additions and 136 deletions
+52
View File
@@ -0,0 +1,52 @@
(() => {
const top = document.getElementById("admin-top");
const toggle = document.getElementById("admin-nav-toggle");
const nav = document.getElementById("admin-nav");
if (!top || !toggle || !nav) return;
const mq = window.matchMedia("(max-width: 860px)");
const syncLabel = () => {
const open = top.classList.contains("is-nav-open");
const key = open ? "admin.nav.closeMenu" : "admin.nav.openMenu";
const label = window.WrappedI18n?.t(key) || (open ? "Close menu" : "Menu");
toggle.setAttribute("aria-label", label);
toggle.setAttribute("title", label);
};
const setOpen = (open) => {
top.classList.toggle("is-nav-open", open);
toggle.setAttribute("aria-expanded", open ? "true" : "false");
const icon = toggle.querySelector("i");
if (icon) {
icon.className = open ? "fa-solid fa-xmark" : "fa-solid fa-bars";
}
syncLabel();
};
toggle.addEventListener("click", () => {
setOpen(!top.classList.contains("is-nav-open"));
});
nav.addEventListener("click", (e) => {
if (!mq.matches) return;
if (e.target.closest("a.admin-nav-link")) setOpen(false);
});
document.addEventListener("keydown", (e) => {
if (e.key === "Escape" && top.classList.contains("is-nav-open")) {
setOpen(false);
toggle.focus();
}
});
mq.addEventListener("change", () => {
if (!mq.matches) setOpen(false);
else syncLabel();
});
if (window.WrappedI18n?.onChange) {
window.WrappedI18n.onChange(syncLabel);
}
syncLabel();
})();