Fork of the emoji-button package to remove FontAwesome.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Joe Attardi 26bc41edc9 Convert to TypeScript 4 years ago
.github/workflows Add build and lint to package CI run 5 years ago
css Add keyboard navigation for variant popup 4 years ago
examples Improve UI of example site 4 years ago
scripts Convert to TypeScript 4 years ago
src Convert to TypeScript 4 years ago
.babelrc Convert to TypeScript 4 years ago
.eslintrc.js Fix disappearing recents tab when autoHide is false 4 years ago
.gitignore initial commit 5 years ago
.prettierrc Prettify, configure eslint to use prettier 5 years ago
LICENSE Create LICENSE 5 years ago
README.md Update README 4 years ago
index.d.ts Convert to TypeScript 4 years ago
nodejs.yml Add CI workflow 5 years ago
package-lock.json Convert to TypeScript 4 years ago
package.json Convert to TypeScript 4 years ago
rollup.config.js Convert to TypeScript 4 years ago
tsconfig.json Convert to TypeScript 4 years ago

README.md

Emoji Button

Vanilla JavaScript emoji picker 😎

Screenshot

Demo

https://joeattardi.github.io/emoji-button

Features

  • 💻 Vanilla JS, use with any framework
  • 🔎 Emoji search
  • 👍🏼 Skin tone variations
  • ⏱ Recently used emojis
  • ⌨️ Fully keyboard accessible

Download

emoji-button-2.8.0.min.js

Installation

npm install --save @joeattardi/emoji-button

Basic usage

  import EmojiButton from '@joeattardi/emoji-button';

  const button = document.querySelector('#emoji-button');
  const picker = new EmojiButton();

  picker.on('emoji', emoji => {
    document.querySelector('input').value += emoji;
  });

  button.addEventListener('click', () => {
    picker.pickerVisible ? picker.hidePicker() : picker.showPicker(button);
  });

API

new EmojiButton(options)

Creates an Emoji Button emoji picker.

Options

  • autoHide: (boolean, default: true) Whether or not the picker should automatically be hidden when an emoji is clicked.

  • autoFocusSearch: (boolean, default: true) Whether or not to auto-focus the search field when the picker is shown.

  • emojiVersion: (string, default: '12.1) The Emoji version to use. This determines which emojis are available. Supported versions are:

    • 0.0
    • 2.0
    • 4.0
    • 5.0
    • 11.0
    • 12.1
  • position: The position to display the picker relative to the reference element. Valid values are:

    • auto
    • auto-start
    • auto-end
    • top
    • top-start
    • top-end
    • right
    • right-start
    • right-end
    • bottom
    • bottom-start
    • bottom-end
    • left
    • left-start
    • left-end
  • recentsCount: (number, default: 50): The maximum number of recent emojis to save.

  • rootElement: The root DOM node to attach the picker to. Defaults to the body if not passed in.

  • showPreview: (boolean, default: true) Whether or not to show the emoji preview area.

  • showSearch: (boolean, default: true) Whether or not to show the search bar.

  • showRecents: (boolean, default: true) Whether or not to show (and save) recently used emojis.

  • showVariants: (boolean, default: true) Whether or not to show skin tone variants.

  • zIndex: (number): If specified, sets a z-index for the emoji picker container.

  • i18n: An object containing localized messages to display in the UI. The values and their defaults are as follows:

{
  search: 'Search emojis...',
  categories: {
    recents: 'Recent Emojis',
    smileys: 'Smileys & People',
    animals: 'Animals & Nature',
    food: 'Food & Drink',
    activities: 'Activities',
    travel: 'Travel & Places',
    objects: 'Objects',
    symbols: 'Symbols',
    flags: 'Flags'
  },
  notFound: 'No emojis found'
}

showPicker(referenceElement)

Shows the picker, positioning it relative to the given reference element. The reference element is usually the button or other element that was clicked to open the picker.

hidePicker()

Hides the picker.

pickerVisible (property)

Will be true if the picker is currently visible, and false if not.

on(event, callback)

Adds an event listener. Currently there is only one event:

  • emoji: Fired when an emoji is picked. The callback is called with a single argument, the emoji character that was picked.

Development

The easiest way to hack on Emoji Button is to use the examples page.

Clone the repository

git clone https://github.com/joeattardi/emoji-button.git

From the repository root

Install dependencies

npm install
npm link

Start the build/watch loop

npm run build:watch

From the examples subdirectory

Install dependencies

npm install
npm link @joeattardi/emoji-button

Start the dev server

npm start

Open the page

http://localhost:5000