WIP: blogging. you have a markdown editor with linking capabilities, along with the ability to view, edit, and create other blogs. #1

Draft
pure_sagacity wants to merge 5 commits from blogging into main
6 changed files with 206 additions and 13 deletions
Showing only changes of commit 87ef8e3579 - Show all commits
-3
View File
@@ -1,3 +0,0 @@
export default function ViewBlogPage() {
// This will take a blog id as a parameter and fetch the blog from the database using the get_blog_by_id command.
}
+173
View File
@@ -0,0 +1,173 @@
"use client";
import { useSearchParams } from "next/navigation";
import { useEffect, useState } from "react";
import { invoke } from "@tauri-apps/api/core";
import Link from "next/link";
import { HomelabApp, Blog } from "@/types";
export default function WritePage() {
const params = useSearchParams();
const blogId = params.get("id") || null;
if (!blogId) {
return (
<div className="flex items-center justify-center min-h-100">
<span className="text-sm text-zinc-400 animate-pulse">
No document ID provided.
</span>
</div>
);
}
const [blog, setBlog] = useState<Blog | null>(null);
const [linkedApps, setLinkedApps] = useState<HomelabApp[]>([]);
const [loading, setLoading] = useState<boolean>(true);
const [error, setError] = useState<string | null>(null);
useEffect(() => {
if (!blogId) return;
const fetchBlogAndApps = async () => {
try {
setLoading(true);
const currentBlog = (await invoke("get_blog", { id: blogId })) as
| Blog
| undefined;
if (!currentBlog) {
setError("Blog post not found.");
return;
}
setBlog(currentBlog);
// 2. Fetch the metadata for any bound/linked apps if they exist
if (currentBlog.reference && currentBlog.reference.length > 0) {
const apps = (await invoke("get_apps_by_id", {
ids: currentBlog.reference,
})) as HomelabApp[];
setLinkedApps(apps);
}
} catch (err) {
console.error("Failed to load blog page data:", err);
setError("An error occurred while loading the document.");
} finally {
setLoading(false);
}
};
fetchBlogAndApps();
}, [blogId]);
if (loading) {
return (
<div className="flex items-center justify-center min-h-100">
<span className="text-sm text-zinc-400 animate-pulse">
Loading document...
</span>
</div>
);
}
if (error || !blog) {
return (
<div className="p-6 text-center max-w-xl mx-auto mt-12 border border-red-200 bg-red-50/50 rounded-lg">
<p className="text-sm text-red-600 font-medium">
{error || "Something went wrong."}
</p>
<Link
href="/"
className="inline-block mt-4 text-xs font-semibold text-zinc-600 hover:text-zinc-800 underline"
>
Go Back Home
</Link>
</div>
);
}
return (
<div className="max-w-6xl mx-auto px-4 py-8 w-full flex flex-col gap-6">
{/* Top Header Controls */}
<div className="flex justify-between items-center pb-4 border-b border-zinc-100 gap-4">
<div>
<h1 className="text-2xl font-bold text-zinc-900 tracking-tight">
{blog.title || "Untitled Document"}
</h1>
</div>
<Link
href={`/write/edit/${blog.id}`}
className="px-4 py-1.5 bg-zinc-900 hover:bg-zinc-800 text-white font-medium text-sm rounded-md transition-colors shrink-0 flex items-center gap-1.5 shadow-sm"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="14"
height="14"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M12 20h9" />
<path d="M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4Z" />
</svg>
Edit Document
</Link>
</div>
{/* Main Reading Workspace Layout */}
<div className="grid grid-cols-1 md:grid-cols-4 gap-8 items-start">
{/* Left Side: Styled Canvas Viewport */}
<div className="md:col-span-3 border border-zinc-100 rounded-xl p-6 md:p-8 bg-white shadow-sm min-h-[400px]">
{/* Using your exact editor style class 'prose max-w-none' to ensure uniform markdown formatting */}
<article
className="prose max-w-none text-zinc-800 prose-headings:text-zinc-900 prose-a:text-emerald-600 prose-strong:text-zinc-900"
dangerouslySetInnerHTML={{ __html: blog.content }}
/>
</div>
{/* Right Side: Associated Connected Homelab Apps */}
{linkedApps.length > 0 && (
<div className="md:col-span-1 bg-zinc-50 border border-zinc-200/60 rounded-xl p-4 flex flex-col gap-3 sticky top-4">
<div>
<h3 className="font-semibold text-zinc-700 text-xs uppercase tracking-wider">
Linked Assets
</h3>
<p className="text-[11px] text-zinc-400 mt-0.5">
Infrastructure context bound to this document.
</p>
</div>
<div className="flex flex-col gap-2 mt-1">
{linkedApps.map((app) => (
<div
key={app.id}
className="w-full bg-white border border-zinc-200 p-3 rounded-lg shadow-2vsm"
>
<div className="font-semibold text-xs text-zinc-800 flex items-center justify-between">
<span className="truncate">{app.name}</span>
<span
className="h-1.5 w-1.5 rounded-full bg-emerald-500 shrink-0 ml-1"
title="Bound asset"
/>
</div>
<div className="text-[10px] text-zinc-400 font-mono truncate mt-0.5 selection:bg-zinc-100">
{app.address}
</div>
{app.description && (
<div className="text-[11px] text-zinc-500 mt-1.5 line-clamp-2 border-t border-zinc-50 pt-1.5">
{app.description}
</div>
)}
</div>
))}
</div>
</div>
)}
</div>
</div>
);
}
+1 -8
View File
@@ -4,14 +4,7 @@ import { useEffect, useState, Suspense } from "react";
import { useSearchParams } from "next/navigation";
import { invoke } from "@tauri-apps/api/core";
import TextEditor from "@/components/text-editor";
import { HomelabApp } from "@/types";
// Create a type for the Blog returned by your Rust backend
interface Blog {
id: string;
title: string;
content: string;
}
import { HomelabApp, Blog } from "@/types";
function WritePageContent() {
const searchParams = useSearchParams();
+1 -1
View File
@@ -34,7 +34,7 @@ export default function BlogCard({ blog }: BlogCardProps) {
return (
<div
className="group flex flex-col justify-between p-6 border border-slate-200/80 rounded-2xl bg-gradient-to-b from-white to-slate-50/50 dark:from-slate-900 dark:to-slate-950 text-card-foreground shadow-sm hover:shadow-xl hover:-translate-y-1 hover:border-emerald-600/40 transition-all duration-300 h-64 relative overflow-hidden"
onClick={() => router.push(`/write/${blog.id}`)}
onClick={() => router.push(`/write/edit?id=${blog.id}`)}
>
{/* Decorative background glow that triggers on hover */}
<div className="absolute -right-10 -top-10 w-24 h-24 bg-emerald-500/10 rounded-full blur-2xl group-hover:bg-emerald-500/20 transition-all duration-500" />
+10
View File
@@ -154,3 +154,13 @@ pub fn get_apps_by_ids(conn: &mut SqliteConnection, ids: &[String]) -> Vec<model
.load::<models::App>(conn)
.expect("Error loading apps by ids")
}
pub fn get_blog_by_id(conn: &mut SqliteConnection, blog_id: &str) -> Option<models::Blog> {
use crate::db::schema::blog;
blog::table
.filter(blog::id.eq(blog_id))
.first::<models::Blog>(conn)
.optional()
.expect("Error loading blog by id")
}
+21 -1
View File
@@ -121,6 +121,25 @@ fn get_apps_by_id(ids: Vec<String>) -> Vec<App> {
db::get_apps_by_ids(&mut conn, &ids)
}
#[tauri::command]
fn get_blog(id: &str) -> Option<TempBlog> {
let mut conn = establish_connection();
let blog = db::get_blog_by_id(&mut conn, id);
blog.map(|b| {
let linked_app_ids: Option<Vec<String>> = match &b.reference {
Some(ids) => serde_json::from_str(ids).ok(),
None => None,
};
TempBlog {
id: b.id.clone(),
title: b.title.clone(),
content: b.content.clone(),
linked_app_ids,
}
})
}
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
tauri::Builder::default()
@@ -132,7 +151,8 @@ pub fn run() {
ping,
get_blogs,
save_blog,
get_apps_by_id
get_apps_by_id,
get_blog
])
.run(tauri::generate_context!())
.expect("error while running tauri application");