You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
873 B
TypeScript
44 lines
873 B
TypeScript
import { SVGProps } from 'react'
|
|
import { z } from 'zod'
|
|
|
|
export type IconSvgProps = SVGProps<SVGSVGElement> & {
|
|
size?: number
|
|
}
|
|
|
|
const bookmark = {
|
|
name: z.string().nonempty(),
|
|
link: z.string().nonempty(),
|
|
description: z.string().nonempty(),
|
|
url: z.string().url().nonempty(),
|
|
category_id: z.number(),
|
|
}
|
|
|
|
export const bookmarkSchema = z.object({
|
|
id: z.number(),
|
|
...bookmark,
|
|
})
|
|
|
|
export const newBookmarkSchema = z.object({
|
|
...bookmark,
|
|
})
|
|
|
|
export type Bookmark = z.infer<typeof bookmarkSchema>
|
|
|
|
const bookmarkCategory = {
|
|
name: z.string().nonempty(),
|
|
}
|
|
|
|
export const bookmarkCategorySchema = z.object({
|
|
id: z.number(),
|
|
})
|
|
|
|
export const bookmarkCategoryWithBookmarksSchema = z.object({
|
|
id: z.number(),
|
|
...bookmarkCategory,
|
|
bookmark: bookmarkSchema.array(),
|
|
})
|
|
|
|
export type BookmarkCategoryWithBookmarks = z.infer<
|
|
typeof bookmarkCategoryWithBookmarksSchema
|
|
>
|