13 Commits

Author SHA1 Message Date
Quinn Hegeman
e23c077a05 Make a function to get all website settings 2026-03-07 19:22:06 +01:00
Quinn Hegeman
f914b7db1c Set up graphql for requests 2026-03-07 18:51:46 +01:00
Quinn Hegeman
770198bb5b Add env example with Directus 2026-03-07 17:20:28 +01:00
Quinn Hegeman
025a84b2ef Add @ path to tsconfig 2026-03-07 17:20:15 +01:00
Quinn Hegeman
5caf0424cc Create a function for creating a Directus client in Astro 2026-03-07 17:01:25 +01:00
Quinn Hegeman
3865b4b089 Add Astro environment types 2026-03-07 16:57:45 +01:00
231b8cddc3 Merge pull request 'Setup the Astro project' (#3) from astro/setup-project into master
Reviewed-on: #3
2026-03-07 15:39:41 +00:00
Quinn Hegeman
ea54db99a6 Add Directus SDK for later in Astro 2026-03-07 16:28:49 +01:00
Quinn Hegeman
a4c05efa7a Add mdast-util-to-string and reading time plugins for later 2026-03-07 16:24:48 +01:00
Quinn Hegeman
269f5c8eb9 Install Tailwind and Preact 2026-03-07 16:18:49 +01:00
Quinn Hegeman
3e03a9ab27 Add Astro project to the repository 2026-03-07 16:07:09 +01:00
42e52b9811 Merge pull request 'Put pages M2M relation to Relations category in Directus' (#2) from directus/setup-project into master
Reviewed-on: #2
2026-03-07 15:02:34 +00:00
95b3060759 Merge pull request 'Setup Directus to the project' (#1) from directus/setup-project into master
Reviewed-on: #1
2026-03-07 15:02:00 +00:00
26 changed files with 7953 additions and 0 deletions

2
astro/.env.example Normal file
View File

@@ -0,0 +1,2 @@
DIRECTUS_URL="https://"
DIRECTUS_TOKEN=""

24
astro/.gitignore vendored Normal file
View File

@@ -0,0 +1,24 @@
# build output
dist/
# generated types
.astro/
# dependencies
node_modules/
# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# environment variables
.env
.env.production
# macOS-specific files
.DS_Store
# jetbrains setting folder
.idea/

4
astro/.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
}

11
astro/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}

43
astro/README.md Normal file
View File

@@ -0,0 +1,43 @@
# Astro Starter Kit: Minimal
```sh
npm create astro@latest -- --template minimal
```
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```text
/
├── public/
├── src/
│ └── pages/
│ └── index.astro
└── package.json
```
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
Any static assets, like images, can be placed in the `public/` directory.
## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |
## 👀 Want to learn more?
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).

14
astro/astro.config.mjs Normal file
View File

@@ -0,0 +1,14 @@
// @ts-check
import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';
import tailwindcss from '@tailwindcss/vite';
import graphql from '@rollup/plugin-graphql';
// https://astro.build/config
export default defineConfig({
integrations: [preact()],
vite: {
plugins: [tailwindcss(), graphql()]
}
});

7395
astro/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

23
astro/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "astro",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/preact": "^4.1.3",
"@directus/sdk": "^21.2.0",
"@rollup/plugin-graphql": "^2.0.5",
"@tailwindcss/vite": "^4.2.1",
"astro": "^5.17.1",
"mdast-util-to-string": "^4.0.0",
"preact": "^10.28.4",
"reading-time": "^1.5.0",
"tailwindcss": "^4.2.1",
"tslib": "^2.8.1"
}
}

BIN
astro/public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 655 B

9
astro/public/favicon.svg Normal file
View File

@@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128">
<path d="M50.4 78.5a75.1 75.1 0 0 0-28.5 6.9l24.2-65.7c.7-2 1.9-3.2 3.4-3.2h29c1.5 0 2.7 1.2 3.4 3.2l24.2 65.7s-11.6-7-28.5-7L67 45.5c-.4-1.7-1.6-2.8-2.9-2.8-1.3 0-2.5 1.1-2.9 2.7L50.4 78.5Zm-1.1 28.2Zm-4.2-20.2c-2 6.6-.6 15.8 4.2 20.2a17.5 17.5 0 0 1 .2-.7 5.5 5.5 0 0 1 5.7-4.5c2.8.1 4.3 1.5 4.7 4.7.2 1.1.2 2.3.2 3.5v.4c0 2.7.7 5.2 2.2 7.4a13 13 0 0 0 5.7 4.9v-.3l-.2-.3c-1.8-5.6-.5-9.5 4.4-12.8l1.5-1a73 73 0 0 0 3.2-2.2 16 16 0 0 0 6.8-11.4c.3-2 .1-4-.6-6l-.8.6-1.6 1a37 37 0 0 1-22.4 2.7c-5-.7-9.7-2-13.2-6.2Z" />
<style>
path { fill: #000; }
@media (prefers-color-scheme: dark) {
path { fill: #FFF; }
}
</style>
</svg>

After

Width:  |  Height:  |  Size: 749 B

View File

@@ -0,0 +1,133 @@
import { print } from 'graphql';
import { createDirectusConnection } from "@/lib/directus";
import getSettingsQuery from '@/graphql/settings/settings.graphql';
export async function getSettings(): Promise<GlobalSettings> {
const client = await createDirectusConnection();
const result = await client.query(print(getSettingsQuery));
const websiteResults = result["Website_Settings"];
const websiteSettings: WebsiteSettings = {
domainName: websiteResults["domain_name"],
titleTemplate: websiteResults["title_template"],
applicationName: websiteResults["application_name"],
colors: {
primary: websiteResults["primary_color"],
secondary: websiteResults["secondary_color"]
},
author: {
name: websiteResults["author_name"],
url: websiteResults["author_url"]
},
owner: websiteResults["owner"],
designer: websiteResults["designer"],
developer: websiteResults["developer"],
copyright: websiteResults["copyright"],
twitter: {
id: websiteResults["twitter_id"],
handle: websiteResults["twitter_handle"]
}
};
const blogResults = result["Blog_Settings"];
const blogSettings: BlogSettings = {
enabled: blogResults["enabled"],
title: blogResults["title"],
subtext: blogResults["subtext"],
indexRouteTemplate: blogResults["index_route_template"],
blogRouteTemplate: blogResults["blog_route_template"]
};
const projectResults = result["Project_Settings"];
const projectSettings: ProjectSettings = {
enabled: projectResults["enabled"],
title: projectResults["title"],
subtext: projectResults["subtext"],
indexRouteTemplate: projectResults["index_route_template"],
projectRouteTemplate: projectResults["project_route_template"]
};
const photoResults = result["Photo_Settings"];
const photoSettings: WebsitePhotoSettings = {
enabled: photoResults["enabled"],
categoryIndex: {
indexRouteTemplate: photoResults["categories_index_route_template_url"]
},
category: {
routeTemplate: photoResults["category_route_template_url"],
perPage: photoResults["albums_per_category_page"],
icons: {
photos: {
url: photoResults["category_icons"]["photos_icon"]["filename_download"],
height: photoResults["category_icons"]["photos_icon"]["height"],
width: photoResults["category_icons"]["photos_icon"]["width"]
},
location: {
url: photoResults["category_icons"]["location_icon"]["filename_download"],
height: photoResults["category_icons"]["location_icon"]["height"],
width: photoResults["category_icons"]["location_icon"]["width"]
},
date: {
url: photoResults["category_icons"]["date_icon"]["filename_download"],
height: photoResults["category_icons"]["date_icon"]["height"],
width: photoResults["category_icons"]["date_icon"]["width"]
}
}
},
album: {
routeTemplate: photoResults["album_route_template_url"],
perPage: photoResults["photos_per_album_page"]
},
photo: {
routeTemplate: photoResults["photo_route_template_url"],
icons: {
previous: {
url: photoResults["photo_icons"]["previous_icon"]["filename_download"],
height: photoResults["photo_icons"]["previous_icon"]["height"],
width: photoResults["photo_icons"]["previous_icon"]["width"]
},
next: {
url: photoResults["photo_icons"]["next_icon"]["filename_download"],
height: photoResults["photo_icons"]["next_icon"]["height"],
width: photoResults["photo_icons"]["next_icon"]["width"]
},
close: {
url: photoResults["photo_icons"]["close_icon"]["filename_download"],
height: photoResults["photo_icons"]["close_icon"]["height"],
width: photoResults["photo_icons"]["close_icon"]["width"]
},
download: {
url: photoResults["photo_icons"]["download_icon"]["filename_download"],
height: photoResults["photo_icons"]["download_icon"]["height"],
width: photoResults["photo_icons"]["download_icon"]["width"]
}
}
}
};
const sitemapResults = result["Sitemap_Settings"];
const sitemapSettings: SitemapSettings = {
perPage: sitemapResults["per_page"]
};
const pluginResults = result["Plugin_Settings"];
const pluginSettings: PluginSettings = {
swetrix: {
id: pluginResults["swetrix_id"],
url: pluginResults["swetrix_url"]
}
}
if (pluginResults["swetrix_id"] === null && pluginResults["swetrix_url"] === null) {
pluginSettings.swetrix = null;
}
return {
website: websiteSettings,
blog: blogSettings,
project: projectSettings,
photo: photoSettings,
sitemap: sitemapSettings,
plugins: pluginSettings
}
}

8
astro/src/env.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
interface ImportMetaEnv {
readonly DIRECTUS_TOKEN: string;
readonly DIRECTUS_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}

5
astro/src/graphql.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
declare module '*.graphql' {
import { DocumentNode } from 'graphql';
const Schema: DocumentNode;
export default Schema;
}

View File

@@ -0,0 +1,124 @@
query getAllSettings {
Website_Settings {
id,
date_created,
date_updated,
domain_name,
title_template,
application_name,
primary_color,
secondary_color,
author_name,
author_url,
designer,
developer,
owner,
copyright,
twitter_id,
twitter_handle
},
Blog_Settings {
id,
date_created,
date_updated,
enabled,
title,
subtext,
index_route_template,
blog_route_template
},
Project_Settings {
id,
date_created,
date_updated,
enabled,
title,
subtext,
index_route_template,
project_route_template
},
Photo_Settings {
id,
date_created,
date_updated,
enabled,
categories_index_route_template_url,
category_route_template_url,
albums_per_category_page,
category_icons {
id,
date_created,
date_updated,
photos_icon {
id,
created_on,
filename_download,
width,
height
},
location_icon {
id,
created_on,
filename_download,
width,
height
},
date_icon {
id,
created_on,
filename_download,
width,
height
}
},
album_route_template_url,
photos_per_album_page,
photo_route_template_url,
photo_icons {
id,
date_created,
date_updated,
previous_icon {
id,
created_on,
filename_download,
width,
height
},
next_icon {
id,
created_on,
filename_download,
width,
height
},
close_icon {
id,
created_on,
filename_download,
width,
height
},
download_icon {
id,
created_on,
filename_download,
width,
height
}
}
},
Sitemap_Settings {
id,
date_created,
date_updated,
per_page
},
Plugin_Settings {
id,
date_created,
date_updated,
swetrix_id,
swetrix_url
}
}

View File

@@ -0,0 +1,9 @@
import { createDirectus, graphql, staticToken } from "@directus/sdk";
export async function createDirectusConnection() {
const directus = await createDirectus(import.meta.env.DIRECTUS_URL)
.with(graphql())
.with(staticToken(import.meta.env.DIRECTUS_TOKEN));
return directus;
}

View File

@@ -0,0 +1,20 @@
---
import { getSettings } from "@/content/settings/settings"
const settings = await getSettings();
console.log(settings);
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Astro</title>
</head>
<body>
<h1>Astro</h1>
</body>
</html>

View File

@@ -0,0 +1 @@
@import "tailwindcss";

5
astro/src/types/common/images.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
type PhotoProps = {
url: string;
width: number;
height: number;
}

9
astro/src/types/settings/blog.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
type BlogSettings = {
enabled: string;
title: string;
subtext: string | null;
indexRouteTemplate: string;
blogRouteTemplate: string;
}

37
astro/src/types/settings/photo.d.ts vendored Normal file
View File

@@ -0,0 +1,37 @@
type WebsitePhotoSettings = {
enabled: boolean;
categoryIndex: WebsitePhotoSettingsCategoryIndex;
category: WebsitePhotoSettingsCategory;
album: WebsitePhotoSettingsAlbum;
photo: WebsitePhotoSettingsPhoto;
}
type WebsitePhotoSettingsCategoryIndex = {
indexRouteTemplate: string;
}
type WebsitePhotoSettingsCategory = {
routeTemplate: string;
perPage: number;
icons: {
photos: PhotoProps;
location: PhotoProps;
date: PhotoProps;
}
}
type WebsitePhotoSettingsAlbum = {
routeTemplate: string;
perPage: number;
}
type WebsitePhotoSettingsPhoto = {
routeTemplate: string;
icons: {
previous: PhotoProps;
next: PhotoProps;
close: PhotoProps;
download: PhotoProps;
}
}

8
astro/src/types/settings/plugin.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
type PluginSettings = {
swetrix: PluginSettingsSwetrix | null;
}
type PluginSettingsSwetrix = {
id: string | null;
url: string | null;
}

9
astro/src/types/settings/project.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
type ProjectSettings = {
enabled: string;
title: string;
subtext: string | null;
indexRouteTemplate: string;
projectRouteTemplate: string;
}

8
astro/src/types/settings/setting.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
type GlobalSettings = {
website: WebsiteSettings;
blog: BlogSettings;
project: ProjectSettings;
photo: WebsitePhotoSettings;
sitemap: SitemapSettings;
plugins: PluginSettings;
}

3
astro/src/types/settings/sitemap.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
type SitemapSettings = {
perPage: number;
}

32
astro/src/types/settings/website.d.ts vendored Normal file
View File

@@ -0,0 +1,32 @@
type WebsiteSettings = {
domainName: string;
titleTemplate: string;
applicationName: string;
colors: WebsiteSettingsColors;
author: WebsiteSettingsAuthor;
owner: string;
designer: string;
developer: string;
copyright: string;
twitter: WebsiteSettingsTwitter;
}
type WebsiteSettingsColors = {
primary: string;
secondary: string | null;
}
type WebsiteSettingsAuthor = {
name: string;
url: string;
}
type WebsiteSettingsTwitter = {
id: string;
handle: string;
}

17
astro/tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"paths": {
"@/*": ["./src/*"]
}
}
}