thomaswilson-sveltekit/src/routes/blog/new/+page.svelte
2025-01-16 19:56:49 +00:00

134 lines
2.9 KiB
Svelte

<script lang="ts">
import { format as formatDate } from "date-fns";
import { BlogPost } from "$lib/blog/BlogPost.js";
let title = $state("");
let author = $state("Thomas Wilson");
let date = new Date();
let content = $state("");
let slug = $state("");
let blogPost: BlogPost | null = null;
function slugifyString(originalString: string): string {
return originalString
.toLowerCase()
.replaceAll(/ /g, "-")
.replaceAll(/[^a-zA-Z0-9-]+/g, "")
.replaceAll(/-+/g, "-");
}
function handleTitleChange() {
const dateAsString = formatDate(date, "yyyy-MM-dd");
const slugifiedTitle = slugifyString(title);
slug = `${dateAsString}-${slugifiedTitle}`;
}
</script>
<section class="new-blog-post">
<a href="/blog">Back to Blog</a>
<h1>New Blog Post</h1>
<form method="POST" action="/blog/new">
<div class="field">
<label class="field__label" for="title">Title</label>
<input
type="text"
id="title"
name="title"
required
bind:value={title}
onchange={handleTitleChange}
/>
</div>
<div class="field">
<label class="field__label" for="author">Author</label>
<input
type="text"
name="author"
id="author"
required
bind:value={author}
/>
</div>
<div class="field">
<label class="field__label" for="slug">Slug</label>
<input type="text" name="slug" id="slug" required bind:value={slug} />
</div>
<div class="field">
<label class="field__label" for="content">Content</label>
<textarea
name="content"
id="content"
rows="10"
cols="50"
bind:value={content}
></textarea>
</div>
<div class="submit">
<button type="submit" class="create-button">Publish</button>
</div>
</form>
</section>
{#if blogPost}
<section class="preview">
<h2>Preview</h2>
<article>
{@html blogPost.html}
</article>
</section>
{/if}
<style>
section {
--gap: 8px;
--padding: 8px;
--padding-md: 16px;
}
.new-blog-post {
display: grid;
grid-template-columns: 100%;
grid-template-rows: min-content min-content min-content 1fr;
gap: var(--gap);
place-items: center;
}
.field {
width: 100%;
max-width: 600px;
display: flex;
flex-direction: column;
}
.field__label {
font-family: var(--font-family-title);
font-size: 1.15rem;
color: var(--grey-600);
}
.create-button {
background-color: var(--brand-orange);
color: var(--white);
border: none;
border-radius: 4px;
padding: var(--padding) var(--padding-md);
font-family: var(--font-family-title);
font-size: 1.15rem;
cursor: pointer;
}
.preview {
display: grid;
grid-template-columns: 100%;
grid-template-rows: min-content 1fr;
gap: var(--gap);
place-items: center;
}
.preview article {
width: 100%;
max-width: 65ch;
}
</style>