Emoji

Insert emoji inline.

Loading...
Files
components/demo.tsx
'use client';

import React from 'react';

import { Plate } from '@udecode/plate-common/react';

import { editorPlugins } from '@/components/editor/plugins/editor-plugins';
import { useCreateEditor } from '@/components/editor/use-create-editor';
import { Editor, EditorContainer } from '@/components/plate-ui/editor';

import { DEMO_VALUES } from './values/demo-values';

export default function Demo({ id }: { id: string }) {
  const editor = useCreateEditor({
    plugins: [...editorPlugins],
    value: DEMO_VALUES[id],
  });

  return (
    <Plate editor={editor}>
      <EditorContainer variant="demo">
        <Editor />
      </EditorContainer>
    </Plate>
  );
}

Features

  • Insert emoji inline.
  • Use the : shortcut followed by the emoji name (e.g., :apple: 🍎). Autocomplete suggestions appear as you type.

Installation

npm install @udecode/plate-emoji

Usage

import { EmojiPlugin } from '@udecode/plate-emoji/react';
 
const plugins = [
  // ...otherPlugins,
  EmojiPlugin,
];

Plugins

EmojiPlugin

Extends TriggerComboboxPlugin

Options

Collapse all

    A function to specify the node inserted when an emoji is selected. The default behavior is to insert a text node containing the emoji as a Unicode character.

EmojiInputPlugin

Handles the input behavior for emoji insertion.