Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 87f561ae10 | |||
| be49a89057 | |||
| e42b145401 | |||
| 7201fde2d3 |
+41
-43
@@ -1,13 +1,18 @@
|
|||||||
// background.js — Service worker (Manifest V3)
|
// background.js — Service worker (Manifest V3) — v4
|
||||||
//
|
//
|
||||||
// Rôles :
|
// Rôles :
|
||||||
// 1. Au clic sur l'icône : ouvrir le viewer
|
// 1. Au clic sur l'icône : ouvrir le viewer
|
||||||
// 2. Répondre aux messages du viewer :
|
// 2. Répondre aux messages du viewer :
|
||||||
// - getSession : trouve l'onglet EasyVista ouvert, renvoie {phpsessid, origin}
|
// - getSession : trouve l'onglet EasyVista ouvert, renvoie {phpsessid, origin}
|
||||||
// - fetchPlanning : fetch le XML du planning pour une date
|
// - fetchPlanning : fetch le XML du planning pour une date (1 requête = tout)
|
||||||
// - fetchFiche : fetch une fiche individuelle (HTML)
|
// - fetchXhr2 : fetch un texte d'action détaillé (utilisé en lazy-load au survol)
|
||||||
|
// - fetchFiche : fetch une fiche individuelle (HTML) pour statut + commentaire tech
|
||||||
// 3. Programmer les alarmes de refresh auto (12h, 15h)
|
// 3. Programmer les alarmes de refresh auto (12h, 15h)
|
||||||
// 4. Nettoyer les vieux caches (>7 jours)
|
// 4. Nettoyer les vieux caches (>7 jours)
|
||||||
|
//
|
||||||
|
// v4 : suppression de fetchTimeline (pu utilisé). Le calendar_block contient
|
||||||
|
// directement ref/contact/lieu/catégorie dans ses attributs attr1/attr2/attr3,
|
||||||
|
// donc on n'a plus besoin ni de xhr2 en masse, ni de l'API timeline.
|
||||||
|
|
||||||
// Domaines EasyVista reconnus (interne d'abord, externe en fallback)
|
// Domaines EasyVista reconnus (interne d'abord, externe en fallback)
|
||||||
const EV_ORIGINS = [
|
const EV_ORIGINS = [
|
||||||
@@ -110,40 +115,29 @@ async function fetchFicheHtml(origin, phpsessid, formLink) {
|
|||||||
return html;
|
return html;
|
||||||
}
|
}
|
||||||
|
|
||||||
// GUID du "sender" du menu/workflow — observé dans les URLs EasyVista du planning.
|
// v4.1.7 : API timeline EasyVista. Renvoie le JSON des actions d'une fiche,
|
||||||
// Le sender du formLink du XML planning est {9C395E45-...} mais l'API timeline
|
// avec pour chaque action : intervenant, ACTION_ID, AM_DONE_BY_ID, description
|
||||||
// utilise le sender de la FICHE parent ({C99ECD05-...}).
|
// complète (bien plus riche que le xhr2 tronqué).
|
||||||
const TIMELINE_SENDER = "%7BC99ECD05-3D48-4C62-ABF0-66292053AED6%7D";
|
// Utilisé pour afficher le texte complet de l'action dans le tooltip.
|
||||||
|
// v4.1.9 : le GUID du form est passé en paramètre (extrait dynamiquement du
|
||||||
/**
|
// HTML de la fiche par le viewer). Il est différent pour une demande S...
|
||||||
* Fetch l'API timeline JSON pour récupérer le texte des actions d'une fiche.
|
// ({C99ECD05}) vs un incident I... ({07ED9C68}).
|
||||||
* Params :
|
async function fetchTimelineApi(origin, phpsessid, guid, formId, formChecksum) {
|
||||||
* - target : ID interne de la fiche (pas l'action_id)
|
// Sécurité : GUID doit être de la forme %7B...%7D ou {...}
|
||||||
* - checksum : checksum frais extrait depuis le HTML de la fiche
|
if (!/^(%7B|\{)[A-F0-9\-]{36}(%7D|\})$/i.test(guid)) {
|
||||||
* Retour : texte JSON de l'API, ou null en cas d'erreur.
|
throw new Error("Invalid GUID: " + guid);
|
||||||
*/
|
}
|
||||||
async function fetchTimelineJson(origin, phpsessid, target, checksum) {
|
// S'assurer qu'on a la forme encodée %7B...%7D
|
||||||
|
const encodedGuid = guid.startsWith("%7B") ? guid : `%7B${guid.replace(/[{}]/g, "")}%7D`;
|
||||||
const url =
|
const url =
|
||||||
`${origin}/api/v1/internal/forms/${TIMELINE_SENDER}/timeline` +
|
`${origin}/api/v1/internal/forms/${encodedGuid}/timeline` +
|
||||||
`?target=${encodeURIComponent(target)}` +
|
`?target=${encodeURIComponent(formId)}` +
|
||||||
`&checksum=${encodeURIComponent(checksum)}` +
|
`&checksum=${encodeURIComponent(formChecksum)}` +
|
||||||
`&type=todo` +
|
`&type=todo§ionId=1&navigator=&nbRecord=0` +
|
||||||
`§ionId=1` +
|
|
||||||
`&navigator=` +
|
|
||||||
`&nbRecord=0` +
|
|
||||||
`&PHPSESSID=${encodeURIComponent(phpsessid)}`;
|
`&PHPSESSID=${encodeURIComponent(phpsessid)}`;
|
||||||
console.log("[bg] fetchTimelineJson →", url.substring(0, 120));
|
const r = await fetch(url, { credentials: "include" });
|
||||||
const r = await fetch(url, {
|
|
||||||
credentials: "include",
|
|
||||||
headers: {
|
|
||||||
"Accept": "application/json",
|
|
||||||
"X-Requested-With": "XMLHttpRequest"
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (!r.ok) throw new Error("HTTP " + r.status);
|
if (!r.ok) throw new Error("HTTP " + r.status);
|
||||||
const body = await r.text();
|
return await r.text();
|
||||||
console.log("[bg] timeline status =", r.status, "| taille =", body.length);
|
|
||||||
return body;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
@@ -214,21 +208,25 @@ chrome.runtime.onMessage.addListener((msg, sender, sendResponse) => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (msg.type === "fetchTimeline") {
|
if (msg.type === "fetchTimelineApi") {
|
||||||
const session = await findEasyVistaSession();
|
const session = await findEasyVistaSession();
|
||||||
if (!session) {
|
if (!session) {
|
||||||
sendResponse({ ok: false, error: "no_session" });
|
sendResponse({ ok: false, error: "no_session" });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const body = await fetchTimelineJson(
|
try {
|
||||||
session.origin, session.phpsessid, msg.target, msg.checksum
|
const body = await fetchTimelineApi(
|
||||||
);
|
session.origin, session.phpsessid,
|
||||||
// Si on reçoit du HTML au lieu de JSON, c'est une page d'erreur / login
|
msg.guid, msg.formId, msg.formChecksum
|
||||||
if (body.trimStart().startsWith("<")) {
|
);
|
||||||
sendResponse({ ok: false, error: "not_json" });
|
if (looksLikeLoginPage(body)) {
|
||||||
return;
|
sendResponse({ ok: false, error: "session_expired" });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
sendResponse({ ok: true, body });
|
||||||
|
} catch (err) {
|
||||||
|
sendResponse({ ok: false, error: String(err) });
|
||||||
}
|
}
|
||||||
sendResponse({ ok: true, body });
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "Planning Techniciens — Vue claire",
|
"name": "Planning Techniciens — Vue claire",
|
||||||
"version": "3.3.0",
|
"version": "4.1.14",
|
||||||
"description": "Vue claire du planning EasyVista (itsma.etat-de-vaud.ch et itsma.vd.ch) avec navigation par date, détection automatique des interventions closes et cache 7 jours.",
|
"description": "Vue claire du planning EasyVista (itsma.etat-de-vaud.ch et itsma.vd.ch). v4.1.14 : bouton ↻ dans la bulle pour recharger une seule intervention (sans que les boutons topbar tournent), Actualiser tourne quand on arrive sur une date avec cache, signature planif vraiment à droite, progress bar lisible avec halo text-shadow (plus de fond noir).",
|
||||||
"permissions": [
|
"permissions": [
|
||||||
"activeTab",
|
"activeTab",
|
||||||
"scripting",
|
"scripting",
|
||||||
|
|||||||
+208
-1
@@ -171,6 +171,106 @@ html, body {
|
|||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Bannière de session expirée (v4.1.12) — sticky sous la topbar, non bloquante */
|
||||||
|
.session-banner {
|
||||||
|
position: sticky;
|
||||||
|
top: 56px;
|
||||||
|
z-index: 8;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 12px;
|
||||||
|
padding: 10px 16px;
|
||||||
|
background: linear-gradient(90deg, #7a1f1f, #8b2a2a);
|
||||||
|
color: #fff;
|
||||||
|
border-bottom: 1px solid #5a1515;
|
||||||
|
font-size: 13px;
|
||||||
|
box-shadow: 0 2px 6px rgba(0,0,0,0.25);
|
||||||
|
}
|
||||||
|
.session-banner.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.session-banner-icon {
|
||||||
|
font-size: 18px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
.session-banner-text {
|
||||||
|
flex: 1;
|
||||||
|
line-height: 1.4;
|
||||||
|
}
|
||||||
|
.session-banner .btn-primary {
|
||||||
|
background: #fff;
|
||||||
|
color: #7a1f1f;
|
||||||
|
border: 0;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.session-banner .btn-primary:hover {
|
||||||
|
background: #f0f0f0;
|
||||||
|
}
|
||||||
|
.session-banner .btn-sm {
|
||||||
|
padding: 4px 12px;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
.session-banner .btn-icon {
|
||||||
|
background: transparent;
|
||||||
|
color: #fff;
|
||||||
|
border: 0;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 1;
|
||||||
|
padding: 4px 8px;
|
||||||
|
}
|
||||||
|
.session-banner .btn-icon:hover {
|
||||||
|
background: rgba(255,255,255,0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Barre de progression pendant le rafraîchissement — v4.1.12 : texte
|
||||||
|
toujours lisible, que la zone verte l'ait atteint ou non (utilise
|
||||||
|
mix-blend-mode:difference pour inverser la couleur du texte là où la
|
||||||
|
barre verte est dessous). */
|
||||||
|
.progress-bar {
|
||||||
|
position: sticky;
|
||||||
|
top: 56px;
|
||||||
|
z-index: 9;
|
||||||
|
height: 22px;
|
||||||
|
background: var(--bg-subtle, rgba(128, 128, 128, 0.08));
|
||||||
|
border-bottom: 1px solid var(--border, rgba(128, 128, 128, 0.2));
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.progress-bar.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.progress-bar-fill {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
background: linear-gradient(90deg, #2ea043, #3fb950);
|
||||||
|
width: 0%;
|
||||||
|
transition: width 240ms ease-out;
|
||||||
|
box-shadow: 0 0 8px rgba(63, 185, 80, 0.3);
|
||||||
|
}
|
||||||
|
.progress-bar-label {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 22px;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 700;
|
||||||
|
color: #fff;
|
||||||
|
pointer-events: none;
|
||||||
|
letter-spacing: 0.3px;
|
||||||
|
/* v4.1.14 : text-shadow multi-directionnel qui crée un halo sombre autour
|
||||||
|
du texte. Lisible peu importe ce qui défile derrière (noms, icônes,
|
||||||
|
fond gris ou barre verte). Aucun fond opaque → la transparence de la
|
||||||
|
barre est totalement préservée. */
|
||||||
|
text-shadow:
|
||||||
|
0 0 2px rgba(0, 0, 0, 0.95),
|
||||||
|
0 0 3px rgba(0, 0, 0, 0.85),
|
||||||
|
0 1px 2px rgba(0, 0, 0, 0.75),
|
||||||
|
0 -1px 2px rgba(0, 0, 0, 0.75),
|
||||||
|
1px 0 2px rgba(0, 0, 0, 0.75),
|
||||||
|
-1px 0 2px rgba(0, 0, 0, 0.75);
|
||||||
|
}
|
||||||
|
|
||||||
/* Navigation de date */
|
/* Navigation de date */
|
||||||
.date-nav {
|
.date-nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -249,6 +349,41 @@ html, body {
|
|||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* v4.1.12 : boutons refresh plus clairs visuellement.
|
||||||
|
- "Vérifier" (partiel) : style discret, icône demi-rotation
|
||||||
|
- "Tout recharger" (total) : plus affirmé, icône double-flèche circulaire */
|
||||||
|
.btn-refresh {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 6px;
|
||||||
|
padding: 6px 10px;
|
||||||
|
}
|
||||||
|
.btn-refresh-icon {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
color: currentColor;
|
||||||
|
}
|
||||||
|
.btn-refresh-label {
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
.btn-refresh-strong {
|
||||||
|
background: var(--bg-subtle, rgba(63, 185, 80, 0.08));
|
||||||
|
border-color: var(--border-strong);
|
||||||
|
}
|
||||||
|
.btn-refresh-strong:hover {
|
||||||
|
background: rgba(63, 185, 80, 0.18);
|
||||||
|
border-color: rgba(63, 185, 80, 0.5);
|
||||||
|
}
|
||||||
|
.btn-refresh-icon.spinning {
|
||||||
|
animation: refresh-spin 0.9s linear infinite;
|
||||||
|
transform-origin: 50% 50%;
|
||||||
|
}
|
||||||
|
@keyframes refresh-spin {
|
||||||
|
to { transform: rotate(360deg); }
|
||||||
|
}
|
||||||
|
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
background: var(--accent);
|
background: var(--accent);
|
||||||
color: white;
|
color: white;
|
||||||
@@ -840,6 +975,8 @@ html, body {
|
|||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
/* v4.1.14 : forcer la ligne à occuper 100% de largeur du parent */
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
.iv-category {
|
.iv-category {
|
||||||
color: var(--text-muted);
|
color: var(--text-muted);
|
||||||
@@ -847,7 +984,10 @@ html, body {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
flex: 1;
|
/* v4.1.14 : flex: 1 pour prendre tout l'espace disponible entre category
|
||||||
|
et signature — pousse la signature au bord droit. min-width: 0 permet
|
||||||
|
l'ellipsis sur les longues catégories. */
|
||||||
|
flex: 1 1 auto;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
.iv-signature {
|
.iv-signature {
|
||||||
@@ -856,6 +996,9 @@ html, body {
|
|||||||
font-family: var(--mono);
|
font-family: var(--mono);
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
letter-spacing: 0.02em;
|
letter-spacing: 0.02em;
|
||||||
|
/* v4.1.14 : collée au bord droit, pas de padding-right parasite */
|
||||||
|
text-align: right;
|
||||||
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Réservation (créneau bloqué par un coordinateur) */
|
/* Réservation (créneau bloqué par un coordinateur) */
|
||||||
@@ -918,9 +1061,73 @@ html, body {
|
|||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: opacity 0.1s;
|
transition: opacity 0.1s;
|
||||||
|
/* v4.1.10 : empêcher la sélection par défaut (évite sélection accidentelle
|
||||||
|
pendant qu'on bouge la souris). Ré-activé quand .pinned. */
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
.tooltip.visible {
|
.tooltip.visible {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
/* v4.1.10 : permet à la souris d'entrer dans la bulle pour la garder
|
||||||
|
visible (persistance au hover) et, en mode pinned, pour sélectionner. */
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
.tooltip.pinned {
|
||||||
|
/* v4.1.10 : bulle épinglée → curseur texte + sélection active */
|
||||||
|
user-select: text;
|
||||||
|
cursor: text;
|
||||||
|
border-color: var(--c-accent, #3fb950);
|
||||||
|
box-shadow: 0 0 0 2px rgba(63, 185, 80, 0.15), var(--shadow-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* v4.1.13/14 : barre d'actions en haut à droite de la bulle
|
||||||
|
(recharger cette iv + épingler) */
|
||||||
|
.tooltip-actions {
|
||||||
|
position: absolute;
|
||||||
|
top: 6px;
|
||||||
|
right: 6px;
|
||||||
|
display: flex;
|
||||||
|
gap: 2px;
|
||||||
|
z-index: 5;
|
||||||
|
}
|
||||||
|
.tooltip-actionbtn {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-size: 13px;
|
||||||
|
opacity: 0.55;
|
||||||
|
transition: opacity 0.15s, background 0.15s, transform 0.15s;
|
||||||
|
user-select: none;
|
||||||
|
color: var(--text-muted);
|
||||||
|
}
|
||||||
|
.tooltip-actionbtn svg {
|
||||||
|
width: 14px;
|
||||||
|
height: 14px;
|
||||||
|
}
|
||||||
|
.tooltip-actionbtn:hover {
|
||||||
|
opacity: 1;
|
||||||
|
background: rgba(255, 255, 255, 0.08);
|
||||||
|
color: var(--text);
|
||||||
|
}
|
||||||
|
.tooltip-actionbtn.spinning svg {
|
||||||
|
animation: refresh-spin 0.8s linear infinite;
|
||||||
|
transform-origin: 50% 50%;
|
||||||
|
}
|
||||||
|
/* L'ancien .tooltip-pinbtn garde ses variantes */
|
||||||
|
.tooltip-pinbtn {
|
||||||
|
filter: grayscale(100%);
|
||||||
|
}
|
||||||
|
.tooltip-pinbtn:hover {
|
||||||
|
filter: grayscale(0%);
|
||||||
|
}
|
||||||
|
.tooltip.pinned .tooltip-pinbtn {
|
||||||
|
opacity: 1;
|
||||||
|
filter: grayscale(0%);
|
||||||
|
transform: rotate(-30deg);
|
||||||
|
background: rgba(63, 185, 80, 0.15);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip dl {
|
.tooltip dl {
|
||||||
|
|||||||
+24
-2
@@ -19,8 +19,13 @@
|
|||||||
<span id="refresh-check" class="refresh-check hidden" title="Mise à jour terminée">✓</span>
|
<span id="refresh-check" class="refresh-check hidden" title="Mise à jour terminée">✓</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="topbar-right">
|
<div class="topbar-right">
|
||||||
<button id="refresh-btn" class="btn" title="Rafraîchir maintenant">
|
<button id="refresh-partial-btn" class="btn btn-refresh" title="Actualiser : ajoute les nouvelles interventions et retire celles qui ne sont plus dans le planning. Rapide, ne re-télécharge pas les fiches déjà connues.">
|
||||||
<span id="refresh-icon">↻</span> Rafraîchir
|
<svg id="refresh-partial-icon" class="btn-refresh-icon" viewBox="0 0 16 16" fill="none" aria-hidden="true"><path d="M2 8a6 6 0 0 1 10.2-4.24M14 3v3h-3" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
||||||
|
<span class="btn-refresh-label">Actualiser</span>
|
||||||
|
</button>
|
||||||
|
<button id="refresh-btn" class="btn btn-refresh btn-refresh-strong" title="Tout recharger : re-télécharge le planning ET toutes les fiches (y compris celles déjà connues) pour voir évoluer les statuts. Plus lent.">
|
||||||
|
<svg id="refresh-icon" class="btn-refresh-icon" viewBox="0 0 16 16" fill="none" aria-hidden="true"><path d="M2 8a6 6 0 1 0 1.76-4.24M2 3v3h3" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/><path d="M14 8a6 6 0 0 1-10.2 4.24M14 13v-3h-3" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
||||||
|
<span class="btn-refresh-label">Tout recharger</span>
|
||||||
</button>
|
</button>
|
||||||
<button id="abort-btn" class="btn btn-abort hidden" title="Arrêter le rafraîchissement en cours">
|
<button id="abort-btn" class="btn btn-abort hidden" title="Arrêter le rafraîchissement en cours">
|
||||||
✕ Arrêter
|
✕ Arrêter
|
||||||
@@ -34,6 +39,23 @@
|
|||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<!-- Bannière session expirée (non bloquante, apparaît en haut du contenu) -->
|
||||||
|
<div id="session-expired-banner" class="session-banner hidden">
|
||||||
|
<span class="session-banner-icon">⚠</span>
|
||||||
|
<span class="session-banner-text">
|
||||||
|
<strong>Session EasyVista expirée.</strong>
|
||||||
|
Les mises à jour sont interrompues. Reconnecte-toi à EasyVista, puis clique sur <b>Total</b> pour rafraîchir.
|
||||||
|
</span>
|
||||||
|
<button id="session-banner-reconnect" class="btn btn-primary btn-sm">Ouvrir EasyVista</button>
|
||||||
|
<button id="session-banner-close" class="btn btn-icon" title="Masquer">×</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Barre de progression (visible uniquement pendant un refresh actif) -->
|
||||||
|
<div id="progress-bar" class="progress-bar hidden">
|
||||||
|
<div class="progress-bar-fill" id="progress-bar-fill"></div>
|
||||||
|
<span class="progress-bar-label" id="progress-bar-label"></span>
|
||||||
|
</div>
|
||||||
|
|
||||||
<main id="main">
|
<main id="main">
|
||||||
<div id="error-box" class="error-box hidden"></div>
|
<div id="error-box" class="error-box hidden"></div>
|
||||||
<div id="session-needed" class="session-needed hidden">
|
<div id="session-needed" class="session-needed hidden">
|
||||||
|
|||||||
Reference in New Issue
Block a user