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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
import {
FunctionComponent,
useCallback,
useMemo,
useRef,
useState,
} from "react";
import {
AutocompleteProps,
Button,
Divider,
Group,
SimpleGrid,
Stack,
Text as MantineText,
} from "@mantine/core";
import { useForm } from "@mantine/form";
import { capitalize } from "lodash";
import { Selector } from "@/components";
import { useModals, withModal } from "@/modules/modals";
import {
Card,
Check,
Chips,
Message,
Password,
ProviderTestButton,
Selector as GlobalSelector,
Text,
} from "@/pages/Settings/components";
import {
FormContext,
FormValues,
runHooks,
useFormActions,
useStagedValues,
} from "@/pages/Settings/utilities/FormValues";
import { useSettingValue } from "@/pages/Settings/utilities/hooks";
import {
SettingsProvider,
useSettings,
} from "@/pages/Settings/utilities/SettingsProvider";
import { BuildKey, useSelectorOptions } from "@/utilities";
import { ASSERT } from "@/utilities/console";
import { ProviderInfo } from "./list";
type SettingsKey =
| "settings-general-enabled_providers"
| "settings-general-enabled_integrations";
interface ProviderViewProps {
availableOptions: Readonly<ProviderInfo[]>;
settingsKey: SettingsKey;
}
interface ProviderSelect {
value: string;
payload: ProviderInfo;
}
export const ProviderView: FunctionComponent<ProviderViewProps> = ({
availableOptions,
settingsKey,
}) => {
const settings = useSettings();
const staged = useStagedValues();
const providers = useSettingValue<string[]>(settingsKey);
const { update } = useFormActions();
const modals = useModals();
const select = useCallback(
(v?: ProviderInfo) => {
if (settings) {
modals.openContextModal(ProviderModal, {
payload: v ?? null,
enabledProviders: providers ?? [],
staged,
settings,
onChange: update,
availableOptions: availableOptions,
settingsKey: settingsKey,
});
}
},
[
modals,
providers,
settings,
staged,
update,
availableOptions,
settingsKey,
],
);
const cards = useMemo(() => {
if (providers) {
return providers
.flatMap((v) => {
const item = availableOptions.find((inn) => inn.key === v);
if (item) {
return item;
} else {
return [];
}
})
.map((v, idx) => (
<Card
key={BuildKey(v.key, idx)}
header={v.name ?? capitalize(v.key)}
description={v.description}
onClick={() => select(v)}
></Card>
));
} else {
return [];
}
}, [providers, select, availableOptions]);
return (
<SimpleGrid cols={3}>
{cards}
<Card plus onClick={() => select()}></Card>
</SimpleGrid>
);
};
interface ProviderToolProps {
payload: ProviderInfo | null;
// TODO: Find a better solution to pass this info to modal
enabledProviders: readonly string[];
staged: LooseObject;
settings: Settings;
onChange: (v: LooseObject) => void;
availableOptions: Readonly<ProviderInfo[]>;
settingsKey: Readonly<SettingsKey>;
}
const SelectItem: AutocompleteProps["renderOption"] = ({ option }) => {
const provider = option as ProviderSelect;
return (
<Stack gap={1}>
<MantineText size="md">{provider.value}</MantineText>
<MantineText size="xs">{provider.payload.description}</MantineText>
</Stack>
);
};
const ProviderTool: FunctionComponent<ProviderToolProps> = ({
payload,
enabledProviders,
staged,
settings,
onChange,
availableOptions,
settingsKey,
}) => {
const modals = useModals();
const onChangeRef = useRef(onChange);
onChangeRef.current = onChange;
const [info, setInfo] = useState<Nullable<ProviderInfo>>(payload);
const form = useForm<FormValues>({
initialValues: {
settings: staged,
hooks: {},
},
});
const deletePayload = useCallback(() => {
if (payload && enabledProviders) {
const idx = enabledProviders.findIndex((v) => v === payload.key);
if (idx !== -1) {
const newProviders = [...enabledProviders];
newProviders.splice(idx, 1);
onChangeRef.current({ [settingsKey]: newProviders });
modals.closeAll();
}
}
}, [payload, enabledProviders, modals, settingsKey]);
const submit = useCallback(
(values: FormValues) => {
if (info && enabledProviders) {
const changes = { ...values.settings };
const hooks = values.hooks;
// Add this provider if not exist
if (enabledProviders.find((v) => v === info.key) === undefined) {
changes[settingsKey] = [...enabledProviders, info.key];
}
// Apply submit hooks
runHooks(hooks, changes);
onChangeRef.current(changes);
modals.closeAll();
}
},
[info, enabledProviders, modals, settingsKey],
);
const canSave = info !== null;
const onSelect = useCallback((item: Nullable<ProviderInfo>) => {
if (item) {
setInfo(item);
} else {
setInfo({
key: "",
description: "Unknown Provider",
});
}
}, []);
const options = useMemo(
() =>
availableOptions.filter(
(v) =>
enabledProviders?.find((p) => p === v.key && p !== info?.key) ===
undefined,
),
[info?.key, enabledProviders, availableOptions],
);
const selectorOptions = useSelectorOptions(
options,
(v) => v.name ?? capitalize(v.key),
);
const inputs = useMemo(() => {
if (info === null || info.inputs === undefined) {
return null;
}
const itemKey = info.key;
const elements: JSX.Element[] = [];
info.inputs?.forEach((value) => {
const key = value.key;
const label = value.name ?? capitalize(value.key);
const options = value.options ?? [];
switch (value.type) {
case "text":
elements.push(
<Text
key={BuildKey(itemKey, key)}
label={label}
settingKey={`settings-${itemKey}-${key}`}
></Text>,
);
return;
case "password":
elements.push(
<Password
key={BuildKey(itemKey, key)}
label={label}
settingKey={`settings-${itemKey}-${key}`}
></Password>,
);
return;
case "switch":
elements.push(
<Check
key={key}
inline
label={label}
settingKey={`settings-${itemKey}-${key}`}
></Check>,
);
return;
case "select":
elements.push(
<GlobalSelector
key={key}
label={label}
settingKey={`settings-${itemKey}-${key}`}
options={options}
></GlobalSelector>,
);
return;
case "testbutton":
elements.push(
<ProviderTestButton category={key}></ProviderTestButton>,
);
return;
case "chips":
elements.push(
<Chips
key={key}
label={label}
settingKey={`settings-${itemKey}-${key}`}
></Chips>,
);
return;
default:
ASSERT(false, "Implement your new input here");
}
});
return <Stack gap="xs">{elements}</Stack>;
}, [info]);
return (
<SettingsProvider value={settings}>
<FormContext.Provider value={form}>
<Stack>
<Stack gap="xs">
<Selector
data-autofocus
searchable
placeholder="Click to Select a Provider"
renderOption={SelectItem}
disabled={payload !== null}
{...selectorOptions}
value={info}
onChange={onSelect}
></Selector>
<Message>{info?.description}</Message>
{inputs}
<div hidden={info?.message === undefined}>
<Message>{info?.message}</Message>
</div>
</Stack>
<Divider></Divider>
<Group justify="right">
<Button hidden={!payload} color="red" onClick={deletePayload}>
Delete
</Button>
<Button
disabled={!canSave}
onClick={() => {
submit(form.values);
}}
>
Save
</Button>
</Group>
</Stack>
</FormContext.Provider>
</SettingsProvider>
);
};
const ProviderModal = withModal(ProviderTool, "provider-tool", {
title: "Provider",
size: "calc(50vw)",
});
|