forked from withfig/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
287 lines (257 loc) · 9.19 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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
/** The Fig namespace */
declare namespace Fig {
/** Local device context about a plugin */
interface PluginContext {
/** The directory the plugin was installed in */
installDirectory: string;
}
/** Context used to generate shell source code in a dotfile */
interface DotfileCompilationContext {
/** Details about the plugin installation */
plugin: PluginContext;
/** The shell the plugin is being compiled for */
shell: Shell;
/** The operating system the plugin is being compiled for */
os: Os;
}
/**
* Function that compiles a context to a string-like result or block to be
* included in dotfiles
*/
type DotfileCompiler<T, S> = (_: T, __: { ctx: DotfileCompilationContext }) => S;
/** DeviceEnvironment mediates queries about the local device environment */
interface DeviceEnvironment {
/** Details about the plugin installation */
plugin: PluginContext;
/** A function to list the directories in a folder */
listFolder: (path: string) => Promise<string[]>;
}
type InstallationScriptCompiler<T> = (_: { ctx: DotfileCompilationContext }) => T;
type InstallationScript<T> = T | InstallationScriptCompiler<T>;
interface PluginInstallation {
/** Script to run before the plugin is sourced and before the configuration */
preScript?: InstallationScript<string>;
/** Script to run after the plugin is sourced and after the configuration */
postScript?: InstallationScript<string>;
/** A list of files to source in the shell */
sourceFiles?: InstallationScript<string[]>;
/** A list of directories to add to the shell's PATH */
pathDirectories?: InstallationScript<string[]>;
}
type PluginOrigin =
| "github"
| {
/** The github for the plugin in the format (owner/repo) */
github: string;
};
type BinaryDependency = {
type: "binary";
name: string;
};
type Dependency = BinaryDependency;
type Installation = PluginInstallation & {
/** Override the default installation script for the plugin with a custom one per shell */
[key in Shell]?: PluginInstallation;
} & {
/** The origin of the plugin */
origin: PluginOrigin;
/** Specify any dependencies the plugin has */
dependencies?: InstallationScript<Dependency[]>;
};
/** Current value of a field in a plugin configuration. */
type ConfigurationValue = unknown;
/** A dictionary of all configuration values for a plugin. */
type ConfigurationDictionary = Record<string, ConfigurationValue>;
/** Dynamically computes a result based on current configuration item values. */
type ConfigurationGenerator<T, S = {}> = (_: S & { config: ConfigurationDictionary }) => T;
type DeviceConfigurationGenerator<T> = ConfigurationGenerator<
T | Promise<T>,
{ env?: DeviceEnvironment }
>;
type UIType =
| "multiselect"
| "select"
| "multi-text"
| "text"
| "textarea"
| "checkbox"
| "toggle";
type NonEmpty<T extends unknown[]> = T & { 0: T[number] };
type Suggestions<T> = T[] | DeviceConfigurationGenerator<T[]>;
/** Multiselect UI item type */
type MultiselectUI<T> = T extends (infer S)[]
? {
interface: "multiselect";
/** Allow the user to create new options not in the list of options */
allowUserCreatedOptions?: true;
/** The default value of the multiselect field */
default: T;
/** A list of options to display in the multiselect field */
options: Suggestions<S | { option: S, displayName?: string, description?: string }>;
}
: never;
type SelectUI<T> = {
interface: "select";
/** Allow the user to create new options not in the list of options */
allowUserCreatedOptions?: true;
/** The default value of the select field */
default: T;
/** A list of options to display in the select field */
options: Suggestions<T | { option: T, displayName?: string; description?: string }>;
};
type TextUI<T> = {
interface: "text";
/** The default value of the text field */
default: T;
};
type MultiTextUI = {
interface: "multi-text";
/** The default value of the multi-text field */
default: string[];
};
interface BasicUI<T, U extends UIType> {
interface: U;
/** The default value of the UI */
default: T;
}
/**
* Get all ui's that support a value type of `T`.
* This enforces that, e.g. you can only use booleans with a toggle/checkbox UI.
* Gets all valid UIs that satisfy `{ value: T, interface: S }`
*/
type UI<V, U extends UIType = UIType> = Extract<
| MultiselectUI<V>
| SelectUI<V>
| BasicUI<boolean, "toggle">
| TextUI<string>
| TextUI<number>
| TextUI<string | null>
| TextUI<number | null>
| MultiTextUI
| BasicUI<string, "textarea">,
{
/** The default value of the UI */
default: V;
interface: U;
}
>;
/**
* Interface common to Configuration *items* and Configuration groups
* (which contain configuration items)
*/
interface ConfigurationInterface {
/** The name of the configuration to display in the interface */
displayName?: string;
/** A short description of the configuration */
description?: string;
/** A longer description or explanation of the configuration */
additionalDetails?: string;
/** Hide the configuration from the UI, also disables generation of the configuration */
hidden?: ConfigurationGenerator<boolean>;
/** Disable the configuration from the UI */
disabled?: ConfigurationGenerator<boolean>;
}
type EnvironmentVariableValue = null | string | string[];
type CompiledEnvironmentVariable =
| {
value: EnvironmentVariableValue;
concat?: boolean;
export?: boolean;
}
| EnvironmentVariableValue;
type EnvironmentVariableItemForType<V, U extends UIType> = ConfigurationInterface &
UI<V, U> & {
type: "environmentVariable";
name: string;
compile?: DotfileCompiler<V, CompiledEnvironmentVariable>;
/** Syntactic sugar to compile as environment variable vs shell variable. */
export?: boolean;
};
type ScriptItemForType<V, U extends UIType> = ConfigurationInterface &
UI<V, U> & {
name: string;
type: "script";
compile: DotfileCompiler<V, string>;
};
type ScriptItem =
| ScriptItemForType<string[], "multiselect">
| ScriptItemForType<string[], "multi-text">
| ScriptItemForType<boolean, "checkbox" | "toggle">
| ScriptItemForType<string, "select" | "text" | "textarea">
| ScriptItemForType<number, "select" | "text" | "textarea">
type EnvironmentVariableItem =
| EnvironmentVariableItemForType<string[], "multiselect">
| EnvironmentVariableItemForType<string[], "multi-text">
| EnvironmentVariableItemForType<boolean, "checkbox" | "toggle">
| EnvironmentVariableItemForType<string, "select" | "text" | "textarea">
| EnvironmentVariableItemForType<string | null, "select" | "text" | "textarea">
| EnvironmentVariableItemForType<number, "select" | "text" | "textarea">
| EnvironmentVariableItemForType<number | null, "select" | "text" | "textarea">
type ConfigurationItem = ScriptItem | EnvironmentVariableItem;
interface ConfigurationGroup extends ConfigurationInterface {
/** The name of the group to display in the interface */
displayName: string;
/** The children configuration items that are a part of the group */
configuration: ConfigurationItem[];
}
type PluginType = "shell";
type Shell = "zsh" | "bash" | "fish";
type Os = "linux" | "macos" | "windows" | "unknown";
type Author =
| string
| {
/** The name of the author */
name: string;
/** The Twitter handle of the author */
twitter?: string;
/** The GitHub username of the author */
github?: string;
};
type Category =
| "Completion"
| "Prompt"
| "Color"
| "Alias"
| "Convenience Function"
| "Productivity Hack"
| "Framework"
| "Other";
export interface Plugin {
/** The name of the plugin */
name: string;
/** The name of the plugin used in UI if defined */
displayName?: string;
/** The plugin type */
type?: PluginType;
/** A description of the plugin */
description?: string;
/** The icon for the plugin */
icon?: string;
/** Screenshots displayed in carousel in Fig plugin store */
screenshots?: string[];
/** The site for the plugin */
site?: string;
/** The docs for the plugin */
docs?: string;
/** The github for the plugin in the format (owner/repo) */
github?: string;
/** The twitter for the plugin */
twitter?: string;
/** Link to community page for plugin (e.g. discord, slack) */
community?: string;
/** The authors for the plugin */
authors?: Author[];
/** The license for the plugin */
license?: string[];
/** The shells that the plugin supports */
shells?: Shell[];
/** The categories for the plugin */
categories?: Category[];
/** The keywords for the plugin */
keywords?: string[];
/** The installation for the plugin */
installation: Installation;
/** The configuration for the plugin */
configuration?: (ConfigurationItem | ConfigurationGroup)[];
}
}