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/vie-etudiante-organismes.json b/ui/vie-etudiante-organismes.json new file mode 100644 index 0000000..c635eff --- /dev/null +++ b/ui/vie-etudiante-organismes.json @@ -0,0 +1,34 @@ +{ + "Associations de programme": [ + { "Nom": "ADEPT", "Local": "F-045", "Poste": "2286", "Statut": "Actif" }, + { "Nom": "ASI", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" }, + { "Nom": "ATEE", "Local": "F-027d", "Poste": "N/A", "Statut": "Actif" }, + { "Nom": "ATIM", "Local": "F-011b", "Poste": "N/A", "Statut": "Actif" }, + { "Nom": "LAC", "Local": "A-125s", "Poste": "2873", "Statut": "Actif" }, + { "Nom": "PAPI", "Local": "F-023", "Poste": "2795", "Statut": "Actif" }, + { "Nom": "TGE", "Local": "C-063", "Poste": "2638", "Statut": "Actif" } + ], + "Comités": [ + { "Nom": "ASEG", "Local": "B-06", "Poste": "N/A", "Statut": "Actif" }, + { "Nom": "CAP", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" }, + { "Nom": "CFEM", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" }, + { "Nom": "CIC", "Local": "F-027c", "Poste": "N/A", "Statut": "Actif" }, + { "Nom": "Comité Mob", "Local": "N/A", "Poste": "N/A", "Statut": "Actif" }, + { "Nom": "CÉSI", "Local": "N/A", "Poste": "N/A", "Statut": "Inactif" }, + { "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 }}