π° Lightweight Emoji Picker for React Enthusiasts.
Lepre is a lightweight (<1Kb) emoji picker library for React. It's fully customizable and was inspired by Github's reactions.
π§ Currently in maintenance mode. No new features will be added.π§
npm:
npm install --save lepre
Yarn:
yarn add lepre
CDN:
<sript src="https://unpkg.com/lepre@latest/dist/index.js"></script>
import React from 'react';
import Reactions from 'lepre';
export default function Example() {
const MY_EMOJIS = [
{ emoji: 'πΌ', label: 'panda' },
{ emoji: 'π', label: 'cell' },
];
return <Reactions emojis={MY_EMOJIS} selected={SELECTED_EMOJIS}
/>;
}
import React from 'react';
import { EmojiCounter, EmojiPicker, useEmojis } from 'lepre';
const MY_EMOJIS = [
{ emoji: 'πΌ', label: 'panda' },
{ emoji: 'π', label: 'cell' },
];
export default function CustomReactions() {
const [emojis, increment] = useEmojis();
const selected = emojis
.sort((a, b) => (a.emoji < b.emoji ? 1 : -1)) // No sorting is applied by default
.map((emoji) => (
<EmojiCounter
key={emoji.label}
emoji={emoji}
initialValue={emoji.counter}
onClick={increment}
/>
));
return (
<div className='comment'>
<div className='custom-picker'>
<EmojiPicker
availableEmojis={MY_EMOJIS}
onClick={increment}
selectedEmojis={emojis}
/>
</div>
<p>You can customize the reaction block however you want!</p>
<div className='custom-selection'>{selected}</div>
</div>
);
}
lepre
can be used in two ways, either by importing a single block which handles everything for you, or by importing each component and then do the connections yourself.
While the first method is plug and play and easy to get started, the latter will give you more flexibility on the layout.
API Documentation.
To use the Reaction Block, import the default Component from lepre
.
import React from 'react';
import Reactions from 'lepre';
This Component only requires an emojis
prop to work. emojis
is an array of emoji objects which will be available to be selected.
Optionally, it also accepts a selected
prop, which is an array of emojis already selected, and onUpdate
, a callback fired whenever the state is updated.
const MY_EMOJIS = [
{ emoji: 'πΌ', label: 'panda' },
{ emoji: 'π', label: 'cell' },
];
const onStateUpdate = newState => console.log(newState)
return <Reactions emojis={MY_EMOJIS}
selected={SELECTED_EMOJIS}
onUpdate={onStateUpdate}
/>;
To create a Custom Block you have to individually import the three building blocks of this library:
import React from 'react';
import { EmojiCounter, EmojiPicker, useEmojis } from 'lepre';
Then use the useEmojis hook to create a state for the emojis.
const emojisFromDatabase = fetch(...);
const [emojis, increment, decrement] = useEmojis(emojisFromDatabase);
Map the emojis with the EmojiCounter Component.
const mappedEmojis = emojis
.sort((a, b) => (a.emoji < b.emoji ? 1 : -1)) // This is optional, but recommended
.map((emoji) => (
<EmojiCounter
key={emoji.label}
emoji={emoji}
initialValue={emoji.counter}
onClick={increment}
/>
));
Or create your own Component with the Emoji Component.
import React from 'react';
import EmojiComponent from './EmojiComponent.js';
export default function MyCustomEmojiComponent({ emoji, initialValue = 0, increment, decrement }){
return (
<span>
<span onClick={() => increment(emoji)}>Incr</span>
<span onClick={() => decrement(emoji)}>Decr</span>
<EmojiComponent emoji={emoji} />
<div>
<span>{initialValue}</span>
</div>
</span>
);
}
Finally, render the components however you want.
return (
<div>
<div>
<EmojiPicker
availableEmojis={AVAILABLE_EMOJIS}
onClick={increment}
selectedEmojis={emojis}
/>
</div>
<p>{YOUR_CONTENT}</p>
<div>{mappedEmojis}</div>
</div>
);
const Emoji = {
emoji: "π°",
label: "rabbit",
counter: 0
}
Object containing infos about an emoji.
emoji: string
The emoji itself.label?: string
Label of the emoji, used for accessibility reasons (Optional).counter?: number
Number of times the emoji was selected (Optional).
addEventListener("emoji", e => console.log(e.emoji));
Event dispatched whenever an emoji gets clicked.
emoji: Emoji
emoji from which the event was dispatched.
const [emojis, increment, decrement] = useEmojis(initialValue);
emojis: Array<Emoji>
State.increment(Emoji): function
Increment the counter of the given Emoji.decrement(Emoji): function
Decrement the counter of the given Emoji.initialValue: Array<Emoji>
An initial value for the state.
import Reactions from 'lepre';
const reactionBlock = <Reactions emojis={EMOJI_OPTIONS} selected={SELECTED_EMOJIS} />
Default block, already configured and ready to be used anywhere.
emojis: Array<Emoji>
All available emojis.selected?: Array<Emoji>
Emojis already selected (taken from a database, from example).onUpdate?: function(state)
Fired whenever the state gets update, has the state as parameter.
import {Emoji} from 'lepre';
const myEmoji= (
<Emoji emoji={{emoji: "π°", label: "rabbit"}} onClick={myCallback} />
);
Component used to render Emojis.
emoji: Emoji
The Emoji to render.onClick?: function
Optional callback.
import {EmojiCounter} from 'lepre';
const counter = (
<EmojiCounter emoji={{emoji: "π°", label: "rabbit"}} onClick={myCallback} initialValue={5}/>
);
Component used to render Emojis with a counter near them.
emoji: Emoji
Emoji to renderinitialValue: number
Initial value of the counteronClick?: function
Optional callback
import {EmojiPicker} from 'lepre';
const emojisToBeUsed = [
{emoji: "π°", label: "rabbit"},
{emoji: "π»", label: "bear"}
]
const emojisAlreadySelectedIGotFromTheDatabase = [
{emoji: "π°", label: "rabbit", counter: 10},
]
const picker = (
<EmojiPicker selectedEmojis={emojisAlreadySelectedIGotFromTheDatabase}
availableEmojis={emojisToBeUsed}
pickerIcon="<--"
onClick={myCallback} />
);
Component used to render the Emoji Picker itself.
selectedEmojis: Array<Emoji>
Array of Emojis already selectedavailableEmojis: Array<Emoji>
Array of all emojis availableonClick?: function
Optional callbackpickerIcon = "π": string || svg
Optional custom icon for the picker. Accepts a string (including emojis) or an svg object.
A basic demo with some example of Custom Blocks is available here.
I also use lepre
on a personal project, check it out here: Real-Time React Commenting System.
lepre
aims to be fast and thin and because of that it has some limitations:
- Emojis have to be configured first, there are no defaults
- CSS is not included (but there's a starter CSS in this README!)
Contributions are welcome! Please submit a pull request for new features or an issue if you find any bug or problem.
Please bear in mind that this library is meant to be lightweight first.
- @lodmfjord - Typescript, Size Improvements
- Typescript support (Thanks to @lodmfjord)
- Get 100% Test Coverage (Thanks to @lodmfjord)
lepre
comes with no CSS by default because rarely the stock design will remain unchanged. I thought that no CSS was better than unused CSS.
Every component comes with classes already defined that you can use for styling.
emoji
Span container of EmojiComponentemoji-adder
Span container of the EmojiComponent which renders the "+" signemoji-container
Span container of EmojiCounteremoji-counter
Span container of the counter in EmojiCounteremoji-menu-open
Class applied to the emoji selection menu when it's openedemoji-menu-closed
Class applied to the emoji selection menu when it's closedreaction-block
Div container of the whole library (Default Reactions Block only)
To help with the design, here's the CSS used in the Demo project for the Default Component.
In the example/src
folder of this repo you can find the styles for the other blocks.
.emoji {
font-size: 25px;
display: flex;
align-items: center;
cursor: pointer;
vertical-align: middle;
transform: translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
backface-visibility: hidden;
-moz-osx-font-smoothing: grayscale;
transition-duration: 0.1s;
transition-property: transform;
}
.reaction-div {
display: inline-flex;
flex-flow: wrap;
margin: 10px 0px 10px 10px;
}
.emoji-container {
position: relative;
user-select: none;
display: flex;
}
.emoji-counter {
font-weight: bold;
padding: 2px 5px;
border-radius: 30%;
background-color: #f55742;
color: #fefefe;
}
.emoji:hover,
.emoji:focus,
.emoji:active {
transform: scale(1.1);
}
.reaction-block {
display: inline-flex;
flex-flow: wrap;
}
.emoji-adder {
user-select: none;
position: relative;
display: inline-block;
}
.emoji-menu-open {
position: absolute;
display: flex;
top: 0px;
left: 35px;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
background-color: #fefefe;
z-index: 10;
width: auto;
}
.emoji-menu-open .emoji {
margin: 5px;
}
.emoji-menu-closed {
display: none;
}
See CHANGELOG.md.
MIT Β© PandaSekh