luna-emoji

35.1.1 • Public • Published

CKEditor 5 Emoji plugin

npm npm npm bundle size NPM

Emoji plugin using a modified version of the ckeditor5 SpecialCharacters plugin.

Preview Image

Setup

  1. Installation

To install it, run:

npm i --save @phudak/ckeditor5-emoji
  1. Importing modules

Import the Emoji plugin with all optional categories. If you want to exclude some category, don't import it.

import {
    Emoji, EmojiActivity, EmojiFlags, EmojiFood, EmojiNature, EmojiObjects, EmojiPeople,
    EmojiPlaces, EmojiSymbols
} from '@phudak/ckeditor5-emoji/src';
  1. Add imported modules to plugins

Add the Emoji plugin and optional categories to CKEditor plugins.

Add plugin to build:

InlineEditor
    .create( document.querySelector( '#editor' ), {
        plugins: [
            ...,
            Emoji,
            EmojiPeople,
            EmojiNature,
            EmojiPlaces,
            EmojiFood,
            EmojiActivity,
            EmojiObjects,
            EmojiSymbols,
            EmojiFlags,
        ],
    } )
    .then( editor => {
        window.editor = editor;
    } )
    .catch( err => {
        console.error( err.stack );
    } );

or add plugin to custom editor builder:

InlineEditor.builtinPlugins = [
    ...
    Emoji,
    EmojiPeople,
    EmojiNature,
    EmojiPlaces,
    EmojiFood,
    EmojiActivity,
    EmojiObjects,
    EmojiSymbols,
    EmojiFlags,
]
  1. Add the Emoji plugin to toolbar

Add plugin to build:

InlineEditor
    .create( document.querySelector( '#editor' ), {
        plugins: [...],
        toolbar: [ ... , 'emoji' ],
    } )
    .then( editor => {
        window.editor = editor;
    } )
    .catch( err => {
        console.error( err.stack );
    } );

or add plugin to custom editor builder:

InlineEditor.defaultConfig = {
    toolbar: {
        items: [
            ...,
	    'emoji',
	    '|',
	    'undo',
	    'redo'
	]
    },
};
  1. Enjoy

Integration examples

You can check my Emoji plugin integration into custom CKEditor builds here:

Emoji Set

Emoji are divided into categories:

  • All
  • Activity
  • Food
  • Flags
  • Nature
  • Objects
  • People
  • Places
  • Symbols

You can choose specific categories or import all of them.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 35.1.1
    1
    • latest

Version History

Package Sidebar

Install

npm i luna-emoji

Weekly Downloads

1

Version

35.1.1

License

none

Unpacked Size

1.11 MB

Total Files

29

Last publish

Collaborators

  • alidihaw