Fix README example: wrap config with useMemo()!
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 406
- Forks
- 131
- Avg merge
- 2h 32m
- Merged PRs (30d)
- 2
Description
I mean section
https://github.com/jodit/jodit-react#1-require-and-use-jodit-react-component-inside-your-application
Replace
const Example = ({}) => {
const config = {
readonly: false // all options from https://xdsoft.net/jodit/doc/
};
with
const Example = ({placeholder}) => {
const config: JoditEditorOptions = useMemo(() => ({
// all options from https://xdsoft.net/jodit/doc/
readonly: false
placeholder: placeholder || 'Start typing here...',
}), [placeholder])
Without this fix editor may lose focus every time you change it's value.
See https://github.com/jodit/jodit-react/issues/43#issuecomment-580152633
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the README section linked in the issue, titled “Require and use Jodit React component inside your application,” and compare its Example component and config snippet with the requested usage. Update the example so its configuration is stable and supports the placeholder shown in the issue; done means the README reflects the requested example without the focus-loss warning.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- react, typescript
- Domain
- documentation, frontend
- Issue type
- Documentation
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 50/100