Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problema avanzamento progressbar su componente it-navscroll #420

Closed
1 task done
dgaetani opened this issue Jan 10, 2025 · 0 comments · Fixed by #423
Closed
1 task done

Problema avanzamento progressbar su componente it-navscroll #420

dgaetani opened this issue Jan 10, 2025 · 0 comments · Fixed by #423
Assignees
Labels
bug Something isn't working

Comments

@dgaetani
Copy link

dgaetani commented Jan 10, 2025

Esiste già una discussione sul tema che ti interessa, o su un tema simile?

  • Ho verificato e non esiste

Versione della libreria

1.1.2

Cosa

Il riempimento della progressbar presente nella it-navscroll, occorre anche quando non si è raggiunta la posizione di "partenza" nello scorrimento verticale della pagina, ovvero quando l'elemento raggiunge la posizione in cui diventa sticky (per intendersi top = 0).

Questo fa sì che il riempimento della progressbar avvenga anche in "negativo", ovvero quando lo scroll di pagina è al di sopra dell'elemento it-navscroll.

<div class="progress-bar it-navscroll-progressbar" role="progressbar" [style.width.%]="progressBarValue | async" [attr.aria-valuenow]="progressBarValue | async" aria-valuemin="0" aria-valuemax="100"></div>

updateProgressBar(container: HTMLElement) { if (!container) { return; } const offset = Math.abs(container.getBoundingClientRect().top); const height = container.getBoundingClientRect().height; const scrollAmount = (offset / height) * 100; const scrollValue = Math.min(100, Math.max(0, scrollAmount)); const state = this.#state.value; this.#state.next({ ...state, progressBar: scrollValue }); }

Bisognerebbe gestire adeguatamente la funzione updateProgressBar che calcola scrollValue sulla base di container.getBoundingClientRect().top.

Perché

La correzione del problema contribuisce a eliminare un comportamento errato di visualizzazione della progressbar per il componente it-navscroll.

Contesto

No response

Altro

No response

@Fupete Fupete added the bug Something isn't working label Jan 13, 2025
@Fupete Fupete moved this from 🆕 New to 📋 Backlog in Design system .italia 🇮‍🇹 Jan 13, 2025
@astagi astagi self-assigned this Jan 13, 2025
@github-project-automation github-project-automation bot moved this from 📋 Backlog to ✅ Done in Design system .italia 🇮‍🇹 Jan 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
Status: ✅ Done
Development

Successfully merging a pull request may close this issue.

3 participants