536 lines
22 KiB
Vue
536 lines
22 KiB
Vue
<script setup lang="ts">
|
|
import { computed, type Ref, ref } from "vue";
|
|
import { useI18n } from "vue-i18n";
|
|
import { useAssignmentQuery, useDeleteAssignmentMutation } from "@/queries/assignments.ts";
|
|
import UsingQueryResult from "@/components/UsingQueryResult.vue";
|
|
import { useGroupsQuery } from "@/queries/groups.ts";
|
|
import { useGetAllLearningPaths, useGetLearningPathQuery } from "@/queries/learning-paths.ts";
|
|
import type { Language } from "@/data-objects/language.ts";
|
|
import type { AssignmentResponse } from "@/controllers/assignments.ts";
|
|
import type { GroupDTO } from "@dwengo-1/common/interfaces/group";
|
|
import type { StudentDTO } from "@dwengo-1/common/interfaces/student";
|
|
import type { LearningPath } from "@/data-objects/learning-paths/learning-path";
|
|
|
|
const props = defineProps<{
|
|
classId: string;
|
|
assignmentId: number;
|
|
useGroupsWithProgress: (
|
|
groups: Ref<GroupDTO[]>,
|
|
hruid: Ref<string>,
|
|
language: Ref<Language>,
|
|
) => { groupProgressMap: Map<number, number> };
|
|
}>();
|
|
|
|
const isEditing = ref(false);
|
|
|
|
const { t, locale } = useI18n();
|
|
const language = computed(() => locale.value);
|
|
const groups = ref();
|
|
const learningPath = ref();
|
|
const editingLearningPath = ref(learningPath);
|
|
const description = ref("");
|
|
|
|
const assignmentQueryResult = useAssignmentQuery(props.classId, props.assignmentId);
|
|
learningPath.value = assignmentQueryResult.data.value?.assignment?.learningPath;
|
|
const learningPathsQueryResults = useGetAllLearningPaths(language);
|
|
|
|
// Get learning path object
|
|
const lpQueryResult = useGetLearningPathQuery(
|
|
computed(() => assignmentQueryResult.data.value?.assignment?.learningPath ?? ""),
|
|
computed(() => language.value as Language),
|
|
);
|
|
|
|
const learningPathRules = [
|
|
(value: { hruid: string; title: string }): string | boolean => {
|
|
if (value && value.hruid) {
|
|
return true; // Valid if hruid is present
|
|
}
|
|
return "You must select a learning path.";
|
|
},
|
|
];
|
|
|
|
const descriptionRules = [
|
|
(value: string): string | boolean => {
|
|
if (!value || value.trim() === "") {
|
|
return "Description cannot be empty.";
|
|
}
|
|
return true;
|
|
},
|
|
];
|
|
|
|
// Get all the groups withing the assignment
|
|
const groupsQueryResult = useGroupsQuery(props.classId, props.assignmentId, true);
|
|
groups.value = groupsQueryResult.data.value?.groups;
|
|
|
|
/* Crashes right now cause api data has inexistent hruid TODO: uncomment later and use it in progress bar
|
|
Const {groupProgressMap} = props.useGroupsWithProgress(
|
|
groups,
|
|
learningPath,
|
|
language
|
|
);
|
|
*/
|
|
|
|
const allGroups = computed(() => {
|
|
const groups = groupsQueryResult.data.value?.groups;
|
|
if (!groups) return [];
|
|
|
|
return groups.map((group) => ({
|
|
name: `${t("group")} ${group.groupNumber}`,
|
|
progress: 0, //GroupProgressMap[group.groupNumber],
|
|
members: group.members,
|
|
submitted: false, //TODO: fetch from submission
|
|
}));
|
|
});
|
|
|
|
const dialog = ref(false);
|
|
const selectedGroup = ref({});
|
|
|
|
function openGroupDetails(group): void {
|
|
selectedGroup.value = group;
|
|
dialog.value = true;
|
|
}
|
|
|
|
const headers = computed(() => [
|
|
{ title: t("group"), align: "start", key: "name" },
|
|
{ title: t("progress"), align: "center", key: "progress" },
|
|
{ title: t("submission"), align: "center", key: "submission" },
|
|
]);
|
|
|
|
const { mutate } = useDeleteAssignmentMutation();
|
|
|
|
async function deleteAssignment(num: number, clsId: string): Promise<void> {
|
|
mutate(
|
|
{ cid: clsId, an: num },
|
|
{
|
|
onSuccess: () => {
|
|
window.location.href = "/user/assignment";
|
|
},
|
|
},
|
|
);
|
|
}
|
|
|
|
function saveChanges() {
|
|
//TODO
|
|
const new_learningpath = editingLearningPath.value;
|
|
const new_description = description.value;
|
|
isEditing.value = false;
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="container">
|
|
<using-query-result
|
|
:query-result="assignmentQueryResult"
|
|
v-slot="assignmentResponse: { data: AssignmentResponse }"
|
|
>
|
|
<v-container
|
|
fluid
|
|
class="ma-4"
|
|
>
|
|
<v-row
|
|
no-gutters
|
|
class="custom-breakpoint"
|
|
>
|
|
<v-col
|
|
cols="12"
|
|
sm="6"
|
|
md="6"
|
|
class="responsive-col"
|
|
>
|
|
<v-card
|
|
v-if="assignmentResponse"
|
|
class="assignment-card"
|
|
>
|
|
<div class="top-buttons">
|
|
<div class="top-buttons-wrapper">
|
|
<v-btn
|
|
icon
|
|
variant="text"
|
|
class="back-btn"
|
|
to="/user/assignment"
|
|
>
|
|
<v-icon>mdi-arrow-left</v-icon>
|
|
</v-btn>
|
|
<div class="right-buttons">
|
|
<v-btn
|
|
v-if="!isEditing"
|
|
icon
|
|
variant="text"
|
|
class="top_next_to_right_button"
|
|
@click="
|
|
() => {
|
|
isEditing = true;
|
|
description = assignmentResponse.data.assignment.description;
|
|
}
|
|
"
|
|
>
|
|
<v-icon>mdi-pencil</v-icon>
|
|
</v-btn>
|
|
<v-btn
|
|
v-else
|
|
variant="text"
|
|
class="top-right-btn"
|
|
@click="() => {isEditing = false; editingLearningPath=learningPath}"
|
|
>{{ t("cancel") }}</v-btn
|
|
>
|
|
|
|
<v-btn
|
|
v-if="!isEditing"
|
|
icon
|
|
variant="text"
|
|
class="top-right-btn"
|
|
@click="
|
|
deleteAssignment(
|
|
assignmentResponse.data.assignment.id,
|
|
assignmentResponse.data.assignment.within,
|
|
)
|
|
"
|
|
>
|
|
<v-icon>mdi-delete</v-icon>
|
|
</v-btn>
|
|
<v-btn
|
|
v-else
|
|
icon
|
|
variant="text"
|
|
class="top_next_to_right_button"
|
|
@click="saveChanges"
|
|
>
|
|
<v-icon>mdi-content-save-edit-outline</v-icon>
|
|
</v-btn>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<v-card-title class="text-h4 assignmentTopTitle">{{
|
|
assignmentResponse.data.assignment.title
|
|
}}</v-card-title>
|
|
<v-card-subtitle
|
|
v-if="!isEditing"
|
|
class="subtitle-section"
|
|
>
|
|
<using-query-result
|
|
:query-result="lpQueryResult"
|
|
v-slot="{ data: lpData }"
|
|
>
|
|
<v-btn
|
|
v-if="lpData"
|
|
:to="`/learningPath/${lpData.hruid}/${language}/${lpData.startNode.learningobjectHruid}?assignmentNo=${assignmentId}&classId=${classId}`"
|
|
variant="tonal"
|
|
color="primary"
|
|
>
|
|
{{ t("learning-path") }}
|
|
</v-btn>
|
|
</using-query-result>
|
|
</v-card-subtitle>
|
|
<using-query-result
|
|
v-else
|
|
:query-result="learningPathsQueryResults"
|
|
v-slot="{ data }: { data: LearningPath[] }"
|
|
>
|
|
<v-card-text>
|
|
<v-combobox
|
|
v-model="editingLearningPath"
|
|
:items="data"
|
|
:label="t('choose-lp')"
|
|
:rules="learningPathRules"
|
|
variant="outlined"
|
|
clearable
|
|
hide-details
|
|
density="compact"
|
|
append-inner-icon="mdi-magnify"
|
|
item-title="title"
|
|
item-value="hruid"
|
|
required
|
|
:filter="
|
|
(item, query: string) =>
|
|
item.title.toLowerCase().includes(query.toLowerCase())
|
|
"
|
|
></v-combobox>
|
|
</v-card-text>
|
|
</using-query-result>
|
|
|
|
<v-card-text
|
|
v-if="!isEditing"
|
|
class="description"
|
|
>
|
|
{{ assignmentResponse.data.assignment.description }}
|
|
</v-card-text>
|
|
<v-card-text v-else>
|
|
<v-textarea
|
|
v-model="description"
|
|
:label="t('description')"
|
|
variant="outlined"
|
|
density="compact"
|
|
auto-grow
|
|
rows="3"
|
|
:rules="descriptionRules"
|
|
></v-textarea>
|
|
</v-card-text>
|
|
|
|
<v-card-text class="group-section">
|
|
<h3>{{ t("groups") }}</h3>
|
|
<div class="table-scroll">
|
|
<v-data-table
|
|
:headers="headers"
|
|
:items="allGroups"
|
|
item-key="id"
|
|
class="elevation-1"
|
|
>
|
|
<template #[`item.name`]="{ item }">
|
|
<v-btn
|
|
@click="openGroupDetails(item)"
|
|
variant="text"
|
|
color="primary"
|
|
>
|
|
{{ item.name }}
|
|
</v-btn>
|
|
</template>
|
|
|
|
<template #[`item.progress`]="{ item }">
|
|
<v-progress-linear
|
|
:model-value="item.progress"
|
|
color="blue-grey"
|
|
height="25"
|
|
>
|
|
<template v-slot:default="{ value }">
|
|
<strong>{{ Math.ceil(value) }}%</strong>
|
|
</template>
|
|
</v-progress-linear>
|
|
</template>
|
|
|
|
<template #[`item.submission`]="{ item }">
|
|
<v-btn
|
|
:to="item.submitted ? `${props.assignmentId}/submissions/` : undefined"
|
|
:color="item.submitted ? 'green' : 'red'"
|
|
variant="text"
|
|
class="text-capitalize"
|
|
>
|
|
{{ item.submitted ? t("see-submission") : t("no-submission") }}
|
|
</v-btn>
|
|
</template>
|
|
</v-data-table>
|
|
</div>
|
|
</v-card-text>
|
|
|
|
<v-dialog
|
|
v-model="dialog"
|
|
max-width="50%"
|
|
>
|
|
<v-card>
|
|
<v-card-title class="headline">{{ t("members") }}</v-card-title>
|
|
<v-card-text>
|
|
<v-list>
|
|
<v-list-item
|
|
v-for="(member, index) in selectedGroup.members"
|
|
:key="index"
|
|
>
|
|
<v-list-item-content>
|
|
<v-list-item-title
|
|
>{{ member.firstName + " " + member.lastName }}
|
|
</v-list-item-title>
|
|
</v-list-item-content>
|
|
</v-list-item>
|
|
</v-list>
|
|
</v-card-text>
|
|
<v-card-actions>
|
|
<v-btn
|
|
color="primary"
|
|
@click="dialog = false"
|
|
>Close</v-btn
|
|
>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</v-dialog>
|
|
<!--
|
|
<v-card-actions class="justify-end">
|
|
<v-btn
|
|
size="large"
|
|
color="success"
|
|
variant="text"
|
|
>
|
|
{{ t("view-submissions") }}
|
|
</v-btn>
|
|
</v-card-actions>
|
|
-->
|
|
</v-card>
|
|
</v-col>
|
|
<v-col
|
|
cols="12"
|
|
sm="6"
|
|
md="6"
|
|
class="responsive-col"
|
|
>
|
|
<v-table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th class="header">{{ t("group") }}</th>
|
|
<th class="header">
|
|
{{ t("progress") }}
|
|
</th>
|
|
<th class="header">{{ t("Members") }}</th>
|
|
<th class="header">
|
|
<v-btn
|
|
:to="`/assignment/${assignmentResponse.data.assignment.within}/${assignmentResponse.data.assignment.id}`"
|
|
variant="text"
|
|
>
|
|
<v-icon> mdi-pencil </v-icon>
|
|
</v-btn>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr
|
|
v-for="g in assignmentResponse.data.assignment.groups as GroupDTO[]"
|
|
:key="g.groupNumber"
|
|
>
|
|
<td>
|
|
<v-btn
|
|
:to="`/assignment/${assignmentResponse.data.assignment.within}/${assignmentResponse.data.assignment.id}`"
|
|
variant="text"
|
|
>
|
|
{{ g.groupNumber }}
|
|
<v-icon end> mdi-menu-right </v-icon>
|
|
</v-btn>
|
|
</td>
|
|
<td>
|
|
<v-progress-linear
|
|
:model-value="0"
|
|
color="blue-grey"
|
|
height="25"
|
|
>
|
|
<template v-slot:default="{ value }">
|
|
<strong>{{ Math.ceil(value) }}%</strong>
|
|
</template>
|
|
</v-progress-linear>
|
|
</td>
|
|
<td>
|
|
{{ (g.members! as StudentDTO[]).map((member) => member.username).join(", ") }}
|
|
</td>
|
|
<td>
|
|
<v-btn
|
|
:to="`/assignment/${assignmentResponse.data.assignment.within}/${assignmentResponse.data.assignment.id}`"
|
|
variant="text"
|
|
>
|
|
<v-icon color="red"> mdi-delete </v-icon>
|
|
</v-btn>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</v-table>
|
|
</v-col>
|
|
</v-row>
|
|
</v-container>
|
|
</using-query-result>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
@import "@/assets/assignment.css";
|
|
|
|
.table-scroll {
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.header {
|
|
font-weight: bold !important;
|
|
background-color: #0e6942;
|
|
color: white;
|
|
padding: 10px;
|
|
}
|
|
|
|
table thead th:first-child {
|
|
border-top-left-radius: 10px;
|
|
}
|
|
|
|
.table thead th:last-child {
|
|
border-top-right-radius: 10px;
|
|
}
|
|
|
|
.table tbody tr:nth-child(odd) {
|
|
background-color: white;
|
|
}
|
|
|
|
.table tbody tr:nth-child(even) {
|
|
background-color: #f6faf2;
|
|
}
|
|
|
|
td,
|
|
th {
|
|
border-bottom: 1px solid #0e6942;
|
|
border-top: 1px solid #0e6942;
|
|
}
|
|
|
|
.table {
|
|
width: 90%;
|
|
padding-top: 10px;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
h1 {
|
|
color: #0e6942;
|
|
text-transform: uppercase;
|
|
font-weight: bolder;
|
|
padding-top: 2%;
|
|
font-size: 50px;
|
|
}
|
|
|
|
h2 {
|
|
color: #0e6942;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.join {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.link {
|
|
color: #0b75bb;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
main {
|
|
margin-left: 30px;
|
|
}
|
|
|
|
@media screen and (max-width: 850px) {
|
|
h1 {
|
|
text-align: center;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.join {
|
|
text-align: center;
|
|
align-items: center;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.sheet {
|
|
width: 100%;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 5px;
|
|
}
|
|
|
|
.custom-breakpoint {
|
|
flex-direction: column !important;
|
|
}
|
|
|
|
.table {
|
|
width: 100%;
|
|
}
|
|
|
|
.responsive-col {
|
|
max-width: 100% !important;
|
|
flex-basis: 100% !important;
|
|
}
|
|
}
|
|
</style>
|