2024-03-09 22:48:33 +01:00
|
|
|
<script setup>
|
|
|
|
import {reactive} from 'vue'
|
2024-03-10 16:01:47 +01:00
|
|
|
import {getUser,register} from '../rest/Users.js'
|
|
|
|
/*
|
|
|
|
const user = getUser();
|
|
|
|
*/
|
|
|
|
const user =reactive({
|
2024-03-09 22:48:33 +01:00
|
|
|
profilPicture:"../assets/clyde.png",
|
|
|
|
lastName:"Ghost",
|
|
|
|
firstName:"Clyde",
|
|
|
|
role:"student",
|
|
|
|
address: "Radiator Springs",
|
|
|
|
email:"ClydeGhost@gmail.com",
|
|
|
|
cursus:{
|
|
|
|
cours1:{ "id": 12,
|
|
|
|
"name": "Math pour l'info",
|
|
|
|
"credits": 11,
|
|
|
|
"faculty": "science",
|
2024-03-10 12:34:44 +01:00
|
|
|
"teacher": 42,
|
2024-03-09 22:48:33 +01:00
|
|
|
"Assistants": []},
|
2024-03-10 12:34:44 +01:00
|
|
|
cours2:{
|
|
|
|
"id": 42,
|
2024-03-09 22:48:33 +01:00
|
|
|
"name": "Fonctionnement des ordinateurs",
|
|
|
|
"credits": 11,
|
|
|
|
"faculty": "science",
|
2024-03-10 12:34:44 +01:00
|
|
|
"teacher": 42,
|
|
|
|
"Assistants": []},
|
2024-03-09 22:48:33 +01:00
|
|
|
|
|
|
|
},
|
|
|
|
option:"IT",
|
|
|
|
degree:"BAC1",
|
|
|
|
})
|
2024-03-10 16:01:47 +01:00
|
|
|
/*
|
|
|
|
Teacher user
|
|
|
|
const user =reactive({
|
|
|
|
profilPicture:"../assets/clyde.png",
|
|
|
|
lastName:"Ghost",
|
|
|
|
firstName:"Clyde",
|
|
|
|
role:"teacher",
|
|
|
|
address: "Radiator Springs",
|
|
|
|
email:"ClydeGhost@gmail.com",
|
|
|
|
coursesOwned:{
|
|
|
|
cours1:{
|
|
|
|
"id": 12,
|
|
|
|
"name": "Math pour l'info",
|
|
|
|
"faculty": "science",
|
|
|
|
"teacher": 42,
|
|
|
|
"Assistants": []},
|
|
|
|
cours2:{
|
|
|
|
"id": 42,
|
|
|
|
"name": "Fonctionnement des ordinateurs",
|
|
|
|
"credits": 11,
|
|
|
|
"faculty": "science",
|
|
|
|
"teacher": 42,
|
|
|
|
"Assistants": []},
|
|
|
|
|
|
|
|
},
|
|
|
|
faculty:"Science",
|
|
|
|
})*/
|
|
|
|
|
|
|
|
|
2024-03-09 22:48:33 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="body">
|
|
|
|
<div class="container">
|
|
|
|
<div class="profilPic">
|
|
|
|
<img class="subContainter" src="../assets/Clyde.png">
|
|
|
|
</div>
|
|
|
|
<div class="globalInfos">
|
2024-03-10 16:01:47 +01:00
|
|
|
<div class="infosContainer" >
|
2024-03-10 12:34:44 +01:00
|
|
|
<div>
|
2024-03-10 16:01:47 +01:00
|
|
|
{{user.firstName}} {{user.lastName.toUpperCase()}}
|
2024-03-09 22:48:33 +01:00
|
|
|
</div>
|
|
|
|
<div>
|
2024-03-10 16:01:47 +01:00
|
|
|
E-mail: {{user.email}}
|
|
|
|
</div>
|
|
|
|
<div v-if="user.role==='student'">
|
|
|
|
{{user.option}} {{user.role.toUpperCase()}}
|
|
|
|
</div>
|
|
|
|
<div v-else>
|
|
|
|
Faculty: {{user.faculty}}
|
|
|
|
Role: {{user.role}}
|
2024-03-09 22:48:33 +01:00
|
|
|
</div>
|
|
|
|
<div>
|
2024-03-10 16:01:47 +01:00
|
|
|
<button> Modifier données personnelles </button>
|
|
|
|
</div>
|
|
|
|
<div v-if="(user.role==='student')">
|
|
|
|
<button>Réinscription</button>
|
|
|
|
<button style="float:right;background-color:rgb(150,0,0);">Désinscription</button>
|
2024-03-09 22:48:33 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="moreInfos">
|
2024-03-10 16:01:47 +01:00
|
|
|
|
|
|
|
<div v-if="(user.role==='student')">
|
|
|
|
<div class="listTitle">
|
2024-03-10 12:34:44 +01:00
|
|
|
Liste des cours
|
|
|
|
</div>
|
2024-03-10 16:01:47 +01:00
|
|
|
<div class="listElement "
|
|
|
|
v-for="item in user.cursus">
|
|
|
|
<div class=" containerElement">
|
|
|
|
<div class="name"> {{item.name}} </div>
|
|
|
|
<div class="teacher">{{item.teacher}}</div>
|
|
|
|
<div class="credits">Credits:{{item.credits}}</div>
|
|
|
|
</div>
|
2024-03-10 12:34:44 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-10 16:01:47 +01:00
|
|
|
|
|
|
|
<div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-if="(user.role==='teacher')">
|
|
|
|
<div class="listTitle">
|
|
|
|
Liste des cours
|
|
|
|
</div>
|
|
|
|
<div class="listElement " v-for="item in user.coursesOwned">
|
|
|
|
{{item.name}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
</div>
|
|
|
|
|
2024-03-09 22:48:33 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
.container{
|
|
|
|
|
|
|
|
display:grid;
|
|
|
|
grid-template-columns:200px 900px;
|
|
|
|
grid-template-rows:200px auto;
|
|
|
|
column-gap:30px;
|
|
|
|
row-gap:25px;
|
|
|
|
grid-template-areas:
|
|
|
|
"profilPic globalInfos"
|
|
|
|
"minfos minfos";
|
|
|
|
}
|
|
|
|
|
|
|
|
.profilPic{
|
|
|
|
grid-area:profilPic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.globalInfos {
|
|
|
|
grid-area:globalInfos;
|
|
|
|
align-self :center;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.subContainter{
|
|
|
|
width:100%;
|
|
|
|
background-color:rgb(50,50,50);
|
|
|
|
border-radius:20px;
|
|
|
|
border:4px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.moreInfos {
|
|
|
|
grid-area:minfos;
|
|
|
|
}
|
|
|
|
.body {
|
|
|
|
width:100%;
|
|
|
|
margin-bottom:10px;
|
|
|
|
}
|
2024-03-10 16:01:47 +01:00
|
|
|
.containerElement{
|
|
|
|
justify-content:center;
|
|
|
|
display:grid;
|
|
|
|
grid-template-columns:350px 350px 200px;
|
|
|
|
grid-template-areas:
|
|
|
|
"name teacher credits";
|
|
|
|
column-gap:10px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
grid-area:name;
|
|
|
|
align-self:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.teacher{
|
|
|
|
grid-area:teacher;
|
|
|
|
align-self:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.credits{
|
|
|
|
grid-area:credits;
|
|
|
|
align-self:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listTitle{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width:200px;
|
|
|
|
margin-left:auto;
|
|
|
|
margin-right:auto;
|
|
|
|
border:2px solid black;
|
|
|
|
font-size:25px;
|
|
|
|
color:white;
|
|
|
|
padding:20px;
|
|
|
|
background-color:rgb(50,50,50);
|
|
|
|
border-radius:20px;margin-bottom:10px;
|
|
|
|
}
|
2024-03-09 22:48:33 +01:00
|
|
|
|
2024-03-10 16:01:47 +01:00
|
|
|
.listElement{
|
|
|
|
border:2px solid black;
|
|
|
|
font-size:25px;
|
|
|
|
color:white;
|
|
|
|
padding:20px;
|
|
|
|
background-color:rgb(50,50,50);
|
|
|
|
border-radius:20px;
|
|
|
|
margin-bottom:10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infosContainer {
|
|
|
|
padding-bottom:50px;
|
|
|
|
border:2px solid black;
|
|
|
|
font-size:25px;
|
|
|
|
color:white;
|
|
|
|
padding:20px;
|
|
|
|
background-color:rgb(50,50,50);
|
|
|
|
border-radius:20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
button{
|
|
|
|
border:none;
|
|
|
|
background-color:rgb(239, 60, 168);
|
|
|
|
border-radius:10px;
|
|
|
|
height:35px;
|
|
|
|
margin-top:10px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
button:hover{
|
|
|
|
opacity:0.8;
|
|
|
|
}
|
2024-03-09 22:48:33 +01:00
|
|
|
</style>
|