144 lines
4.9 KiB
TypeScript

"use client"
import { useEffect, useState } from "react"
import dynamic from "next/dynamic"
import strings from "@/strings.json"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
import { Button } from "@/components/ui/button"
import { Textarea } from "@/components/ui/textarea"
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"
import { Card, CardContent, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"
const MDEditor = dynamic(() => import("@uiw/react-md-editor"), {
ssr: false
})
import "@uiw/react-md-editor/markdown-editor.css"
import "@uiw/react-markdown-preview/markdown.css"
export default function CreatePost() {
const [title, setTitle] = useState("")
const [description, setDescription] = useState("")
const [category, setCategory] = useState("")
const [slug, setSlug] = useState("")
const [content, setContent] = useState("")
const [categories, setCategories] = useState<{ id: string; slug: string; name: string }[]>([])
const handleEditorChange = (value: string | undefined) => {
setContent(value || "")
}
const handleSubmit = async (e: React.FormEvent) => {
const date = Math.floor(Date.now() / 1000);
e.preventDefault()
try {
const response = await fetch('http://localhost:3001/api/posts/new', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ title, description, category, slug, content, date }),
});
if (!response.ok) {
throw new Error(strings.errorsCreatePostFail);
}
const data = await response.json();
console.log(`${strings.successSuperGeneric}: ${data}`);
} catch (error) {
console.error(`${strings.errorsSuperGeneric}: ${error}`);
}
console.log({ title, description, category, slug, content, date })
}
useEffect(() => {
console.log(strings.logsFetchCategoryList);
fetch('http://localhost:3001/api/categories/fetchList')
.then(response => response.json())
.then(data => {
if (!data.categories) {
throw new Error(strings.errorsFetchCategoryListFail);
}
console.log(strings.logsOnFetchedCategory);
setCategories(data.categories);
})
.catch(error => {
console.error(error);
});
}, []);
return (
<div className="space-y-8">
<h1 className="text-4xl font-bold text-primary">{strings.adminNewPostHeader}</h1>
<Card>
<form onSubmit={handleSubmit}>
<CardHeader>
<CardTitle>{strings.newPostCardTitle}</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="space-y-2">
<Label htmlFor="title">{strings.newPostTitleFieldLabel}</Label>
<Input
id="title"
value={title}
onChange={(e) => setTitle(e.target.value)}
placeholder={strings.newPostTitleFieldPlaceholder}
/>
</div>
<div className="space-y-2">
<Label htmlFor="description">{strings.newPostDescriptionFieldLabel}</Label>
<Textarea
id="description"
value={description}
onChange={(e) => setDescription(e.target.value)}
placeholder={strings.newPostDescriptionFieldPlaceholder}
/>
</div>
<div className="space-y-2">
<Label htmlFor="category">{strings.newPostCategoryFieldLabel}</Label>
<Select value={category} onValueChange={setCategory}>
<SelectTrigger>
<SelectValue placeholder={strings.newPostCategoryFieldPlaceholder} />
</SelectTrigger>
<SelectContent>
{categories.map((cat) => (
<SelectItem key={cat.id} value={cat.name}>
{cat.name}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
<div className="space-y-2">
<Label htmlFor="slug">{strings.newPostSlugFieldLabel}</Label>
<Input
id="slug"
value={slug}
onChange={(e) => {
const value = e.target.value.replace(/[^a-zA-Z0-9-]/g, "");
setSlug(value);
}}
placeholder={strings.newPostSlugFieldPlaceholder}
/>
</div>
<div className="space-y-2">
<Label>{strings.newPostContentFieldLabel}</Label>
<MDEditor
value={content}
onChange={handleEditorChange}
height={400}
/>
</div>
</CardContent>
<CardFooter>
<Button type="submit">{strings.createPostButtonText}</Button>
</CardFooter>
</form>
</Card>
</div>
)
}