feat: stuur invitations
This commit is contained in:
parent
b0f4ba823b
commit
a305901bf1
1 changed files with 49 additions and 0 deletions
|
@ -10,6 +10,8 @@
|
||||||
import { useTeacherJoinRequestsQuery, useUpdateJoinRequestMutation } from "@/queries/teachers";
|
import { useTeacherJoinRequestsQuery, useUpdateJoinRequestMutation } from "@/queries/teachers";
|
||||||
import type { ClassJoinRequestDTO } from "@dwengo-1/common/interfaces/class-join-request";
|
import type { ClassJoinRequestDTO } from "@dwengo-1/common/interfaces/class-join-request";
|
||||||
import { useClassDeleteStudentMutation, useClassQuery, useClassStudentsQuery } from "@/queries/classes";
|
import { useClassDeleteStudentMutation, useClassQuery, useClassStudentsQuery } from "@/queries/classes";
|
||||||
|
import { useCreateTeacherInvitationMutation } from "@/queries/teacher-invitations";
|
||||||
|
import type { TeacherInvitationData } from "@dwengo-1/common/interfaces/teacher-invitation";
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
@ -19,6 +21,7 @@
|
||||||
const isLoading = ref(false);
|
const isLoading = ref(false);
|
||||||
const isError = ref(false);
|
const isError = ref(false);
|
||||||
const errorMessage = ref<string>("");
|
const errorMessage = ref<string>("");
|
||||||
|
const usernameTeacher = ref<string|undefined>(undefined);
|
||||||
|
|
||||||
// Queries used to access the backend and catch loading or errors
|
// Queries used to access the backend and catch loading or errors
|
||||||
|
|
||||||
|
@ -32,6 +35,8 @@
|
||||||
const { mutate } = useUpdateJoinRequestMutation();
|
const { mutate } = useUpdateJoinRequestMutation();
|
||||||
// Handle deletion of a student from the class
|
// Handle deletion of a student from the class
|
||||||
const { mutate: deleteStudentMutation } = useClassDeleteStudentMutation();
|
const { mutate: deleteStudentMutation } = useClassDeleteStudentMutation();
|
||||||
|
// Handle creation of teacher invites
|
||||||
|
const { mutate: sentInviteMutation } = useCreateTeacherInvitationMutation();
|
||||||
|
|
||||||
// Load current user before rendering the page
|
// Load current user before rendering the page
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
|
@ -104,6 +109,22 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function sentInvite(): void{
|
||||||
|
if (!usernameTeacher.value) {
|
||||||
|
showSnackbar(t("please enter a valid username"), "error");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const data : TeacherInvitationData = {sender: username.value!, receiver: usernameTeacher.value, class: classId};
|
||||||
|
sentInviteMutation(data, {
|
||||||
|
onSuccess: () => {
|
||||||
|
usernameTeacher.value = "";
|
||||||
|
},
|
||||||
|
onError: (e) => {
|
||||||
|
showSnackbar(t("failed: " + e.message), "error");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// Default of snackbar values
|
// Default of snackbar values
|
||||||
const snackbar = ref({
|
const snackbar = ref({
|
||||||
visible: false,
|
visible: false,
|
||||||
|
@ -228,6 +249,34 @@
|
||||||
</v-container>
|
</v-container>
|
||||||
</using-query-result>
|
</using-query-result>
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<div class="join">
|
||||||
|
<h2>{{ t("inviteTeacher") }}</h2>
|
||||||
|
<p>{{ t("enter the username of the teacher you would like to invite") }}</p>
|
||||||
|
|
||||||
|
<v-sheet
|
||||||
|
class="pa-4 sheet"
|
||||||
|
max-width="400"
|
||||||
|
>
|
||||||
|
<v-form @submit.prevent>
|
||||||
|
<v-text-field
|
||||||
|
:label="`${t('username')}`"
|
||||||
|
v-model="usernameTeacher"
|
||||||
|
:placeholder="`${t('enter username')}`"
|
||||||
|
variant="outlined"
|
||||||
|
></v-text-field>
|
||||||
|
<v-btn
|
||||||
|
class="mt-4"
|
||||||
|
color="#f6faf2"
|
||||||
|
type="submit"
|
||||||
|
@click="sentInvite"
|
||||||
|
block
|
||||||
|
>{{ t("invite") }}</v-btn
|
||||||
|
>
|
||||||
|
</v-form>
|
||||||
|
</v-sheet>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<v-dialog
|
<v-dialog
|
||||||
v-model="dialog"
|
v-model="dialog"
|
||||||
max-width="400px"
|
max-width="400px"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue