Skip to content

Commit

Permalink
Merge branch 'revert-55-main' into working
Browse files Browse the repository at this point in the history
  • Loading branch information
Truiteseche committed Nov 16, 2024
2 parents 90cca8a + 5fda841 commit d220e1f
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 7 deletions.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/nouvelle-fonctionnalité---amélioration.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Nouvelle fonctionnalité / Amélioration
about: Proposez une idée pour EDP
title: "[ENHANCEMENT]: "
labels: enhancement, feature request
assignees: ''

---

**Votre demande de fonctionnalité est-elle liée à un problème ? Veuillez décrire.**
Une description claire et concise du problème. Ex. : Je suis toujours frustré lorsque [...]

**Décrivez la solution que vous souhaitez**
Une description claire et concise de ce que vous souhaitez obtenir.

**Décrivez les alternatives que vous avez envisagées**
Une description claire et concise de toutes les solutions ou fonctionnalités alternatives que vous avez envisagées.

**Contexte supplémentaire**
Ajoutez ici tout autre détail ou captures d'écran concernant la demande de fonctionnalité.
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/signaler-un-bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Signaler un bug
about: Signalez un bug ou une erreur pour nous aider à améliorer EDP
title: "[BUG]:"
labels: bug, priority:1
assignees: Truiteseche, saumon-brule

---

**Description du bug**
Une description claire et concise du bug.

**Étapes pour reproduire**
1. Aller sur '...'
2. Cliquer sur '....'
3. Scroller vers '....'
4. Voir le bug apparaître ✨

**Comportement attendu**
Une description claire et concise de ce que vous attendiez.

**Captures d'écrans**
Si possible, ajoutez des captures d’écran pour aider à expliquer votre problème.

**Plateforme (please complete the following information):**
- Appareil: [e.g. iPhone12, Desktop, Laptop]
- OS: [e.g. iOS, Windows]
- Browser [e.g. chrome, safari, edge]
- Version [e.g. 4.2.0, 69, 118.12]

**Contexte supplémentaire**
Ajoutez ici tout autre détail concernant le problème si nécessaire.
6 changes: 5 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1321,7 +1321,8 @@ export default function App({ edpFetch }) {
const sortedSchoolLife = {
delays: [],
absences: [],
sanctions: []
sanctions: [],
incidents: []
};
schoolLife[activeAccount]?.absencesRetards.concat(schoolLife[activeAccount].sanctionsEncouragements ?? []).forEach((item) => {
const newItem = {};
Expand All @@ -1347,6 +1348,9 @@ export default function App({ edpFetch }) {
case "Punition":
sortedSchoolLife.sanctions.push(newItem);
break;
case "Incident":
sortedSchoolLife.incidents.push(newItem);
break;

default:
break;
Expand Down
14 changes: 12 additions & 2 deletions src/components/app/Account/Account.css
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,16 @@ body:has(#account) {
animation: loading-point 6s ease-in-out calc(0.4s * var(--index)) infinite;
}

@media only screen and (max-width: 450px) {
#account .behavior-types {
display: grid;
grid-template-columns: 1fr 1fr;
row-gap: 20px;
}
#account .behavior-type {
border: none !important;
}
}
@media only screen and (max-width: 869px) {
#account {
height: auto;
Expand All @@ -170,11 +180,11 @@ body:has(#account) {
transform: translateY(0);
}

5.5% {
4.16% {
transform: translateY(-5px);
}

11% {
8.33% {
transform: translateY(0);
}
}
Expand Down
12 changes: 8 additions & 4 deletions src/components/app/Account/Account.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,18 +303,22 @@ export default function Account({ schoolLife, fetchSchoolLife, fetchAdministrati
<div className="behavior-types">
<div className="behavior-type">
<span>Retards</span>
<span className={"count" + (!userData.get("sortedSchoolLife")?.delays.length ? " loading" : " loading")}>{userData.get("sortedSchoolLife")?.delays.length ?? <><span style={{ "--index": 0 }}>.</span><span style={{ "--index": 1 }}>.</span><span style={{ "--index": 2 }}>.</span></>}</span>
<span className={"count" + (!userData.get("sortedSchoolLife")?.delays.length ? " loading" : "")}>{userData.get("sortedSchoolLife")?.delays.length ?? <><span style={{ "--index": 0 }}>.</span><span style={{ "--index": 1 }}>.</span><span style={{ "--index": 2 }}>.</span></>}</span>
</div>
<div className="behavior-type">
<span>Absences</span>
<span className={"count" + (!userData.get("sortedSchoolLife")?.absences.length ? " loading" : " loading")}>{userData.get("sortedSchoolLife")?.absences.length ?? <><span style={{ "--index": 3 }}>.</span><span style={{ "--index": 4 }}>.</span><span style={{ "--index": 5 }}>.</span></>}</span>
<span className={"count" + (!userData.get("sortedSchoolLife")?.absences.length ? " loading" : "")}>{userData.get("sortedSchoolLife")?.absences.length ?? <><span style={{ "--index": 3 }}>.</span><span style={{ "--index": 4 }}>.</span><span style={{ "--index": 5 }}>.</span></>}</span>
</div>
<div className="behavior-type">
<span>Sanctions</span>
<span className={"count" + (!userData.get("sortedSchoolLife")?.sanctions.length ? " loading" : " loading")}>{userData.get("sortedSchoolLife")?.sanctions.length ?? <><span style={{ "--index": 6 }}>.</span><span style={{ "--index": 7 }}>.</span><span style={{ "--index": 8 }}>.</span></>}</span>
<span className={"count" + (!userData.get("sortedSchoolLife")?.sanctions.length ? " loading" : "")}>{userData.get("sortedSchoolLife")?.sanctions.length ?? <><span style={{ "--index": 6 }}>.</span><span style={{ "--index": 7 }}>.</span><span style={{ "--index": 8 }}>.</span></>}</span>
</div>
<div className="behavior-type">
<span>Incidents</span>
<span className={"count" + (!userData.get("sortedSchoolLife")?.incidents.length ? " loading" : "")}>{userData.get("sortedSchoolLife")?.incidents.length ?? <><span style={{ "--index": 9 }}>.</span><span style={{ "--index": 10 }}>.</span><span style={{ "--index": 11 }}>.</span></>}</span>
</div>
</div>
</section>
</div>
)
}
}

0 comments on commit d220e1f

Please sign in to comment.