@joeattardi/emoji-button

WebJar for @joeattardi/emoji-button

License

License

MIT
Categories

Categories

Github Development Tools Version Controls
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

github-com-joeattardi-emoji-button
Last Version

Last Version

4.2.0
Release Date

Release Date

Type

Type

jar
Description

Description

@joeattardi/emoji-button
WebJar for @joeattardi/emoji-button
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

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

Download github-com-joeattardi-emoji-button

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/github-com-joeattardi-emoji-button/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>github-com-joeattardi-emoji-button</artifactId>
    <version>4.2.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/github-com-joeattardi-emoji-button/
implementation 'org.webjars.npm:github-com-joeattardi-emoji-button:4.2.0'
// https://jarcasting.com/artifacts/org.webjars.npm/github-com-joeattardi-emoji-button/
implementation ("org.webjars.npm:github-com-joeattardi-emoji-button:4.2.0")
'org.webjars.npm:github-com-joeattardi-emoji-button:jar:4.2.0'
<dependency org="org.webjars.npm" name="github-com-joeattardi-emoji-button" rev="4.2.0">
  <artifact name="github-com-joeattardi-emoji-button" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='github-com-joeattardi-emoji-button', version='4.2.0')
)
libraryDependencies += "org.webjars.npm" % "github-com-joeattardi-emoji-button" % "4.2.0"
[org.webjars.npm/github-com-joeattardi-emoji-button "4.2.0"]

Dependencies

compile (9)

Group / Artifact Type Version
org.webjars.npm : twemoji jar [13.0.0,14)
org.webjars.npm » fortawesome__free-regular-svg-icons jar [5.13.0,6)
org.webjars.npm : tiny-emitter jar [2.1.0,3)
org.webjars.npm : focus-trap jar [5.1.0,6)
org.webjars.npm : fortawesome__fontawesome-svg-core jar [1.2.28,2)
org.webjars.npm : fuzzysort jar [1.1.4,2)
org.webjars.npm : popperjs__core jar [2.4.0,3)
org.webjars.npm : fortawesome__free-solid-svg-icons jar [5.13.0,6)
org.webjars.npm : tslib jar [2.0.0,3)

Project Modules

There are no modules declared in this project.

Emoji Button

Vanilla JavaScript emoji picker ๐Ÿ˜Ž

Screenshot

Screenshot

Demo and Documentation

https://emoji-button.js.org

Features

  • ๐Ÿ’ป Vanilla JS, use with any framework
  • ๐Ÿ˜€ Use native or Twemoji emojis
  • ๐Ÿ”Ž Emoji search
  • ๐Ÿ‘๐Ÿผ Skin tone variations
  • โฑ Recently used emojis
  • โŒจ๏ธ Fully keyboard accessible
  • ๐ŸŽจ Dark, light, and auto themes
  • โš™๏ธ Add your own custom emoji images
  • ๐Ÿงฉ Extend functionality with plugins

Browser support

Emoji Button is supported on all modern browsers supporting the latest JavaScript features. Internet Explorer is not supported.

Installation

If you are using a package manager like yarn or npm, you can install Emoji Button directly from the npm registry:

npm install @joeattardi/emoji-button

Basic usage

First, you'll need a trigger element. This is typically a button, and is used to toggle the emoji picker.

<button id="emoji-trigger">Emoji</button>

Once you've added the trigger, you will need to import the EmojiButton class and create a new instance. Various options can be passed to the constructor, which is covered in the API documentation.

After constructing a picker, it can be shown by calling showPicker or togglePicker on it. These functions expect a reference element as a parameter. The picker is positioned relative to this reference element.

When an emoji is selected, the picker will emit an emoji event, passing an object containing data about the emoji that was selected. You can then handle the selected emoji however you want.

For more in depth documentation and examples, please visit https://emoji-button.js.org.

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

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

picker.on('emoji', selection => {
  // handle the selected emoji here
  console.log(selection.emoji);
});

trigger.addEventListener('click', () => picker.togglePicker(trigger));

Development

The easiest way to hack on Emoji Button is to use the documentation site. First, you should fork this repository.

Clone the forked repository

git clone https://github.com/your-name/emoji-button.git

From the repository root

Install dependencies

npm install

Set up the link

npm link

Start the build/watch loop

npm run build:watch

From the site subdirectory

Install dependencies

npm install

Link the library

npm link @joeattardi/emoji-button

Start the documentation site

npm run develop

Open the page

http://localhost:8000

Versions

Version
4.2.0