WYSIWYG-like EmojiOne Converter / Picker Plugin for jQuery
npm install emojioneareaEmojioneArea is a small jQuery plugin that allows you to transform any html element into simple WYSIWYG editor with
ability to use Emojione icons.
The end result is a secure text/plain in which the image icons will be replaced with their Unicode analogues.
The preferred way to install is via bower, npm or composer.
``bash`
bower install emojionearea#^3.0.0or
npm install emojionearea@^3.0.0or
composer require mervick/emojionearea ^3.0.0
Add the following lines to the head:`html`
Simple usage:
`html`
EmojioneArea uses awesome Emojione emojis.
So when emojionearea.js loads, it's require to emojione.js loaded too, but if it not loaded in the page then EmojioneArea loads it from CDN. emojione.js
For avoiding this behavior you can add and emojione.css into your page.
By changing value below you can change emojione version which will be loaded from CDN
`js`
window.emojioneVersion = "3.1.2";
#### standalone
Standalone mode
type: boolean false
default:
Example:
`js`
$(".emojionearea").emojioneArea({
standalone: true
});
Preview:
!EmojiOneArea - Standalone mode
#### emojiPlaceholder
The placeholder (default emoji) of the button in the standalone mode.
Works only with standalone mode
type: string ':smiley:'
default:
accepts values: [any emojione shortname]
Example:
`js`
$(".emojionearea").emojioneArea({
emojiPlaceholder: ":smile_cat:"
});
#### placeholder
The placeholder of the editor
type: string
default: [uses placeholder attribute from the source input]
Example:
`js`
$(".emojionearea").emojioneArea({
placeholder: "Type something here"
});
#### search
Whether is enabled search emojis in the picker
type: boolean true
default:
Example:
`js`
$(".emojionearea").emojioneArea({
search: false
});
#### searchPlaceholder
The search placeholder
type: string 'SEARCH'
default:
Example:
`js`
$(".emojionearea").emojioneArea({
searchPlaceholder: "Search"
});
#### useInternalCDN
Whether to use the loading mechanism to load EmojiOne from CDN
type: boolean true
default:
Example:
`js`
$(".emojionearea").emojioneArea({
useInternalCDN: true
});
#### buttonTitle
The title of the emoji button (hint on the hover)
type: string "Use the TAB key to insert emoji faster"
default:
Example:
`js`
$(".emojionearea").emojioneArea({
buttonTitle: "Use the TAB key to insert emoji faster"
});
#### recentEmojis
Whether to show recently selected emojis in the picker
type: boolean true
default:
Example:
`js`
$(".emojionearea").emojioneArea({
recentEmojis: false
});
#### pickerPosition
The position of the emojis picker in the relation to the editor
type: string 'top'
default: 'top' | 'right' | 'bottom'
accepts values:
Example:
`js`
$(".emojionearea").emojioneArea({
pickerPosition: "bottom"
});
#### filtersPosition
The position of the filters header in the emojis picker
type: string 'top'
default: 'top' | 'bottom'
accepts values:
Example:
`js`
$(".emojionearea").emojioneArea({
filtersPosition: "bottom"
});
!EmojiOneArea - searchPosition bottom
#### searchPosition
The search panel position if search option enabled
type string top
default: 'top' | 'bottom'
accepts:
Example:
`js`
$(".emojionearea").emojioneArea({
searchPosition: "bottom"
});
!EmojiOneArea - searchPosition bottom
#### hidePickerOnBlur
Whether to hide picker when blur event triggers
type: boolean true
default:
Example:
`js`
$(".emojionearea").emojioneArea({
hidePickerOnBlur: false
});
#### container
The container of the plugin.
By default, emojionearea container created directly under the source.
In this option you can specify custom jQuery|selector container.
type: jQuery|selector null
default:
Examples:
`html`
#### tones
Whether to show the skin tone buttons in the emoji picker
type: boolean true
default:
Example:
`js`
$(".emojionearea").emojioneArea({
tones: false
});
#### tonesStyle
The style of the skin tones selector
type: string 'bullet'
default: 'bullet' | 'radio' | 'square' | 'checkbox'
accepts values:
Example:
`js`
$(".emojionearea").emojioneArea({
tonesStyle: 'checkbox'
});
#### shortnames
By default EmojioneArea parses only utf8 emojis (e.g. 😀😊😍🤑😜🤓) from the value of the input source. :smile:
This option enables to parse also the shortnames (e.g. , :smiley:, :cat:, etc). setText()
Also affects the work of the method .
Note. Affects only to how it parse emojis.
To change how it saves emojis use saveEmojisAs option (see below).
type: boolean false
default:
Example:
`js`
$(".emojionearea").emojioneArea({
shortnames: true
});
#### saveEmojisAs
The processor type of the how emojionearea saves icons to the source, also affects on the method getText()
type: string 'unicode'
default: 'unicode' | 'shortname' | 'image'
accepts values: 😀😊😍🤑😜🤓
* unicode - saves emojis as utf8 text (e.g. );:smile:
* shortname - save emojis as shortnames (e.g. , :smiley:, :cat:, etc);`
* image - save emojis as html images, example: html`
#### hideSource
Whether to hide source input after render the plugin
type: boolean true
default:
Example:
`js`
$(".emojionearea").emojioneArea({
hideSource: false
});
#### inline
Inline mode
Whether to use plugin editor as inline input
type: boolean|null null
default: null | true | false
accepts values: null
* - auto detect, if input is textarea then false, when it is input[type=text] then true
Example:
`js`
$(".emojionearea").emojioneArea({
inline: true
});
Preview:
#### shortcuts
Whether to attach shortcuts events
type: boolean true
default:
Example:
`js`
$(".emojionearea").emojioneArea({
shortcuts: false
});
#### autocomplete
Whether to add the emojis short names autocomplete functional
type: boolean true
default:
Example:
`js`
$(".emojionearea").emojioneArea({
autocomplete: false
});
#### autocompleteTones
Whether to show skin emojis in the autocomplete dropdown
type: boolean false
default:
Example:
`js`
$(".emojionearea").emojioneArea({
autocompleteTones: true
});
#### textcomplete
The settings of the autocomplete dropdown
type: object `
default: js`
{
maxCount : 15,
placement : null
}maxCount
where
* - max count of items in the dropdownplacement
* - the placement of the dropdown (null | "top" | "absleft" | "absright")
Example:
`js`
$(".emojionearea").emojioneArea({
textcomplete: {
maxCount : 20,
placement : 'absleft'
}
});
#### attributes
The html attributes of the editor (contenteditable) of the plugin
type: object `
default: js`
{
dir : "ltr",
spellcheck : false,
autocomplete : "off",
autocorrect : "off",
autocapitalize : "off",
}dir
where
* - direction http://www.w3schools.com/tags/att_global_dir.aspspellcheck
* - spellcheck http://www.w3schools.com/tags/att_global_spellcheck.aspautocomplete
* - autocomplete http://www.w3schools.com/tags/att_input_autocomplete.aspautocorrect
* - autocorrect https://davidwalsh.name/disable-autocorrectautocapitalize
* - autocapitalize http://www.w3schools.com/tags/att_input_autocomplete.asp
Example:
`js`
$(".emojionearea").emojioneArea({
attributes: {
spellcheck : true,
autocomplete : "on",
}
});
#### filters
The filters (tabs) in the emojis picker
type: object
default: the full default filters you can find here [here]
`js
{
tones: { // this tab is hidden, and used for list tones emojis
title: "Diversity",
emoji: "[...]", // list of the emojis, see source code
},
recent: {
icon: "clock3",
title: "Recent",
},
smileys_people: {
icon: "yum",
title: "Smileys & People",
emoji: "[...]", // list of the emojis, see source code
},
animals_nature: {
icon: "hamster",
title: "Animals & Nature",
emoji: "[...]", // list of the emojis, see source code
},
food_drink: {
icon: "pizza",
title: "Food & Drink",
emoji: "[...]", // list of the emojis, see source code
},
activity: {
icon: "basketball",
title: "Activity",
emoji: "[...]", // list of the emojis, see source code
},
travel_places: {
icon: "rocket",
title: "Travel & Places",
emoji: "[...]", // list of the emojis, see source code
},
objects: {
icon: "bulb",
title: "Objects",
emoji: "[...]", // list of the emojis, see source code
},
symbols: {
icon: "heartpulse",
title: "Symbols",
emoji: "[...]", // list of the emojis, see source code
},
flags: {
icon: "flag_gb",
title: "Flags",
emoji: "[...]", // list of the emojis, see source code
},
}
`
Example:
`js
$(".emojionearea").emojioneArea({
filters: {
recent : false, // disable recent
smileys_people: {
icon: 'cat' // change smileys_people filter icon to "cat"
},
animals_nature: {
title: 'Animals' // change animals_nature filter title to "Animals"
},
food_drink: {
emoji: "smiley smile cat" // change emojis of the filter food_drink
},
objects: false, // disable objects filter
symbols: false, // disable symbols filter
flags : false // disable flags filter
}
});
`
List of methods
#### .on(events, handler)
Attach handler for event(s)
- param events
Type: String
One or more space-separated event types
- param handler
Type: Function(jQuery Element, Event eventObject [, any extraParameter ] [, ...])
A function to execute when the event is triggered
- returns EmojioneArea instance
#### .off(events[, handler])
Remove previously attached handler (if handler is specified) or all handlers of specified event(s)
- param events
Type: String
One or more space-separated event types
- param handler [optional]
Type: Function(jQuery Element, Event eventObject [, any extraParameter ] [, ... ]) .on
A handler function previously attached for the event(s) by method
- returns EmojioneArea instance
#### .trigger(events[, ... ])
Trigger event(s)
- param events
Type: String
One or more space-separated event types
- params [, ...] [optional]
Type: any
Extra parameters
- returns Boolean the result of all called handlers
#### .setText(str)
Set emojionearea text
- param str
Type: String
Set text
- returns EmojioneArea instance
#### .getText()
Get text of emojionearea, there is no any html, just vanilla text
- returns String
#### .showPicker()
Show picker area
- returns EmojioneArea instance
#### .hidePicker()
Hide picker area
- returns EmojioneArea instance
#### .enable()
Enable emojionearea input area
- returns EmojioneArea instance
#### .disable()
Disable emojionearea input area
- returns EmojioneArea instance
#### .setFocus()
Focus on emojionearea input area
- returns EmojioneArea instance
How to use methods, example:
`js`
var el = $("selector").emojioneArea();
el[0].emojioneArea.on("emojibtn.click", function(btn, event) {
console.log(btn.html());
});
// OR
$("selector2").emojioneArea();
$("selector2")[0].emojioneArea.getText();
// OR
$("selector3").emojioneArea();
$("selector3").data("emojioneArea").showPicker();
List of built-in events:
#### ready or onLoadFunction
triggers when emojionearea is initialized
Handler type: (no params)click
#### Function (editor: jQuery, event: Event)
triggers when user clicks on emojionearea input or picker
Handler type:
- param {jQuery} editor - EmojioneArea input
- param {Event} event - jQuery Event object
#### mousedownmousedown
triggers on of emojionearea input or picker Function (editor: jQuery, event: Event)
Handler type: mouseup
- param {jQuery} editor - EmojioneArea input
- param {Event} event - jQuery Event object
#### mouseup
triggers on of emojionearea input or picker Function (editor: jQuery, event: Event)
Handler type: keyup
- param {jQuery} editor - EmojioneArea input
- param {Event} event - jQuery Event object
#### keyup
triggers on of emojionearea input or picker Function (editor: jQuery, event: Event)
Handler type: keypress
- param {jQuery} editor - EmojioneArea input
- param {Event} event - jQuery Event object
#### keypress
triggers on of emojionearea input or picker Function (editor: jQuery, event: Event)
Handler type: focus
- param {jQuery} editor - EmojioneArea input
- param {Event} event - jQuery Event object
#### focus
triggers on of emojionearea input Function (editor: jQuery, event: Event)
Handler type:
- param {jQuery} editor - EmojioneArea input
- param {Event} event - jQuery Event object
#### blurblur
triggers on of emojionearea input Function (editor: jQuery, event: Event)
Handler type:
- param {jQuery} editor - EmojioneArea input
- param {Event} event - jQuery Event object
#### pasteFunction (editor: jQuery, text: String, html: String)
triggers when user has pasted content to input area
Handler type: resize
- param {jQuery} editor - EmojioneArea input
- param {String} text - pasted vanilla text
- param {String} html - pasted html content
#### Function
triggers when input area has resized
Handler type: (no params)change
#### Function
triggers when input area has changed
Handler type: (no params)
#### emojibtn.clickFunction (emojibtn: jQuery)
triggers when user clicks on emoji button at the picker area
Handler type: button.click
- param {jQuery} emojibtn - emoji button that user has clicked
#### Function (button: jQuery)
triggers when user clicks on show/hide button
Handler type: tone.click
- param {jQuery} button - show/hide button
#### Function (button: jQuery)
triggers when user clicks on tone filter button
Handler type:
- param {jQuery} button - tone button that user has clicked
#### picker.showFunction (picker: jQuery)
triggers on show picker
Handler type:
- param {jQuery} picker - picker area
#### picker.hideFunction (picker: jQuery)
triggers when picker has been hidden
Handler type:
- param {jQuery} picker - picker area
#### picker.mousedownmousedown
triggers on of emojionearea picker area Function (picker: jQuery)
Handler type:
- param {jQuery} picker - picker area
#### picker.mouseupmouseup
triggers on of emojionearea picker area Function (picker: jQuery)
Handler type:
- param {jQuery} picker - picker area
#### picker.clickclick
triggers on of emojionearea picker area Function (picker: jQuery)
Handler type:
- param {jQuery} picker - picker area
#### picker.keydownkeydown
triggers on of emojionearea picker area Function (picker: jQuery)
Handler type:
- param {jQuery} picker - picker area
#### picker.keypresskeypress
triggers on of emojionearea picker area Function (picker: jQuery)
Handler type: search.focus
- param {jQuery} picker - picker area
#### focus
triggers on of picker search area Function
Handler type: (no params)
#### search.keypressFunction
triggers when user press key on picker search area
Handler type: (no params)
There are 2 ways to set events, directly in options via options events. .
Note: For events with (dot) you can set event name with _(dash) instead of . (dot) here.
Example, set events in the options:
`JS`
$("selector").emojioneArea({
events: {
paste: function (editor, event) {
console.log('event:paste');
},
change: function (editor, event) {
console.log('event:change');
},
emojibtn_click: function (button, event) {
console.log('event:emojibtn.click, emoji=' + button.children().data("name"));
}
}
});
Also you can manage events via .on(), .off() and .trigger() methods
Example:
`JS
var el = $("selector").emojioneArea();
// attach event handler
el[0].emojioneArea.on("emojibtn.click", function(button, event) {
console.log('event:emojibtn.click, emoji=' + button.children().data("name"));
});
// unset all handlers attached to event
el[0].emojioneArea.off("emojibtn.click");
// like in jQuery you can specify few events separated by space
el[0].emojioneArea.off("focus blur");
// set & unset custom handler
var eventHandler1 = function(button, event) {
console.log('event1');
};
var eventHandler2 = function(button, event) {
console.log('event2');
};
// attach event handlers
el[0].emojioneArea.on("click", eventHandler1);
el[0].emojioneArea.on("click", eventHandler2);
// unset eventHandler1
el[0].emojioneArea.off("click", eventHandler1);
`
Building EmojiOneArea requires grunt, compass, and sass to be available
For making changes and build project (scss/js):
``
npm update
npm run build
PRs welcome!!!
#### EmojiOne icons are appearing larger than expected
Most likely caused by including some scripts in the wrong order (or perhaps not at all!)
Include jQuery, then EmojiOne, then EmojiOneArea scripts
#### Can I use EmojiOneArea to just display Emoji icons in a div?
EmojiOneArea is intended to be a text editor which supports EmojiOne.
If you just want to display Emoji icons, the EmojiOne library already provides everything you need.
#### Can I add extra buttons into EmojiOneArea, alongside the existing emoji picker icon?
This is not fully supported, but you could respond to the jQuery onLoad event which EmojiOneArea fires once its initialised, and insert your buttons into the DOM at this point
see https://github.com/mervick/emojionearea/issues/152
#### Firefox is not positioning the input caret correctly in EmojiOneArea
This appears to be a long standing FireFox bug, apparently related to contenteditable, the placeholder attribute, and the pseudo :before or :after classes
https://bugzilla.mozilla.org/show_bug.cgi?id=1020973
There are various workarounds such as changing placeholder, or adding some padding
See https://github.com/mervick/emojionearea/issues/86
#### Can I modify the position of EmojiOneArea picker?
You can use the pickerPosition` option which provides basic control of where the picker appears, in relation to the source input.
For more control, you could apply translate CSS to the picker
#### Internet Explorer focus issues
IE 11 causes EmojiOneArea to hide (and trigger blur event) when the emoji picker scrollbar is clicked
There is no current fix for this, although there are a few crude workarounds
See https://github.com/mervick/emojionearea/issues/127
#### EmojiOneArea positioning
There are known issues with positioning the EmojiOneArea picker.
It does not currently ensure the picker is entirely visible on small screen devices, or positioned properly when it is invoked from the bottom of a page (it could be clipped)
See https://github.com/mervick/emojionearea/issues/131
#### Browser loads the textcomplete.js from CDN, everytime an EmojiOneArea is instantiated
You can avoid this by explicitly including the textcomplete script into your document.
If it already exists, EmojiOneArea will use the preloaded script instead of attempting to load it from CDN for each instance
You can also avoid this by disabling autocomplete entirely by setting the autocomplete option to false
- jQuery >= 1.8.2
EmojiOneArea is released under the MIT license.