gpt4 book ai didi

reactjs - 如何将 react-draft-wysiwyg 自定义组件与 React-Final-Form 集成

转载 作者:行者123 更新时间:2023-12-05 01:38:00 25 4
gpt4 key购买 nike

我正在尝试学习如何使用 React-Final-Form(简称 RFF)。

我学会了如何使用 <Field>组件,但现在我需要添加一个自定义组件以使用 RFF 未提供的 WYSIWYG 编辑器。

所以,我选择了 react-draft-wysiwyg。

好的,首先是我的表格:

const FormComponent = () => {

const handleSubmitOnClick = () => ({
news_title,
news_subtitle,
editor_content,
image_url,
}) => {

const data = {
"user": {
news_title: news_title,
news_subtitle: news_subtitle,
editor_content: editor_content <- here the content from the WYSIWYG editor
image_url: image_url
}
}

// API call here ....
}

return (
<>
<h1>News Main Page</h1>

<Form
onSubmit={handleSubmitOnClick()}
>
{
({
handleSubmit,
values,
submitting,
}) => (
<form onSubmit={handleSubmit} data-testid="form">
<Field
name='news_title'
placeholder='News Title'
validate={required}
>
{({ input, meta, placeholder }) => (
<div className={meta.active ? 'active' : ''}>

<input {...input}
type='text'
placeholder={placeholder}

/>
</div>
)}
</Field>

<Field
name='news_subtitle'
placeholder='News SubTitle'
validate={required}
>
{({ input, meta, placeholder }) => (
<div className={meta.active ? 'active' : ''}>

<input {...input}
type='text'
placeholder={placeholder}
/>
</div>
)}
</Field>


<WYSIWYGEditor /> **** HERE THE ISSUE ****

<MyDropzone />
<button
type="submit"
className="signup-button"
disabled={submitting}
>
Continue
</button>

</form>
)}
</Form>
</>
)
}

export default FormComponent;

这是编辑器文件:

import React, { useState } from 'react';

// Components
import { EditorState, convertToRaw } from 'draft-js';
import { Editor } from 'react-draft-wysiwyg';
import draftToHtml from 'draftjs-to-html';


// Hooks version of the Class below (done by me)
const WYSIWYGEditor = () => {
const [editorState, setEditorState] = useState(EditorState.createEmpty());
const onEditorStateChange = editorState => {
return setEditorState(editorState)
}

return (
<div className="editor">
<Editor
editorState={editorState}
wrapperClassName="demo-wrapper"
editorClassName="demo-editor"
onEditorStateChange={onEditorStateChange}
/>
{
console.log('editorState => ', draftToHtml(convertToRaw(editorState.getCurrentContent())))
}
</div>
)
}

export default WYSIWYGEditor

<WYSIWYGEditor />返回正确的值,没有问题,但我不知道如何使用 name='editor_content' 将此组件集成到 RFF 流中当表格 submit按钮被点击。

非常感谢任何帮助。

最佳答案

好的,我通过查看 React-Final-Form 网站自己找到了解决方案。

为了使用自定义解决方案或第 3 方组件 <Field>在您的 RFF 表单中,您需要添加以下内容:

//RFF形式的主要组件文件

....

<Field
name="editor_content"
component={WYSIWYGEditor}
/>

etc...

请注意:不要尝试以这种方式传递组件 component={<WYSIWYGEditor />}否则它会返回一个关于不允许传递对象的错误不要忘记导入组件:)

上面的例子会通过inputmeta到自定义组件以收集数据并在表单中使用它,方法如下:

//所见即所得编辑器文件

const WYSIWYGEditor = ({ input, meta }) => {
const [editorState, setEditorState] = useState(EditorState.createEmpty());
const onEditorStateChange = editorState => {
setEditorState(editorState)
return input.onChange(draftToHtml(convertToRaw(editorState.getCurrentContent())))

etc....
}

您会注意到,在 onEditorStateChange 中我已经能够使用的功能input来自 Prop ,并使用 onChange方法我可以将返回值回传给父组件(RFF形式)。

我希望这对其他人有帮助。编码愉快!

关于reactjs - 如何将 react-draft-wysiwyg 自定义组件与 React-Final-Form 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60267912/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com