-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPreactJs.preact.tsx
71 lines (59 loc) · 1.74 KB
/
PreactJs.preact.tsx
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
/** @jsxImportSource preact */
// NOTE: Declarative properties are not well supported, so we have to use ref.
import { useState, useRef, useEffect } from 'preact/hooks';
import '@jsfe/shoelace';
import type { FromSchema, JSONSchema7, Jsf } from '@jsfe/shoelace';
// -----------------------------------------------------------------------------
const mySchema = {
type: 'object',
properties: {
foo: {
type: 'string',
},
bar: {
type: 'boolean',
},
},
} as const satisfies JSONSchema7;
type MyData = FromSchema<typeof mySchema>;
function assertValidData(data: unknown): data is MyData {
// Use your AJV or other schema checker here, if you need thorough validation
// ...
return true;
}
export default function PreactJs() {
const [dataInPreact, setDataInPreact] = useState<MyData>({
foo: 'hello',
});
const formRef = useRef<Jsf>();
useEffect(() => {
const form = formRef.current!;
form.data = dataInPreact;
form.schema = /* Type-casted as JSONSchema7 */ mySchema;
form.uiSchema = {
/* Type-casted as UiSchema */
bar: {
'ui:widget': 'switch',
},
};
form.dataChangeCallback = (newData) => {
console.log({ 'Data from Preact': newData });
if (assertValidData(newData)) setDataInPreact(newData);
else console.error('Invalid data!');
};
form.submitCallback = (newData, valid) => {
console.log({ 'Submitted from Preact!': newData, valid });
if (assertValidData(newData)) {
// Do stuff...
}
};
}, []);
return (
<article id="preact">
{/* NOTE: does not exist on type 'JSX.IntrinsicElements' error.
Need to augment JSX namespace. React does not do this */}
<jsf-shoelace ref={formRef}></jsf-shoelace>
<pre>{JSON.stringify({ data: dataInPreact }, null, 2)}</pre>
</article>
);
}