強力でカスタマイズ可能なリッチテキスト エディターで React アプリを強化したい場合は、TipTap が最適な選択肢です。このチュートリアルでは、TipTap をプロジェクトに統合し、動的なユーザー エクスペリエンスを実現するメンション機能を追加する方法を説明します。
このチュートリアルが終わるまでに、次のことができるようになります:
TipTap の詳細については、公式ドキュメントを参照するか、GitHub リポジトリを参照してください。
ステップ 1: 依存関係をインストールする
始める前に、必要なライブラリをインストールしてください:
npm install @tiptap/react @tiptap/starter-kit @tiptap/extension-mention
まず、RichTextEditor コンポーネントを作成します。簡単な実装は次のとおりです:
import { useEditor, EditorContent } from '@tiptap/react'; import StarterKit from '@tiptap/starter-kit'; export const RichTextEditor = ({ content, onChange }) => { const editor = useEditor({ extensions: [StarterKit], content: content, onUpdate: ({ editor }) => { onChange(editor.getHTML()); }, }); return <EditorContent editor={editor} />; };
メンションは、特にチャットや共同アプリケーションでのユーザーの対話性を高めます。実装するには:
RichTextEditor コンポーネントを変更して Mention 拡張機能を含めます。
import Mention from '@tiptap/extension-mention'; export const RichTextEditor = ({ content, onChange, mentions }) => { const editor = useEditor({ extensions: [ StarterKit, Mention.configure({ HTMLAttributes: { class: 'mention' }, suggestion: { items: ({ query }) => mentions.filter(item => item.display.toLowerCase().includes(query.toLowerCase())).slice(0, 5), render: () => { let component; let popup; return { onStart: (props) => { popup = document.createElement('div'); popup.className = 'mention-popup'; document.body.appendChild(popup); component = { updateProps: () => { popup.innerHTML = ` <div> <h3> Step 4: Style the Mentions Popup </h3> <p>Mentions should be visually distinct. Add the following styles to enhance usability:<br> </p> <pre class="brush:php;toolbar:false">.mention-popup { background: white; border-radius: 8px; box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1); padding: 8px; position: absolute; z-index: 1000; } .mention-popup .items { display: flex; flex-direction: column; } .mention-popup .item { padding: 8px; cursor: pointer; border-radius: 4px; } .mention-popup .item:hover, .mention-popup .item.is-selected { background: #f0f0f0; }
const editor = useEditor({ extensions: [StarterKit], content, onUpdate: ({ editor }) => { const selection = editor.state.selection; onChange(editor.getHTML()); editor.commands.setTextSelection(selection); }, });
エディターが空の場合にヒントを表示するには、プレースホルダー拡張機能を使用します。
import Placeholder from '@tiptap/extension-placeholder'; const editor = useEditor({ extensions: [ StarterKit, Placeholder.configure({ placeholder: 'Type something...' }), ], });
エディターをモーダルまたはフォーム コンポーネントでラップして、通知やコメントなどのより大きな機能の一部にします。以下に例を示します:
import React from 'react'; const NotificationForm = ({ mentions, onSubmit }) => { const [content, setContent] = React.useState(''); return ( <form onSubmit={() => onSubmit(content)}> <RichTextEditor content={content} onChange={setContent} mentions={mentions} /> <button type="submit">Send</button> </form> ); };
TipTap を使用すると、強力で使いやすいリッチテキスト エディターを構築できます。メンションを追加すると、アプリの対話性が強化され、ユーザーにとってより魅力的なものになります。
詳細については、TipTap の公式 Web サイトをご覧ください。この記事から何か新しいことを学びましたか?コメントで知らせてください! ?
以上がReact で TipTap を使用してリッチテキスト エディターを構築する (メンション付き)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。