From 0f28252a6c5e9eefe6fd2177b693dff0e352adf2 Mon Sep 17 00:00:00 2001 From: Victor Lacasse-Beaudoin Date: Wed, 5 Mar 2025 16:56:23 -0500 Subject: [PATCH] =?UTF-8?q?ui:=20G=C3=A9n=C3=A9rer=20/vie-etudiante=20depu?= =?UTF-8?q?is=20ui/vie-etudiante-organismes.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Déplacer ui/organismes.json -> ui/vie-etudiante-organismes.json Embed ui/vie-etudiante-organismes.json --- pkg/agecemorg/handler.go | 21 +- ui/ui.go | 5 + ...mes.json => vie-etudiante-organismes.json} | 25 +-- ui/vie-etudiante.html | 205 ++---------------- 4 files changed, 61 insertions(+), 195 deletions(-) rename ui/{organismes.json => vie-etudiante-organismes.json} (99%) diff --git a/pkg/agecemorg/handler.go b/pkg/agecemorg/handler.go index 5f8b886..69643ce 100644 --- a/pkg/agecemorg/handler.go +++ b/pkg/agecemorg/handler.go @@ -2,6 +2,7 @@ package agecemorg import ( "context" + "encoding/json" "fmt" "io" "log" @@ -11,6 +12,7 @@ import ( "codeberg.org/vlbeaudoin/pave/v2" "codeberg.org/vlbeaudoin/voki/v3" + "git.agecem.com/agecem/agecem-org/v3/ui" "github.com/labstack/echo/v4" "github.com/minio/minio-go/v7" ) @@ -590,7 +592,24 @@ func HandleActualiteArticle(c echo.Context) error { */ func HandleVieEtudiante(c echo.Context) error { - return c.Render(http.StatusOK, "vie-etudiante-html", nil) + var data struct { + Data struct { + Organismes map[string][]struct { + Nom string + Local string + Poste string + Statut string + } + } + Error string + } + + if err := json.Unmarshal([]byte(ui.OrganismesJSON()), &data.Data.Organismes); err != nil { + data.Error = err.Error() + log.Println("json error in vie-etudiante:", err) + } + + return c.Render(http.StatusOK, "vie-etudiante-html", data) } func HandleVieEtudianteOrganisme(c echo.Context) error { diff --git a/ui/ui.go b/ui/ui.go index c69ecf5..be54960 100644 --- a/ui/ui.go +++ b/ui/ui.go @@ -19,6 +19,11 @@ import ( //go:embed *.html var htmlFS embed.FS +//go:embed vie-etudiante-organismes.json +var organismesJSON string + +func OrganismesJSON() string { return organismesJSON } + type Renderer struct { templates *template.Template } diff --git a/ui/organismes.json b/ui/vie-etudiante-organismes.json similarity index 99% rename from ui/organismes.json rename to ui/vie-etudiante-organismes.json index 0e251a2..c635eff 100644 --- a/ui/organismes.json +++ b/ui/vie-etudiante-organismes.json @@ -1,16 +1,4 @@ { - "Organismes thématiques": [ - { "Nom": "AME", "Local": "C-060", "Poste": "7919", "Statut": "Actif" }, - { "Nom": "BEAM", "Local": "F-024a", "Poste": "5930", "Statut": "Actif" }, - { "Nom": "Club Aventurier", "Local": "F-011b", "Poste": "2418", "Statut": "Actif" }, - { "Nom": "MAEL", "Local": "F-027b", "Poste": "6438", "Statut": "Actif" }, - { "Nom": "Montpetit Donjon", "Local": "C-067", "Poste": "2299", "Statut": "Actif" }, - { "Nom": "MotDit", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" }, - { "Nom": "OGRE", "Local": "F-011c", "Poste": "2248", "Statut": "Actif" }, - { "Nom": "ORGASME", "Local": "F-049", "Poste": "N/A", "Statut": "Actif" }, - { "Nom": "RECEM", "Local": "A-125s", "Poste": "N/A", "Statut": "Actif" }, - { "Nom": "Équipe Santé", "Local": "F-011", "Poste": "2361", "Statut": "Actif" } - ], "Associations de programme": [ { "Nom": "ADEPT", "Local": "F-045", "Poste": "2286", "Statut": "Actif" }, { "Nom": "ASI", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" }, @@ -30,6 +18,17 @@ { "Nom": "ESPACE", "Local": "F-011d", "Poste": "2418", "Statut": "Actif" }, { "Nom": "EUMC-CEM", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" }, { "Nom": "Friperie", "Local": "F-027a", "Poste": "2248", "Statut": "Actif" } + ], + "Organismes thématiques": [ + { "Nom": "AME", "Local": "C-060", "Poste": "7919", "Statut": "Actif" }, + { "Nom": "BEAM", "Local": "F-024a", "Poste": "5930", "Statut": "Actif" }, + { "Nom": "Club Aventurier", "Local": "F-011b", "Poste": "2418", "Statut": "Actif" }, + { "Nom": "MAEL", "Local": "F-027b", "Poste": "6438", "Statut": "Actif" }, + { "Nom": "Montpetit Donjon", "Local": "C-067", "Poste": "2299", "Statut": "Actif" }, + { "Nom": "MotDit", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" }, + { "Nom": "OGRE", "Local": "F-011c", "Poste": "2248", "Statut": "Actif" }, + { "Nom": "ORGASME", "Local": "F-049", "Poste": "N/A", "Statut": "Actif" }, + { "Nom": "RECEM", "Local": "A-125s", "Poste": "N/A", "Statut": "Actif" }, + { "Nom": "Équipe Santé", "Local": "F-011", "Poste": "2361", "Statut": "Actif" } ] } - diff --git a/ui/vie-etudiante.html b/ui/vie-etudiante.html index 54046bd..d9f064b 100644 --- a/ui/vie-etudiante.html +++ b/ui/vie-etudiante.html @@ -13,7 +13,12 @@ {{ template "header-html" }}

Vie étudiante

-

Organismes thématiques

+ + {{if not .Data.Organismes}} +

Liste des organismes étudiants non-disponible, merci de rééssayer plus tard.

+ {{else}} + {{range $categorie, $organismes := .Data.Organismes}} +

{{$categorie}}

@@ -21,193 +26,31 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + {{range $organismes}} + {{if eq .Statut "Inactif"}} - - - - - - - - - - + + + + + {{else}} + + + + + + {{end}} + {{end}}
NomPoste Statut
AMEC-0607919Actif
BEAMF-024a5930Actif
Club AventurierF-011b2418Actif
Équipe SantéF-0112361Actif
Montpetit DonjonC-0672299Actif
MAELF-027b6438Actif
OGREF-011c2248Actif
RECEMA-125sN/AActif
ORGASMEF-049N/AActif
SOIN/AN/AInactif
MotDitN/AN/AInactif{{.Nom}}{{.Local}}{{.Poste}}{{.Statut}}
{{.Nom}}{{.Local}}{{.Poste}}{{.Statut}}

-

Associations de programme

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NomLocalPosteStatut
ADEPTF-0452286Actif
ATIMF-011bN/AActif
LACA-125s2873Actif
PAPIF-0232795Actif
TGEC-0632638Actif
ASIN/AN/AInactif
ATEEF-027dN/AActif
-
-

Comités

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NomLocalPosteStatut
ASEGB-06N/AActif
CICF-027cN/AActif
Comité MobN/AN/AActif
ESPACEF-011d2418Actif
FriperieF-027a2248Actif
CAPN/AN/AInactif
CÉSIN/AN/AInactif
CFEMN/AN/AInactif
EUMC-CEMN/AN/AInactif
+ {{end}} + {{end}} +
{{ template "footer-html" }} -{{ end }} \ No newline at end of file +{{ end }}