-
Notifications
You must be signed in to change notification settings - Fork 0
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
Triage alphabétique vertical des colonnes avec des checkboxes dans l'onglet produit #1470
Conversation
/* | ||
Retourne le breakpoint actif depuis notre config tailwind. À noter que | ||
les breakpoints doivent être triés dans le fichier de configuration. | ||
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ici, ajouter le même commentaire sur les breakpoints qui doivent être triés dans le fichier tailwind.config.js ?
Ou bien modifier la function pour qu'elle ne retourne la valeur min qu'une fois toutes les valeurs parcourues ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oui en vrai plus j'y pense plus la fonction devrait faire ce triage par sécurité. Surtout que l'ordre des clés dans un objet JS n'est pas garanti. Je fais ce changement.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix ici : f6820d6 ;)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Top, juste mon petit commentaire qui n'est pas bloquant.
Lié à #994
Contexte
L'ordre alphabétique des checkboxes a été rémonté comme problème plusieurs fois. Aujourd'hui la lecture est horizontale alors que les personnes s'attendent à l'avoir en vertical. Capture d'écran aujourd'hui :
Scope
Le placement d'éléments côté HTML se fait de façon horizontale, donc on doit manipuler le tableau pour que le placement change.
Par exemple, le tableau trié
[0, 1, 2, 3, 4, 5, 6, 7, 8]
en trois colonnes s'afficherait :Or, il faudrait transformer ce tableau à
[0, 3, 6, 1, 4, 7, 2, 5, 8]
pour pouvoir l'afficher en lecture verticale :La fonction
transformArrayByColumn
se charge de ceci.De plus, il faut savoir sur quel breakpoint on se trouve pour connaître le nombre de colonnes et donc transformer correctement le tableau. La fonction
getCurrentBreakpoint
se charge de cela.En alimentant cette fonction dans le watcher pour la dimension de la fenêtre, on affiche le bon ordre même lorsque la fenêtre est redimensionnée.
Démo