diff --git a/core/management/commands/populate.py b/core/management/commands/populate.py index 492f971b..8e6818d6 100644 --- a/core/management/commands/populate.py +++ b/core/management/commands/populate.py @@ -833,8 +833,9 @@ Welcome to the wiki page! size=file.size, ) pict.file.name = p.name - pict.clean() + pict.full_clean() pict.generate_thumbnails() + pict.save() img_skia = Picture.objects.get(name="skia.jpg") img_sli = Picture.objects.get(name="sli.jpg") diff --git a/sas/models.py b/sas/models.py index e2b8867a..4f3ff21e 100644 --- a/sas/models.py +++ b/sas/models.py @@ -134,7 +134,6 @@ class Picture(SasFile): self.thumbnail.name = new_extension_name self.compressed = compressed self.compressed.name = new_extension_name - self.save() def rotate(self, degree): for attr in ["file", "compressed", "thumbnail"]: @@ -235,6 +234,8 @@ class Album(SasFile): return Album.objects.filter(parent=self) def get_absolute_url(self): + if self.id == settings.SITH_SAS_ROOT_DIR_ID: + return reverse("sas:main") return reverse("sas:album", kwargs={"album_id": self.id}) def get_download_url(self): diff --git a/sas/static/bundled/sas/album-index.ts b/sas/static/bundled/sas/album-index.ts index 6dda1ce9..b2a706d5 100644 --- a/sas/static/bundled/sas/album-index.ts +++ b/sas/static/bundled/sas/album-index.ts @@ -7,6 +7,7 @@ import { type PicturesFetchPicturesData, albumFetchAlbum, picturesFetchPictures, + picturesUploadPicture, } from "#openapi"; interface AlbumPicturesConfig { @@ -78,4 +79,40 @@ document.addEventListener("alpine:init", () => { this.loading = false; }, })); + + Alpine.data("pictureUpload", (albumId: number) => ({ + errors: [] as string[], + pictures: [], + sending: false, + progress: null as HTMLProgressElement, + + init() { + this.progress = this.$refs.progress; + }, + + async sendPictures() { + const input = this.$refs.pictures as HTMLInputElement; + const files = input.files; + this.progress.value = 0; + this.progress.max = files.length; + this.sending = true; + for (const file of files) { + await this.sendPicture(file); + } + this.sending = false; + // This should trigger a reload of the pictures of the `picture` Alpine data + this.$dispatch("pictures-upload-done"); + }, + + async sendPicture(file: File) { + const res = await picturesUploadPicture({ + // biome-ignore lint/style/useNamingConvention: api is snake_case + body: { album_id: albumId, picture: file }, + }); + if (!res.response.ok) { + this.errors.push(`${file.name} : ${res.error.detail}`); + } + this.progress.value += 1; + }, + })); }); diff --git a/sas/templates/sas/album.jinja b/sas/templates/sas/album.jinja index 677552c1..18cd6f21 100644 --- a/sas/templates/sas/album.jinja +++ b/sas/templates/sas/album.jinja @@ -73,7 +73,7 @@
{% trans %}To be moderated{% endtrans %}
- {% if edit_mode %} + {% if is_sas_admin %} {% endif %} @@ -86,7 +86,7 @@

{% trans %}Pictures{% endtrans %}


{{ download_button(_("Download album")) }} -
+