Fix some more routing related things
This commit is contained in:
@@ -28,6 +28,7 @@ export async function getAllAlbums(settings: GlobalSettings): Promise<PhotoAlbum
|
|||||||
endDate: albumRecord["end_date"],
|
endDate: albumRecord["end_date"],
|
||||||
location: albumRecord["location"],
|
location: albumRecord["location"],
|
||||||
category: {
|
category: {
|
||||||
|
id: albumRecord["category"][0]["Photo_Categories_id"]["id"],
|
||||||
title: albumRecord["category"][0]["Photo_Categories_id"]["title"],
|
title: albumRecord["category"][0]["Photo_Categories_id"]["title"],
|
||||||
url: albumRecord["category"][0]["Photo_Categories_id"]["url"],
|
url: albumRecord["category"][0]["Photo_Categories_id"]["url"],
|
||||||
thumbnail: {
|
thumbnail: {
|
||||||
|
|||||||
25
astro/src/content/photos/categories.ts
Normal file
25
astro/src/content/photos/categories.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import { createDirectusConnection } from "@/lib/directus";
|
||||||
|
import { print } from "graphql";
|
||||||
|
import getCategories from '@/graphql/photos/getCategories.graphql';
|
||||||
|
|
||||||
|
export async function getAllCategories(settings: GlobalSettings): Promise<PhotoAlbumCategory[]> {
|
||||||
|
const client = await createDirectusConnection();
|
||||||
|
const result = await client.query(print(getCategories));
|
||||||
|
|
||||||
|
let categories: PhotoAlbumCategory[] = [];
|
||||||
|
|
||||||
|
result["Photo_Categories"].forEach((photoCategoryRecord: any) => {
|
||||||
|
categories.push({
|
||||||
|
id: photoCategoryRecord["id"],
|
||||||
|
title: photoCategoryRecord["title"],
|
||||||
|
url: photoCategoryRecord["url"],
|
||||||
|
thumbnail: {
|
||||||
|
url: photoCategoryRecord["thumbnail"]["filename_disk"],
|
||||||
|
width: photoCategoryRecord["thumbnail"]["width"],
|
||||||
|
height: photoCategoryRecord["thumbnail"]["height"]
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
return categories;
|
||||||
|
}
|
||||||
17
astro/src/graphql/photos/getCategories.graphql
Normal file
17
astro/src/graphql/photos/getCategories.graphql
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
query getAllCategories {
|
||||||
|
Photo_Categories(filter: { status: { _eq: "published" } }) {
|
||||||
|
id,
|
||||||
|
date_created,
|
||||||
|
date_updated,
|
||||||
|
status,
|
||||||
|
title,
|
||||||
|
url,
|
||||||
|
thumbnail {
|
||||||
|
id,
|
||||||
|
created_on,
|
||||||
|
filename_download,
|
||||||
|
width,
|
||||||
|
height
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,6 +3,7 @@ import { getAllWebpages } from "@/content/pages/pages";
|
|||||||
import { getAllAlbums } from "@/content/photos/albums";
|
import { getAllAlbums } from "@/content/photos/albums";
|
||||||
import { getAllProjects } from "@/content/projects/projects";
|
import { getAllProjects } from "@/content/projects/projects";
|
||||||
import { getPhotoHash } from "./hash";
|
import { getPhotoHash } from "./hash";
|
||||||
|
import { getAllCategories } from "@/content/photos/categories";
|
||||||
|
|
||||||
export async function getAllRoutesList(settings: GlobalSettings): Promise<string[]> {
|
export async function getAllRoutesList(settings: GlobalSettings): Promise<string[]> {
|
||||||
let routes: string[] = [];
|
let routes: string[] = [];
|
||||||
@@ -28,10 +29,36 @@ export async function getAllRoutesList(settings: GlobalSettings): Promise<string
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (settings.photo.enabled) {
|
if (settings.photo.enabled) {
|
||||||
|
const categories = await getAllCategories(settings);
|
||||||
const galleries = await getAllAlbums(settings);
|
const galleries = await getAllAlbums(settings);
|
||||||
|
|
||||||
|
categories.forEach((category) => {
|
||||||
|
let albums = galleries.filter(g => g.category.id === category.id);
|
||||||
|
const pages = Math.ceil(albums.length / settings.photo.category.perPage);
|
||||||
|
const categoryRoute = getCategoryRoute(settings.photo, category);
|
||||||
|
|
||||||
|
for (let i = 0; i < pages; i++) {
|
||||||
|
if (i !== 0) {
|
||||||
|
routes.push(`${categoryRoute}/${i + 1}`);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
routes.push(`${categoryRoute}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
galleries.forEach((gallery) => {
|
galleries.forEach((gallery) => {
|
||||||
routes.push(getAlbumRoute(settings.photo, gallery));
|
const pages = Math.ceil(gallery.photos.length / settings.photo.album.perPage);
|
||||||
|
const galleryRoute = getAlbumRoute(settings.photo, gallery);
|
||||||
|
|
||||||
|
for (let i = 0; i < pages; i++) {
|
||||||
|
if (i !== 0) {
|
||||||
|
routes.push(`${galleryRoute}/${i + 1}`);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
routes.push(`${galleryRoute}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
gallery.photos.forEach((photo) => {
|
gallery.photos.forEach((photo) => {
|
||||||
routes.push(getPhotoRoute(settings.photo, gallery, photo));
|
routes.push(getPhotoRoute(settings.photo, gallery, photo));
|
||||||
@@ -64,6 +91,12 @@ export function getProjectRoute(projectSettings: ProjectSettings, project: Proje
|
|||||||
.replace(/\/+/g, '/');
|
.replace(/\/+/g, '/');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getCategoryRoute(photoSettings: WebsitePhotoSettings, category: PhotoAlbumCategory) {
|
||||||
|
return photoSettings.category.routeTemplate
|
||||||
|
.replaceAll("%C", category.url)
|
||||||
|
.replace(/\/+/g, '/');
|
||||||
|
}
|
||||||
|
|
||||||
export function getAlbumRoute(photoSettings: WebsitePhotoSettings, album: PhotoAlbum) {
|
export function getAlbumRoute(photoSettings: WebsitePhotoSettings, album: PhotoAlbum) {
|
||||||
const date = new Date(album.startDate);
|
const date = new Date(album.startDate);
|
||||||
|
|
||||||
|
|||||||
1
astro/src/types/photos/album.d.ts
vendored
1
astro/src/types/photos/album.d.ts
vendored
@@ -16,6 +16,7 @@ type PhotoAlbum = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type PhotoAlbumCategory = {
|
type PhotoAlbumCategory = {
|
||||||
|
id: string;
|
||||||
title: string;
|
title: string;
|
||||||
url: string;
|
url: string;
|
||||||
thumbnail: PhotoProps;
|
thumbnail: PhotoProps;
|
||||||
|
|||||||
Reference in New Issue
Block a user