-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtypes.ts
210 lines (173 loc) · 4.91 KB
/
types.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
import type Collection from "./core/collection.ts";
import type Document from "./core/document.ts";
import type Upload from "./core/upload.ts";
/** Generic data to store */
export type Data = Record<string, unknown>;
export interface EntryMetadata {
label: string;
name: string;
src: string;
}
export interface SiteInfo {
name: string;
description?: string;
url?: string;
body?: string;
}
/** A storage mechanism for data */
export interface Storage extends AsyncIterable<EntryMetadata> {
name(name: string): string;
get(name: string): Entry;
directory(name: string): Storage;
delete(name: string): Promise<void>;
rename(name: string, newName: string): Promise<void>;
}
export interface Entry {
src?: string;
metadata: EntryMetadata;
readData(): Promise<Data>;
writeData(content: Data): Promise<void>;
readFile(): Promise<File>;
writeFile(content: File): Promise<void>;
}
export interface Version {
name: string;
isCurrent: boolean;
isProduction: boolean;
}
export interface Versioning extends Iterable<Version> {
current(): Version;
create(id: string): void;
change(id: string): void;
publish(id: string): void;
delete(id: string): void;
}
/** A transformer to convert from/to Data */
export interface Transformer<T> {
toData(content: T): Data | Promise<Data>;
fromData(data: Data): T | Promise<T>;
}
export interface Field<T extends ResolvedField = ResolvedField, V = unknown> {
/** The name of the field */
name: string;
/** The type of the field */
type: string;
/** Default value when a new document is created */
value?: V;
/** Function to execute on init the field */
init?(
field: T,
content: CMSContent,
data?: Data,
): void | Promise<void>;
/** Function to transform the value before saved */
// deno-lint-ignore no-explicit-any
transform?(value: any): any;
}
export interface ResolvedField {
/** View name in which this field is visible */
view?: string;
/** Function to apply the changes in the data object */
applyChanges<T = this>(
data: Data,
changes: Data,
field: T,
document: Document,
content: CMSContent,
): void | Promise<void>;
}
/** A field definition to be used by the CMS */
export type FieldDefinition<
T extends ResolvedField & Field = ResolvedField & Field,
> = {
/** The tagName used in the HTML for the custom element */
tag: string;
/** The JavaScript import path for the custom element */
jsImport: string;
/** Function to execute on init the field definition */
init?(
field: T,
content: CMSContent,
): void | Promise<void>;
/** Function to apply the changes in the data object */
applyChanges(
data: Data,
changes: Data,
field: T,
document: Document,
content: CMSContent,
): void | Promise<void>;
transform?(value: T["value"]): T["value"] | unknown;
};
/** Option item for a select or datalist */
export type Option<T = string> = T | { value: T; label: string };
export interface ResolvedGroupField extends ResolvedField {
/** The fields that belong to this group */
fields: Lume.CMS.ResolvedField[];
}
/** Field visible in the UI */
export interface UIField<T extends ResolvedField = ResolvedField>
extends Field<T> {
/** The visible name in the UI. If it's not defined, the name option will be used. */
label?: string;
/** An optional description visible next to the label in the UI. */
description?: string;
/** View name in which this field is visible */
view?: string;
}
/** Field for input values */
export interface InputField<
T extends ResolvedField = ResolvedField,
A = Record<string, unknown>,
> extends UIField<T> {
attributes?: Prettify<InputAttributes & A>;
}
/** Field for groups */
export interface GroupField<T extends ResolvedField = ResolvedField>
extends UIField<T> {
/** The fields that belong to this group */
fields: Lume.CMS.Field[];
}
/** Common attributes for inputs */
export interface InputAttributes {
/** Whether the value is required or not */
required?: boolean;
/** The placeholder text */
placeholder?: string;
/** If it's true, the value can't be edited by the user */
readonly?: boolean;
[key: string]: unknown;
}
/** Pretty */
type Prettify<T> =
& {
[K in keyof T]: T[K];
}
// deno-lint-ignore ban-types
& {};
export type Labelizer = (
name: string,
prev?: (name: string) => string,
) => string;
export interface CMSContent {
basePath: string;
auth: boolean;
site: SiteInfo;
collections: Record<string, Collection>;
documents: Record<string, Document>;
uploads: Record<string, Upload>;
versioning?: Versioning;
data: Record<string, unknown>;
}
declare global {
namespace Lume.CMS {
type FieldStrings = `${string}:${" " | ""}${keyof Fields}${
| "!"
| ""}`;
export type Field =
| Fields[keyof Fields]
| ParentFields[keyof ParentFields]
| FieldStrings;
export type ResolvedField = ResolvedFields[keyof ResolvedFields];
}
}