Skip to content
Snippets Groups Projects
Commit caf7962b authored by Hangzhi Yu's avatar Hangzhi Yu
Browse files

Merge branch '256-add-simple-course-book-list' of...

Merge branch '256-add-simple-course-book-list' of edugit.org:AlekSIS/official/AlekSIS-App-Alsijil into 256-add-simple-course-book-list
parents 98edc9da 1fcc0d63
No related branches found
No related tags found
2 merge requests!352Draft: Resolve "Add dialog with each lesson's students",!350Resolve "Add simple course book list"
Pipeline #177277 failed
...@@ -38,6 +38,11 @@ query documentationsForCoursebook( ...@@ -38,6 +38,11 @@ query documentationsForCoursebook(
lessonEvent { lessonEvent {
id id
} }
teachers {
id
shortName
fullName
}
subject { subject {
id id
name name
......
<script setup>
import PersonChip from "aleksis.core/components/person/PersonChip.vue";
</script>
<template> <template>
<div :class="{ 'full-width grid mr-0': true, 'mr-md-4': compact }"> <div :class="{ 'full-width grid mr-0 mb-2': true, 'mr-md-4 mb-0': compact, 'large-grid': largeGrid }">
<div> <div>
<time :datetime="documentation.datetimeStart" :class="{ 'd-block': compact }"> <div :class="{ 'text-right d-flex flex-column fit-content': largeGrid }">
{{ $d(toDateTime(documentation.datetimeStart), "shortTime") }} <time :datetime="documentation.datetimeStart" class="text-no-wrap">
</time> {{ $d(toDateTime(documentation.datetimeStart), "shortTime") }}
<span v-if="!compact"></span> </time>
<time :datetime="documentation.datetimeEnd" :class="{ 'd-block': compact }"> <span v-if="!largeGrid"></span>
{{ $d(toDateTime(documentation.datetimeEnd), "shortTime") }} <time :datetime="documentation.datetimeEnd" class="text-no-wrap">
</time> {{ $d(toDateTime(documentation.datetimeEnd), "shortTime") }}
</time>
</div>
</div> </div>
<span class="text-center"> <span :class="{ 'text-right': !largeGrid }">
{{ documentation.course?.name }} {{ documentation.course?.name }}
</span> </span>
<div :class="{ 'd-flex align-center flex-wrap gap': true, 'justify-center': largeGrid }">
<person-chip
v-for="teacher in documentation.teachers"
:person="teacher"
no-link
v-bind="compact ? dialogActivator.attrs : {}"
v-on="compact ? dialogActivator.on : {}"
/>
</div>
<subject-chip <subject-chip
v-if="documentation.subject" v-if="documentation.subject"
:subject="documentation.subject" :subject="documentation.subject"
class="subject" class="subject"
:append-icon="documentation.canEdit ? '$edit' : undefined" v-bind="compact ? dialogActivator.attrs : {}"
v-on="compact ? dialogActivator.on : {}"
/> />
</div> </div>
</template> </template>
...@@ -37,18 +53,44 @@ export default { ...@@ -37,18 +53,44 @@ export default {
return DateTime.fromISO(dateString); return DateTime.fromISO(dateString);
}, },
}, },
computed: {
largeGrid() {
return this.compact && !this.$vuetify.breakpoint.mobile;
}
},
}; };
</script> </script>
<style scoped> <style scoped>
.grid { .grid {
display: grid; display: grid;
grid-template-columns: 1fr max-content 1fr; grid-template-columns: auto auto;
align-items: center; align-items: center;
gap: 1em; gap: 1em;
align-content: start;
}
.large-grid {
grid-template-columns: min-content 1fr 1fr 1fr;
align-content: unset;
}
.grid:not(.large-grid):nth-child(odd) {
justify-self: start;
}
.grid:not(.large-grid):nth-child(even) {
justify-self: end;
} }
.subject { .subject {
justify-self: end; justify-self: end;
} }
.fit-content {
width: fit-content;
}
.gap {
gap: 0.25em;
}
</style> </style>
...@@ -26,6 +26,9 @@ ...@@ -26,6 +26,9 @@
> >
Hausaufgaben vergessen Hausaufgaben vergessen
</v-chip> </v-chip>
<v-chip dense color="primary" outlined>
<v-icon>$edit</v-icon>
</v-chip>
</div> </div>
</template> </template>
......
...@@ -12,7 +12,9 @@ from graphene_django_cud.mutations import ( ...@@ -12,7 +12,9 @@ from graphene_django_cud.mutations import (
from guardian.shortcuts import get_objects_for_user from guardian.shortcuts import get_objects_for_user
from aleksis.apps.chronos.models import LessonEvent from aleksis.apps.chronos.models import LessonEvent
from aleksis.apps.cursus.models import Subject
from aleksis.apps.cursus.schema import CourseType, SubjectType from aleksis.apps.cursus.schema import CourseType, SubjectType
from aleksis.core.models import Person
from aleksis.core.schema.base import ( from aleksis.core.schema.base import (
DeleteMutation, DeleteMutation,
DjangoFilterMixin, DjangoFilterMixin,
...@@ -38,6 +40,7 @@ class DocumentationType(PermissionsTypeMixin, DjangoFilterMixin, DjangoObjectTyp ...@@ -38,6 +40,7 @@ class DocumentationType(PermissionsTypeMixin, DjangoFilterMixin, DjangoObjectTyp
"datetime_end", "datetime_end",
"date_start", "date_start",
"date_end", "date_end",
"teachers",
) )
filter_fields = { filter_fields = {
"id": ["exact", "lte", "gte"], "id": ["exact", "lte", "gte"],
...@@ -47,6 +50,12 @@ class DocumentationType(PermissionsTypeMixin, DjangoFilterMixin, DjangoObjectTyp ...@@ -47,6 +50,12 @@ class DocumentationType(PermissionsTypeMixin, DjangoFilterMixin, DjangoObjectTyp
course = graphene.Field(CourseType, required=False) course = graphene.Field(CourseType, required=False)
subject = graphene.Field(SubjectType, required=False) subject = graphene.Field(SubjectType, required=False)
@staticmethod
def resolve_teachers(root: Documentation, info, **kwargs):
if not str(root.pk).startswith("DUMMY") and hasattr(root, "teachers"):
return root.teachers
return root.lesson_event.teachers
@classmethod @classmethod
def get_queryset(cls, queryset, info): def get_queryset(cls, queryset, info):
return get_objects_for_user(info.context.user, "alsijil.view_documentation", queryset) return get_objects_for_user(info.context.user, "alsijil.view_documentation", queryset)
...@@ -129,6 +138,7 @@ class DocumentationInputType(graphene.InputObjectType): ...@@ -129,6 +138,7 @@ class DocumentationInputType(graphene.InputObjectType):
id = graphene.ID(required=True) id = graphene.ID(required=True)
course = graphene.ID(required=False) course = graphene.ID(required=False)
subject = graphene.ID(required=False) subject = graphene.ID(required=False)
teachers = graphene.List(graphene.ID, required=False)
topic = graphene.String(required=False) topic = graphene.String(required=False)
homework = graphene.String(required=False) homework = graphene.String(required=False)
...@@ -158,7 +168,7 @@ class DocumentationBatchCreateOrUpdateMutation(graphene.Mutation): ...@@ -158,7 +168,7 @@ class DocumentationBatchCreateOrUpdateMutation(graphene.Mutation):
# Timezone removal is necessary due to ISO style offsets are no valid timezones. # Timezone removal is necessary due to ISO style offsets are no valid timezones.
# Instead, we take the timezone from the lesson_event and save it in a dedicated field. # Instead, we take the timezone from the lesson_event and save it in a dedicated field.
return Documentation.objects.create( obj = Documentation.objects.create(
datetime_start=datetime.fromisoformat(datetime_start).replace(tzinfo=timezone.utc), datetime_start=datetime.fromisoformat(datetime_start).replace(tzinfo=timezone.utc),
datetime_end=datetime.fromisoformat(datetime_end).replace(tzinfo=timezone.utc), datetime_end=datetime.fromisoformat(datetime_end).replace(tzinfo=timezone.utc),
timezone=lesson_event.timezone, timezone=lesson_event.timezone,
...@@ -169,6 +179,12 @@ class DocumentationBatchCreateOrUpdateMutation(graphene.Mutation): ...@@ -169,6 +179,12 @@ class DocumentationBatchCreateOrUpdateMutation(graphene.Mutation):
homework=doc.homework or "", homework=doc.homework or "",
group_note=doc.group_note or "", group_note=doc.group_note or "",
) )
if doc.teachers is not None:
obj.teachers.add(*doc.teachers)
else:
obj.teachers.set(lesson_event.teachers)
obj.save()
return obj
else: else:
obj = Documentation.objects.get(id=_id) obj = Documentation.objects.get(id=_id)
...@@ -182,6 +198,11 @@ class DocumentationBatchCreateOrUpdateMutation(graphene.Mutation): ...@@ -182,6 +198,11 @@ class DocumentationBatchCreateOrUpdateMutation(graphene.Mutation):
if doc.group_note is not None: if doc.group_note is not None:
obj.group_note = doc.group_note obj.group_note = doc.group_note
if doc.subject is not None:
obj.subject = Subject.objects.get(pk=doc.subject)
if doc.teachers is not None:
obj.teachers.set(Person.objects.filter(pk__in=doc.teachers))
obj.save() obj.save()
return obj return obj
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment