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

[BUGFIX] Le PixSearchInput est sujet à des suppressions de caractères (PIX-11403) #550

Merged
merged 4 commits into from
Mar 8, 2024

Conversation

yannbertrand
Copy link
Member

@yannbertrand yannbertrand commented Feb 23, 2024

🎄 Problème

Les recherches avec délai ont parfois un comportement étrange. Après avoir tapé des caractères dans la barre de recherche, il arrive que certains caractères disparaissent. Ça a été constaté sur plusieurs écrans de Pix Admin, en particulier avec des connexions instables.

Chaque champ de recherche a son attribut value configuré en "two-way data binding", c'est à dire que lors d'une modification de l'utilisateur :

  • la valeur est initialisée à l'échelle du composant responsable de l'affichage,
  • puis elle est transmise au parent lors de l'événement input.
  • une fois le temps de debounce validé,
  • le parent fait une requête serveur,
  • (pendant ce temps le champ value peut être remis à jour par l'utilisateur, sans annuler la requête précédente)
  • le serveur répond,
  • la valeur est remise à jour mais avec possiblement une ancienne valeur du champ de recherche,
  • La valeur redescend jusqu'au composant qui remet sa value à jour avec l'état - alors qu'il y a pu y avoir d'autres modifications entre temps...

Voir #8133.

🎁 Proposition

Dissocier la valeur affichée dans le champ de recherche de la valeur.

🌟 Remarques

Aussi

🎅 Pour tester

CI verte 🟢

(je ne sais pas comment reproduire...)

@pix-bot-github
Copy link

Une fois l'application déployée, elle sera accessible à cette adresse https://ui-pr550.review.pix.fr
Les variables d'environnement seront accessibles sur scalingo https://dashboard.scalingo.com/apps/osc-fr1/pix-ui-review-pr550/environment

@yannbertrand yannbertrand force-pushed the fix-pix-search-input branch 4 times, most recently from bf9805a to cb9d68a Compare February 23, 2024 20:22
@debounceTimeInMs='0'
@triggerFiltering={{this.triggerFiltering}}
@value={{this.dynamicValue}}
/>`);
Copy link
Member

Choose a reason for hiding this comment

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

Elle est un peu louche l'indentation ici... C'est voulu ?

Copy link
Member Author

Choose a reason for hiding this comment

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

C'est du copier/coller des tests du dessus. Je fais confiance au linter pour me corriger si besoin 😄

Copy link
Member

@yaf yaf left a comment

Choose a reason for hiding this comment

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

J'ai fait une petite revue technique ça me semble cool ! Merci !

@yannbertrand yannbertrand force-pushed the fix-pix-search-input branch 2 times, most recently from b23b359 to 1b5edd0 Compare March 1, 2024 16:25
@pix-service-auto-merge pix-service-auto-merge merged commit cf9bc3a into dev Mar 8, 2024
1 check passed
@pix-service-auto-merge pix-service-auto-merge deleted the fix-pix-search-input branch March 8, 2024 15:20
pix-service-auto-merge pushed a commit that referenced this pull request Mar 8, 2024
## [44.2.6](v44.2.5...v44.2.6) (2024-03-08)

### 🐛 Correction

- [#550](#550) Le `PixSearchInput` est sujet à des suppressions de caractères (PIX-11403)
@pix-service-auto-merge
Copy link
Contributor

🎉 This PR is included in version 44.2.6 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants