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

Triage alphabétique vertical des colonnes avec des checkboxes dans l'onglet produit #1470

Merged
merged 4 commits into from
Jan 16, 2025

Conversation

alemangui
Copy link
Collaborator

@alemangui alemangui commented Jan 14, 2025

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 :

image

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 :

0, 1, 2
3, 4, 5
6, 7, 8

Or, il faudrait transformer ce tableau à [0, 3, 6, 1, 4, 7, 2, 5, 8] pour pouvoir l'afficher en lecture verticale :

0, 3, 6
1, 4, 7
2, 5, 8

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

image

@alemangui alemangui assigned alemangui and unassigned alemangui Jan 14, 2025
@alemangui alemangui requested review from pletelli and hfroot January 14, 2025 13:52
/*
Retourne le breakpoint actif depuis notre config tailwind. À noter que
les breakpoints doivent être triés dans le fichier de configuration.
*/
Copy link
Collaborator

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 ?

Copy link
Collaborator Author

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.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix ici : f6820d6 ;)

Copy link
Collaborator

@pletelli pletelli left a 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.

@alemangui alemangui merged commit 8b34b83 into staging Jan 16, 2025
5 checks passed
@alemangui alemangui deleted the 994-alphabetical-order branch January 16, 2025 09:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants