-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathUpdateUsingButtonWithAutofocus.tsx
59 lines (52 loc) · 1.57 KB
/
UpdateUsingButtonWithAutofocus.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
import SimpleMdeReact, { SimpleMdeToCodemirrorEvents } from "../SimpleMdeReact";
import { useMemo, useState } from "react";
import SimpleMDE from "easymde";
import React from "react";
let counter = 1;
export const State = (props: any) => {
return (
<div style={{ margin: "8px" }}>
<code data-testid="state">{JSON.stringify(props, null, 2)}</code>
</div>
);
};
const events = {
focus: () => console.log("focus"),
} as SimpleMdeToCodemirrorEvents;
export const UpdateUsingButtonWithAutofocus = () => {
const [value, setValue] = useState(
"I am the initial value. Erase me, or try the button above."
);
const onChange = (value: string) => {
setValue(value);
};
const handleTextChangeByButton = () => {
setValue(`Changing text by setting new state. ${counter++}`);
};
const autofocusNoSpellcheckerOptions = useMemo(() => {
return {
autofocus: true,
spellChecker: false,
} as SimpleMDE.Options;
}, []);
return (
<div data-testid="autofocus-no-spellchecker">
<h4>Autofocus spellchecker disabled, button updated, controlled</h4>
<button
style={{ display: "inline-block", margin: "10px 0" }}
onClick={handleTextChangeByButton}
>
Click me to update the textValue outside of the editor
</button>
<State value={value} />
<h4>Update by button</h4>
<SimpleMdeReact
data-testid="autofocus-no-spellchecker-editor"
options={autofocusNoSpellcheckerOptions}
value={value}
onChange={onChange}
events={events}
/>
</div>
);
};