Admin Panel: - User Detail Modal with full profile info - Bulk tier upgrade for multiple users - User export to CSV - Price Alerts overview tab - Domain Health Check trigger - Email Test functionality - Scheduler Status with job info and last runs - Activity Log for admin actions - Blog management tab with CRUD Blog System: - BlogPost model with full content management - Public API: list, featured, categories, single post - Admin API: create, update, delete, publish/unpublish - Frontend blog listing page with categories - Frontend blog detail page with styling - View count tracking OAuth: - Google OAuth integration - GitHub OAuth integration - OAuth callback handling - Provider selection on login/register Other improvements: - Domain checker with check_all_domains function - Admin activity logging - Breadcrumbs component - Toast notification component - Various UI/UX improvements
268 lines
8.7 KiB
TypeScript
268 lines
8.7 KiB
TypeScript
'use client'
|
|
|
|
import { useEffect, useState } from 'react'
|
|
import { useParams, useRouter } from 'next/navigation'
|
|
import Link from 'next/link'
|
|
import Image from 'next/image'
|
|
import { Header } from '@/components/Header'
|
|
import { Footer } from '@/components/Footer'
|
|
import { api } from '@/lib/api'
|
|
import {
|
|
Calendar,
|
|
Clock,
|
|
Eye,
|
|
ArrowLeft,
|
|
Tag,
|
|
Loader2,
|
|
User,
|
|
Share2,
|
|
BookOpen,
|
|
} from 'lucide-react'
|
|
|
|
interface BlogPost {
|
|
id: number
|
|
title: string
|
|
slug: string
|
|
excerpt: string | null
|
|
content: string
|
|
cover_image: string | null
|
|
category: string | null
|
|
tags: string[]
|
|
meta_title: string | null
|
|
meta_description: string | null
|
|
is_published: boolean
|
|
published_at: string | null
|
|
created_at: string
|
|
updated_at: string
|
|
view_count: number
|
|
author: {
|
|
id: number
|
|
name: string | null
|
|
}
|
|
}
|
|
|
|
export default function BlogPostPage() {
|
|
const params = useParams()
|
|
const router = useRouter()
|
|
const slug = params.slug as string
|
|
|
|
const [post, setPost] = useState<BlogPost | null>(null)
|
|
const [loading, setLoading] = useState(true)
|
|
const [error, setError] = useState<string | null>(null)
|
|
|
|
useEffect(() => {
|
|
if (slug) {
|
|
loadPost()
|
|
}
|
|
}, [slug])
|
|
|
|
const loadPost = async () => {
|
|
setLoading(true)
|
|
setError(null)
|
|
try {
|
|
const data = await api.getBlogPost(slug)
|
|
setPost(data)
|
|
} catch (err) {
|
|
setError('Blog post not found')
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
const formatDate = (dateString: string) => {
|
|
return new Date(dateString).toLocaleDateString('en-US', {
|
|
year: 'numeric',
|
|
month: 'long',
|
|
day: 'numeric',
|
|
})
|
|
}
|
|
|
|
const estimateReadTime = (content: string) => {
|
|
const words = content.split(/\s+/).length
|
|
const minutes = Math.ceil(words / 200)
|
|
return `${minutes} min read`
|
|
}
|
|
|
|
const handleShare = async () => {
|
|
if (navigator.share) {
|
|
try {
|
|
await navigator.share({
|
|
title: post?.title,
|
|
url: window.location.href,
|
|
})
|
|
} catch (err) {
|
|
// User cancelled or error
|
|
}
|
|
} else {
|
|
// Fallback: copy to clipboard
|
|
navigator.clipboard.writeText(window.location.href)
|
|
}
|
|
}
|
|
|
|
if (loading) {
|
|
return (
|
|
<div className="min-h-screen bg-background flex items-center justify-center">
|
|
<Loader2 className="w-8 h-8 text-accent animate-spin" />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
if (error || !post) {
|
|
return (
|
|
<div className="min-h-screen bg-background flex flex-col">
|
|
<Header />
|
|
<main className="flex-1 flex items-center justify-center px-4">
|
|
<div className="text-center max-w-md">
|
|
<BookOpen className="w-16 h-16 text-foreground-subtle mx-auto mb-6" />
|
|
<h1 className="text-2xl font-display text-foreground mb-4">Post Not Found</h1>
|
|
<p className="text-foreground-muted mb-6">
|
|
The blog post you're looking for doesn't exist or has been removed.
|
|
</p>
|
|
<Link
|
|
href="/blog"
|
|
className="inline-flex items-center gap-2 px-6 py-3 bg-foreground text-background rounded-lg font-medium"
|
|
>
|
|
<ArrowLeft className="w-4 h-4" />
|
|
Back to Blog
|
|
</Link>
|
|
</div>
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-background relative overflow-hidden">
|
|
{/* Background Effects */}
|
|
<div className="fixed inset-0 pointer-events-none">
|
|
<div className="absolute top-[-20%] left-1/2 -translate-x-1/2 w-[1200px] h-[800px] bg-accent/[0.03] rounded-full blur-[120px]" />
|
|
</div>
|
|
|
|
<Header />
|
|
|
|
<main className="relative flex-1 pt-32 sm:pt-40 pb-20 sm:pb-28 px-4 sm:px-6">
|
|
<article className="max-w-3xl mx-auto">
|
|
{/* Back Link */}
|
|
<Link
|
|
href="/blog"
|
|
className="inline-flex items-center gap-2 text-foreground-muted hover:text-foreground transition-colors mb-8"
|
|
>
|
|
<ArrowLeft className="w-4 h-4" />
|
|
<span className="text-sm font-medium">Back to Blog</span>
|
|
</Link>
|
|
|
|
{/* Header */}
|
|
<header className="mb-12">
|
|
{post.category && (
|
|
<span className="inline-block px-3 py-1 bg-accent/10 text-accent text-sm font-medium rounded-full mb-6">
|
|
{post.category}
|
|
</span>
|
|
)}
|
|
|
|
<h1 className="font-display text-[2rem] sm:text-[2.75rem] md:text-[3.25rem] leading-[1.1] tracking-[-0.03em] text-foreground mb-6">
|
|
{post.title}
|
|
</h1>
|
|
|
|
{/* Meta */}
|
|
<div className="flex flex-wrap items-center gap-4 text-sm text-foreground-muted">
|
|
{post.author.name && (
|
|
<span className="flex items-center gap-2">
|
|
<User className="w-4 h-4" />
|
|
{post.author.name}
|
|
</span>
|
|
)}
|
|
<span className="flex items-center gap-2">
|
|
<Calendar className="w-4 h-4" />
|
|
{post.published_at ? formatDate(post.published_at) : formatDate(post.created_at)}
|
|
</span>
|
|
<span className="flex items-center gap-2">
|
|
<Clock className="w-4 h-4" />
|
|
{estimateReadTime(post.content)}
|
|
</span>
|
|
<span className="flex items-center gap-2">
|
|
<Eye className="w-4 h-4" />
|
|
{post.view_count} views
|
|
</span>
|
|
<button
|
|
onClick={handleShare}
|
|
className="flex items-center gap-2 text-foreground-muted hover:text-accent transition-colors ml-auto"
|
|
>
|
|
<Share2 className="w-4 h-4" />
|
|
Share
|
|
</button>
|
|
</div>
|
|
</header>
|
|
|
|
{/* Cover Image */}
|
|
{post.cover_image && (
|
|
<div className="relative aspect-[16/9] rounded-2xl overflow-hidden mb-12 bg-background-secondary">
|
|
<Image
|
|
src={post.cover_image}
|
|
alt={post.title}
|
|
fill
|
|
className="object-cover"
|
|
priority
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{/* Content */}
|
|
<div
|
|
className="prose prose-invert prose-lg max-w-none
|
|
prose-headings:font-display prose-headings:tracking-tight
|
|
prose-h2:text-2xl prose-h2:mt-12 prose-h2:mb-4
|
|
prose-h3:text-xl prose-h3:mt-8 prose-h3:mb-3
|
|
prose-p:text-foreground-muted prose-p:leading-relaxed
|
|
prose-a:text-accent prose-a:no-underline hover:prose-a:underline
|
|
prose-strong:text-foreground prose-strong:font-semibold
|
|
prose-code:text-accent prose-code:bg-background-secondary prose-code:px-1.5 prose-code:py-0.5 prose-code:rounded
|
|
prose-pre:bg-background-secondary prose-pre:border prose-pre:border-border
|
|
prose-blockquote:border-l-accent prose-blockquote:bg-accent/5 prose-blockquote:py-2 prose-blockquote:px-6 prose-blockquote:rounded-r-lg
|
|
prose-ul:text-foreground-muted prose-ol:text-foreground-muted
|
|
prose-li:marker:text-accent
|
|
"
|
|
dangerouslySetInnerHTML={{ __html: post.content }}
|
|
/>
|
|
|
|
{/* Tags */}
|
|
{post.tags.length > 0 && (
|
|
<div className="mt-12 pt-8 border-t border-border">
|
|
<div className="flex items-center gap-2 flex-wrap">
|
|
<Tag className="w-4 h-4 text-foreground-subtle" />
|
|
{post.tags.map((tag) => (
|
|
<Link
|
|
key={tag}
|
|
href={`/blog?tag=${encodeURIComponent(tag)}`}
|
|
className="px-3 py-1 bg-background-secondary border border-border rounded-full text-sm text-foreground-muted hover:text-foreground hover:border-accent/30 transition-all"
|
|
>
|
|
{tag}
|
|
</Link>
|
|
))}
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* CTA */}
|
|
<div className="mt-16 p-8 bg-gradient-to-br from-accent/10 to-accent/5 border border-accent/20 rounded-2xl text-center">
|
|
<h3 className="text-xl font-display text-foreground mb-3">
|
|
Ready to start hunting domains?
|
|
</h3>
|
|
<p className="text-foreground-muted mb-6">
|
|
Join thousands of domain hunters using pounce to find and secure premium domains.
|
|
</p>
|
|
<Link
|
|
href="/register"
|
|
className="inline-flex items-center gap-2 px-6 py-3 bg-accent text-background rounded-xl font-medium hover:bg-accent-hover transition-all"
|
|
>
|
|
Get Started Free
|
|
</Link>
|
|
</div>
|
|
</article>
|
|
</main>
|
|
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|