-
Notifications
You must be signed in to change notification settings - Fork 98
/
types.d.ts
105 lines (98 loc) · 2.96 KB
/
types.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Copyright 2022 the Deno authors. All rights reserved. MIT license.
import type { ConnInfo, UnoConfig, VNode } from "./deps.ts";
export interface BlogContext {
state: BlogState;
connInfo: ConnInfo;
next: () => Promise<Response>;
}
export interface BlogMiddleware {
(req: Request, ctx: BlogContext): Promise<Response>;
}
type DateFormat = (date: Date) => string;
export interface BlogSettings {
/** The blog title */
title?: string;
/** The blog description */
description?: string;
/** URL to avatar. Can be relative. */
avatar?: string;
/** CSS classes to use with the avatar. */
avatarClass?: string;
/** URL to background cover. Can be relative. */
cover?: string;
/** Color of the text that goes on the background cover. */
coverTextColor?: string;
/** The author of the blog. Can be overridden by respective post settings. */
author?: string;
/** Social links */
links?: {
/** The link title */
title: string;
/** The link */
url: string;
/** The element to use as the icon of the link */
icon?: VNode;
/** The link target */
target?: "_self" | "_blank" | "_parent" | "_top";
}[];
/** The element ot use as header */
header?: VNode;
/** Whether to show the header on post pages */
showHeaderOnPostPage?: boolean;
/** The element to use as section. Access to Post props. */
section?: (post: Post) => VNode;
/** The element to use as footer */
footer?: VNode;
/** Custom CSS */
style?: string;
/** URL to open graph image. Can be relative. */
ogImage?: string | {
url: string;
twitterCard: "summary" | "summary_large_image" | "app" | "player";
};
/** Functions that are called before rendering and can modify the content or make other changes. */
middlewares?: BlogMiddleware[];
/** The ISO code of the language the blog is in */
lang?: string;
/** Date appearance */
dateFormat?: DateFormat;
/** The canonical URL of the blog */
canonicalUrl?: string;
/** UnoCSS configuration */
unocss?: UnoConfig;
/** Color scheme */
theme?: "dark" | "light" | "auto";
/**
* URL to favicon. Can be relative.
* Supports dark and light mode variants through "prefers-color-scheme".
*/
favicon?: string | { light?: string; dark?: string };
/** The port to serve the blog on */
port?: number;
/** The hostname to serve the blog on */
hostname?: string;
/** Whether to display readtime or not */
readtime?: boolean;
/** The root directory of the blog contents */
rootDirectory?: string;
}
export interface BlogState extends BlogSettings {
directory: string;
}
/** Represents a Post in the Blog. */
export interface Post {
pathname: string;
markdown: string;
title: string;
publishDate: Date;
author?: string;
snippet?: string;
coverHtml?: string;
/** An image URL which is used in the OpenGraph og:image tag. */
ogImage?: string;
tags?: string[];
allowIframes?: boolean;
disableHtmlSanitization?: boolean;
readTime: number;
renderMath?: boolean;
}