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: revue de l'écran paramètres #3270

Merged
merged 21 commits into from
Oct 12, 2023
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
89ba522
feat: wip simplification écrans mes effectifs + paramètres
totakoko Oct 2, 2023
8b7929d
refactor: suppression des anciens composants obsolètes :broom:
totakoko Oct 4, 2023
e920264
feat: revue du bandeau de transmission selon l'état de configuration
totakoko Oct 5, 2023
8e00f13
feat: ajout explication sur abbréviation ERP
totakoko Oct 5, 2023
7ef1da0
refactor: reuse title variable
totakoko Oct 6, 2023
f396538
fix: répare l'écran effectifs
totakoko Oct 6, 2023
2e92b6f
fix: formulation
totakoko Oct 6, 2023
c80dbd3
fix: réparation workflow API v3
totakoko Oct 6, 2023
91a0105
fix: réinitialisation auteur configuration
totakoko Oct 6, 2023
cd9935c
feat: ajout Auriga dans les ERPs
totakoko Oct 6, 2023
1079379
fix: ajout d'un message si l'ERP en V3 n'est pas reconnu
totakoko Oct 6, 2023
287e2b2
feat: ajout page /test-erp
totakoko Oct 6, 2023
8a72935
style: ajout icone external aux boutons ERP
totakoko Oct 6, 2023
b858cdc
feat: navigation arrière écran Paramètres
totakoko Oct 6, 2023
fdeab3e
fix: ajout mention auteur pour les autres cas
totakoko Oct 9, 2023
3b9ee4a
fix: typo placeholder page test-erp
totakoko Oct 9, 2023
c6ceb0c
Merge branch 'master' into feature_revue_ecran_parametres_of
totakoko Oct 10, 2023
626e62d
Nettoyage code commenté
totakoko Oct 12, 2023
c3d401f
refactor: lint fixme + refacto ternary
totakoko Oct 12, 2023
78195cb
refactor: typo nommage variable
totakoko Oct 12, 2023
7c1d185
feat: migration des organismes avec paramétrage incomplet
totakoko Oct 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions ui/modules/effectifs/EffectifsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function EffectifsPage(props: EffectifsPageProps) {

const [searchValue, setSearchValue] = useState("");
const [showOnlyErrors, setShowOnlyErrors] = useState(false);
const [anneScolaire, setAnneScolaire] = useState("all");
const [anneeScolaire, setAnneeScolaire] = useState("all");

const { data: organismesEffectifs, isLoading } = useQuery(
["organismes", props.organisme._id, "effectifs"],
Expand Down Expand Up @@ -144,15 +144,15 @@ function EffectifsPage(props: EffectifsPageProps) {
</HStack>
<HStack w="full" mt={2}>
<Text>Par année scolaire</Text>
<BadgeButton onClick={() => setAnneScolaire("all")} active={anneScolaire === "all"}>
<BadgeButton onClick={() => setAnneeScolaire("all")} active={anneeScolaire === "all"}>
Toutes
</BadgeButton>
{Object.keys(effectifsByAnneeScolaire).map((anneeScolaire) => {
return (
<BadgeButton
onClick={() => setAnneScolaire(anneeScolaire)}
onClick={() => setAnneeScolaire(anneeScolaire)}
key={anneeScolaire}
active={anneScolaire === anneeScolaire}
active={anneeScolaire === anneeScolaire}
>
{anneeScolaire}
</BadgeButton>
Expand All @@ -165,7 +165,7 @@ function EffectifsPage(props: EffectifsPageProps) {

<Box mt={10} mb={16}>
{Object.entries<any[]>(effectifsByAnneeScolaire).map(([anneeScolaire, effectifs]) => {
if (anneScolaire !== "all" && anneScolaire !== anneeScolaire) {
if (anneeScolaire !== "all" && anneeScolaire !== anneeScolaire) {
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 trouvé la régression @rap2hpoutre @sbenfares.... Comme quoi les fautes d'orthographe font partie des bonnes pratiques chez certains développeurs. 🙃

return null;
}
const orgaEffectifs = showOnlyErrors
Expand Down