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

feat: pouvoir filtrer par actions créées le #1869

Closed
wants to merge 2 commits into from

Conversation

arnaudambro
Copy link
Contributor

No description provided.

@SocialGroovyBot SocialGroovyBot temporarily deployed to review-feat-created-at-in-new-reports-filter-6aw1ar February 19, 2024 13:37 Destroyed
// When status just changed to "todo" we set completedAt to null (since it's not done yet).
body.completedAt = null;
}
if ([DONE, CANCEL].includes(data.status)) {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

j'ai corrigé ce bug, qui consistait à avoir des completedAt non nuls même avec une action TODO
c'est le même comportement sur les consultations

Copy link
Contributor Author

Choose a reason for hiding this comment

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

donc cette PR fait 2 choses différentes à la fois, tu peux me demander de virer ce correctif si tu veux, j'accepte par avance

Copy link
Member

@rap2hpoutre rap2hpoutre Feb 19, 2024

Choose a reason for hiding this comment

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

J'ai l'impression que ça a un impact global non négligeable : genre maintenant toute modif sur une action aura un effet sur le completedAt alors qu'avant c'était juste en cas de changement de statut.
Donc comme ça je ne vois pas de gros problème, mais je trouve le changement MAJEUR.
Mais en effet, ça ne semble pas poser de problème.

[EDIT ARNAUD] tu as raison, c'est certes un bug fix mais il nécessite d'autres changements qui l'accompagnent - je retire de cette PR et je fais une autre sur sesan

@arnaudambro arnaudambro force-pushed the feat/created-at-in-new-reports-filter branch from 7f5cd39 to 3883879 Compare February 19, 2024 13:41
@SocialGroovyBot SocialGroovyBot temporarily deployed to review-feat-created-at-in-new-reports-filter-6aw1ar February 19, 2024 13:42 Destroyed
@arnaudambro arnaudambro force-pushed the feat/created-at-in-new-reports-filter branch from 3883879 to 88d6c44 Compare February 19, 2024 13:43
@SocialGroovyBot SocialGroovyBot temporarily deployed to review-feat-created-at-in-new-reports-filter-6aw1ar February 19, 2024 13:44 Destroyed
@github-advanced-security
Copy link

This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation.

Copy link
Member

@rap2hpoutre rap2hpoutre left a comment

Choose a reason for hiding this comment

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

Je ne comprends pas trop les ET et les ou :

J'ai deux actions :

  • je coche uniquement "créé pendant cette période" : j'ai les 2 actions
  • je coche "à faire" j'ai les 2 actions
  • je coche "fait" j'ai aucune action
  • je coche "à faire" et "fait" j'ai les deux actions
  • je coche "fait" et "créé pendant cette période" je n'ai aucune action.

Du coup parfois les paramètres s'excluent et d'autres fois ils s'ajoutent...

// When status just changed to "todo" we set completedAt to null (since it's not done yet).
body.completedAt = null;
}
if ([DONE, CANCEL].includes(data.status)) {
Copy link
Member

@rap2hpoutre rap2hpoutre Feb 19, 2024

Choose a reason for hiding this comment

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

J'ai l'impression que ça a un impact global non négligeable : genre maintenant toute modif sur une action aura un effet sur le completedAt alors qu'avant c'était juste en cas de changement de statut.
Donc comme ça je ne vois pas de gros problème, mais je trouve le changement MAJEUR.
Mais en effet, ça ne semble pas poser de problème.

[EDIT ARNAUD] tu as raison, c'est certes un bug fix mais il nécessite d'autres changements qui l'accompagnent - je retire de cette PR et je fais une autre sur sesan

dashboard/src/components/ActionModal.js Show resolved Hide resolved
Copy link

sonarcloud bot commented Feb 19, 2024

Quality Gate Passed Quality Gate passed

Issues
4 New issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

Copy link

🎉 Deployment for commit 3c433f0 :

Ingresses
Docker images
  • 📦 docker pull harbor.fabrique.social.gouv.fr/mano/mano/api:sha-3c433f09012d43646a84ba2d0c61cbb90171bb43
  • 📦 docker pull harbor.fabrique.social.gouv.fr/mano/mano/dashboard:sha-3c433f09012d43646a84ba2d0c61cbb90171bb43
  • 📦 docker pull harbor.fabrique.social.gouv.fr/mano/mano/www:sha-3c433f09012d43646a84ba2d0c61cbb90171bb43
Debug

@arnaudambro
Copy link
Contributor Author

il y a deux datasets d'actions/consultations qui ne PEUVENT PAS être affichés en même temps (c'est la demande que j'ai comprise en tout cas)

  • soit la date de création est dans la période
  • soit l'autre date (dueAt quand le status est TODO OU completedAt quand le status n'est pas TODO) est dans la période

dans chacun de ces datasets, il y a des TODO, DONE ou CANCEL

dans ton cas, tu viens de créer deux actions qui sont TODO

  • je coche uniquement "créé pendant cette période" : j'ai les 2 actions -> normal
  • je coche "à faire" j'ai les 2 actions -> normal
  • je coche "fait" j'ai aucune action -> normal
  • je coche "à faire" et "fait" j'ai les deux actions -> normal
  • je coche "fait" et "créé pendant cette période" je n'ai aucune action. -> normal

je suis d'accords, c'est pas méga intuitif.
je me suis peut-être trompé de compréhension mais j'ai fait ce que j'ai compris :)

@rap2hpoutre rap2hpoutre self-requested a review February 20, 2024 09:14
Copy link
Member

@rap2hpoutre rap2hpoutre left a comment

Choose a reason for hiding this comment

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

Proposition alternative : mano-sesan/mano#17

@rap2hpoutre
Copy link
Member

Remplacée : 93cdcd2

@rap2hpoutre rap2hpoutre deleted the feat/created-at-in-new-reports-filter branch April 5, 2024 08:45
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.

3 participants