feat(app): changelog version number editable
All checks were successful
Build and Push Docker Image / tests (push) Successful in 2m13s
Build and Push Docker Image / build (push) Successful in 5m21s

This commit is contained in:
Lars Hampe 2024-11-02 20:08:04 +01:00
parent 37be3bc1f5
commit 000a76d28d
3 changed files with 18 additions and 1 deletions

View File

@ -62,6 +62,7 @@ export const updateFunc = async ({
const [versionUpdateResult] = await db
.update(changelog_version)
.set({
version: payload.version,
status: payload.status,
markdown: payload.markdown,
releasedAt: payload.releasedAt ? new Date(payload.releasedAt) : null,

View File

@ -8,6 +8,7 @@ import {
FormItem,
FormLabel,
FormMessage,
Input,
Popover,
PopoverContent,
PopoverTrigger,
@ -55,6 +56,7 @@ const Component = () => {
const { data, error, isPending, refetch } = useChangelogVersionById({
id: versionId,
})
const form = useForm<z.infer<typeof VersionUpdateInput>>({
resolver: zodResolver(VersionUpdateInput),
defaultValues: data,
@ -93,12 +95,25 @@ const Component = () => {
<Separator />
{!isPending && data && (
<div>
<h1 className="text-xl mb-2">Version: {data.version}</h1>
<Form {...form}>
<form
onSubmit={form.handleSubmit(onSubmit)}
className="space-y-8 max-w-screen-md"
>
<FormField
control={form.control}
name="version"
render={({ field }) => (
<FormItem>
<FormLabel>Version</FormLabel>
<FormControl>
<Input placeholder="v1.0.1" {...field} />
</FormControl>{' '}
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="markdown"

View File

@ -4,6 +4,7 @@ import { VersionOutput } from './base'
export const VersionUpdateOutput = VersionOutput
export const VersionUpdateInput = z
.object({
version: z.string(),
markdown: z.string().optional(),
status: z
.enum(['draft', 'review', 'published'])