Skip to content
This repository was archived by the owner on Oct 27, 2025. It is now read-only.

Conversation

@JyhuKo
Copy link
Contributor

@JyhuKo JyhuKo commented Jan 12, 2025

ajout de nouvelles keys et values
amelioration de l'obtention des messages en changeant le systeme d'année scolaire
changement d un truc qui avait un s en trop

@JyhuKo
Copy link
Contributor Author

JyhuKo commented Jan 13, 2025

et aussi @Vexcited tu penses c est quand la prochaine release dcp ? sa mérite carrément être la 1.8 si c est merge

@JyhuKo JyhuKo changed the title ajout de values pour les notes update des values de quasiment tout Jan 13, 2025
@JyhuKo
Copy link
Contributor Author

JyhuKo commented Jan 13, 2025

c est bon j'ai tout fini j espere que c est pas mal et que j ai pas fais n importe quoi

@JyhuKo
Copy link
Contributor Author

JyhuKo commented Jan 18, 2025

pas de review ? :(


public addVersionURL(): Request {
this.url.searchParams.set("v", "6.17.0");
this.url.searchParams.set("v", "4.69.0");
Copy link
Member

Choose a reason for hiding this comment

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

C'est la dernière version de l'application mobile ?

@Vexcited
Copy link
Member

Vexcited commented Jan 18, 2025

pas de review ? :(

J'ai besoin d'une personne qui a des accès EcoleDirecte élève qui review vu tout les changements effectués.
D'ailleurs pour la prochaine fois, il faudrait que tu suive la convention de commits qui est normalement imposée : https://www.conventionalcommits.org/en/v1.0.0/

@JyhuKo
Copy link
Contributor Author

JyhuKo commented Jan 19, 2025

ah oui mb , mais c est pas possible pour l instant de push une release pour le coef des matieres ?

Copy link
Contributor

@camarm-dev camarm-dev 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 jeté un petit coup d'oeuil à ta PR c'est pas mal tu as rajouté beaucoup de propriétés aux modèles ! Pour les exemples c'est bien mieux aussi, tu pourrais peut-être utiliser la date du jour si aucune date est spécifiée ?
Par contre j'ai remarqué que t'avais rajouté pas mal d'espaces à la fin des lignes ou sur certains commentaires qui ont donc une indentation bizarre.
Faudrait que tu regardes aussi si le linter et typecheck passe...

PS: J'ai pas (encore) testé j'ai juste lu assez rapidement 😄

Comment on lines +14 to +15
const Date = prompt("Enter date in the format YYYY-MM-DD:");
const assignmentsDate = Date ? Date : '2025-01-14';
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
const Date = prompt("Enter date in the format YYYY-MM-DD:");
const assignmentsDate = Date ? Date : '2025-01-14';
const date = prompt("Enter date in the format YYYY-MM-DD:");
const assignmentsDate = date || '2025-01-14';

C'est mieux de ne pas utiliser le nom d'un objet qui existe (Date). Aussi la condition ternaire peut être simplifiée 😄

Comment on lines +14 to +15
const StartDate = prompt("Enter date in the format YYYY-MM-DD:");
const CheckStartDate = StartDate ? new Date(StartDate) : new Date('2025-01-14');
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
const StartDate = prompt("Enter date in the format YYYY-MM-DD:");
const CheckStartDate = StartDate ? new Date(StartDate) : new Date('2025-01-14');
const startDate = prompt("Enter date in the format YYYY-MM-DD:");
const checkStartDate = startDate ? new Date(startDate) : new Date('2025-01-14');

Juste pour respecter les conventions de nommage du projet (et de typescript).

const CheckStartDate = StartDate ? new Date(StartDate) : new Date('2025-01-14');

const timetable = await studentTimetable(session, account, startDate);
const timetable = await studentTimetable(session, account, CheckStartDate);
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
const timetable = await studentTimetable(session, account, CheckStartDate);
const timetable = await studentTimetable(session, account, checkStartDate);

import type { APIReceivedMessageType } from "./message";

export type APIReceivedMessagesList = Readonly<{
export type APIReceivedMesagesList = Readonly<{
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
export type APIReceivedMesagesList = Readonly<{
export type APIReceivedMessagesList = Readonly<{

Erreur d'orthographe

Comment on lines +18 to +21
classSize?: number; // effectif
rank?: number; //rang
teachers?: { id: number; name: string }[]; // profs
comments?: string; // appreciations
Copy link
Contributor

Choose a reason for hiding this comment

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

Commentaires inutiles ici...

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants