-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.d.ts
198 lines (162 loc) · 3.2 KB
/
index.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
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
//
// Root response object
//
export interface CommandResponse {
action?: Action;
view?: View;
config?: Config;
tokens?: Token[];
inputPlaceholder?: string;
}
//
// Action
//
export type Action =
| ActionOpenURL
| ActionPaste
| ActionCopy
| ActionShowToast
| ActionMove;
export interface ActionOpenURL {
type: "open-url";
url: string | string[];
}
export interface ActionPaste {
type: "paste";
value: string;
}
export interface ActionCopy {
type: "copy";
value: string;
}
export interface ActionShowToast {
type: "show-toast";
message: string;
}
export interface ActionMoveAddParam {
type: "add-param";
name: string;
value: string;
}
export type ActionMove = ActionMoveAddParam;
//
// View
//
export type View = string | List | Masonry | Form;
export interface List {
type: "list";
options: ListOption[];
groups?: Group[];
ranking?: Ranking;
}
export interface ListOption {
title: string;
subtitle?: string | string[];
icon?: Icon;
action: OptionMainAction;
moveAction?: ActionMove;
group?: string;
}
export type OptionMainAction =
| Action
| {
action: Action;
label?: string;
tooltip?: string;
icon?: Icon;
};
export type Group = string | GroupObject;
export interface GroupObject {
id: string;
title: string;
}
export type Ranking = boolean;
export interface Masonry {
type: "masonry";
options: MasonryOption[];
}
export type MasonryOption = Pick<ListOption, "action" | "moveAction"> & {
imageURL: string;
};
export interface Form {
type: "form";
fields: FormFields;
title?: string;
submitLabel?: string;
cancelLabel?: string;
method?: "get" | "post";
error?: string | null;
}
export type FormValues = {
[x: string]: string | number | boolean | string[];
};
export type FormFields = Array<FormField | FormField[]>;
export type FormField = TextField | ToggleField | SelectField | DateField;
export interface BaseField {
id: string;
required?: boolean;
label: string;
defaultValue?: unknown | null;
error?: string | null;
helpText?: string | null;
}
export interface TextField extends BaseField {
type: "text";
placeholder?: string;
defaultValue?: string | null;
multiline?: boolean;
}
export interface ToggleField extends BaseField {
type: "toggle";
defaultValue?: boolean | null;
}
export interface SelectField extends BaseField {
type: "select";
options: SelectOption[];
multiple?: boolean;
placeholder?: string;
defaultValue?: string | string[] | null;
}
export type SelectOption = string | { label: string; value: string };
export interface DateField extends BaseField {
type: "date";
timeSelect?: boolean;
defaultValue?: string | null;
}
//
// Icon
//
export type IconPadding =
| "slapdash-system"
| "none"
| "material-system"
| "edge-to-edge";
export type Icon =
| string
| {
src: string;
padding?: IconPadding;
}
| {
light: string;
dark: string;
padding?: IconPadding;
}
| {
monochrome: string;
padding?: IconPadding;
};
//
// Config
//
export interface Config {
form: Pick<Form, "fields" | "error">;
}
//
// Token
//
export interface Token {
paramName: string;
label?: string;
icon?: Icon;
}