Go to file
Jakub Grzywacz c0cbef73c2
Feature / categories position (#12)
* feat: create category position prop

* docs: update props

* fix: fix spacing

* docs: add category position to docs
2021-07-28 14:53:35 +02:00
.github chore / setup pipeline (#9) 2021-07-28 12:26:34 +02:00
example Feature / categories position (#12) 2021-07-28 14:53:35 +02:00
scripts refactor: add unicode version, slug and reduce json size 2021-07-22 11:42:45 +02:00
src Feature / categories position (#12) 2021-07-28 14:53:35 +02:00
.editorconfig chore: initial commit 2021-07-03 19:51:30 +02:00
.gitattributes chore: initial commit 2021-07-03 19:51:30 +02:00
.gitignore chore: initial commit 2021-07-03 19:51:30 +02:00
.yarnrc chore: initial commit 2021-07-03 19:51:30 +02:00
CONTRIBUTING.md chore: initial commit 2021-07-03 19:51:30 +02:00
LICENSE chore: initial commit 2021-07-03 19:51:30 +02:00
README.md Feature / categories position (#12) 2021-07-28 14:53:35 +02:00
babel.config.js chore: initial commit 2021-07-03 19:51:30 +02:00
package.json chore: release 0.2.4 2021-07-27 11:42:01 +02:00
tsconfig.build.json chore: initial commit 2021-07-03 19:51:30 +02:00
tsconfig.json fix: change package name 2021-07-19 19:34:41 +02:00
yarn.lock refactor: use native panResponder instead of RNGH 2021-07-12 17:42:48 +02:00

README.md

🚀 rn-emoji-keyboard

A lightweight, fully customizable emoji picker, written as React Native component (without native elements). Designated to be user and developer friendly! 💖

Preview

🪄 Installation

yarn add rn-emoji-keyboard

or

npm install rn-emoji-keyboard

Usage

import EmojiPicker from 'rn-emoji-keyboard';

export default function App() {
  const [isOpen, setIsOpen] = React.useState<boolean>(false);

  const handlePick = (emojiObject: EmojiType) => {
    console.log(emojiObject);
    /* example emojiObject = { 
        "emoji": "❤️",
        "name": "red heart",
        "slug": "red_heart",
        "unicode_version": "0.6",
      }
    */
  };

  return (
    <EmojiPicker
      onEmojiSelected={handlePick}
      open={isOpen}
      onClose={() => setIsOpen(false)} />
  )
}

⚙️ Accepted props (current implemented)

Name Type Default Value Required Description
onEmojiSelected function undefined yes Callback on emoji selected
open boolean false yes Opens modal picker
onClose function undefined yes Request close modal runs when onEmojiSelected or backdrop pressed
emojiSize number 28 no Custom emoji size
headerStyles TextStyle {} no Override category name styles
knobStyles ViewStyle {} no Override knob styles
containerStyles ViewStyle {} no Override container styles
hideHeader boolean false no Hide category names
expandable boolean true no Show knob and enable expand on swipe up
defaultHeight number | string "40%" no Specify collapsed container height (number is points, string is a percentage of the screen height)
expandedHeight number | string "80%" no Specify expanded container height (number is points, string is a percentage of the screen height) works only if expandable is true
backdropColor string "#00000055" no Change backdrop color and alpha
categoryColor string "#000000" no Change category item color
activeCategoryColor string "#005b96" no Change active category item color
categoryContainerColor string "#e3dbcd" no Change category container color
activeCategoryContainerColor string "#ffffff" no Change selected category container color
onCategoryChangeFailed function warn(info) no Callback on category change failed (info: {index, highestMeasuredFrameIndex, averageItemLength})
translation CategoryTranslation en no Translation object see translation section
disabledCategory CategoryTypes[] [] no Hide categories by passing their slugs
categoryPosition CategoryPosition categoryPosition no Specify category container position

📊 Comparison

comparison table

🖼 Usage as static

import { EmojiKeyboard } from 'rn-emoji-keyboard';

// ...

<EmojiKeyboard onEmojiSelected={handlePick} />

Example about serving as static keyboard you can find here.

🇺🇸 Internationalization

Pre-defined

Due to the limited translation possibilities, we only provide a few pre-defined translations into the following languages:

  • en - English 🇺🇸
  • pl - Polish 🇵🇱

First import lang and use it as translation prop.

import { pl } from 'rn-emoji-keyboard';

// ...

translation={pl}

🏁 Own

There is possibility to pass own translation to library with the prop called translation like this

translation={{
  smileys_emotion: 'Smileys & Emotion',
  people_body: 'People & Body',
  animals_nature: 'Animals & Nature',
  food_drink: 'Food & Drink',
  travel_places: 'Travel & Places',
  activities: 'Activities',
  objects: 'Objects',
  symbols: 'Symbols',
  flags: 'Flags',
}}

If you have written a translation into your language, we strongly encourage you to create a Pull Request and add your language to the package, following the example of other langs.

🎉 Examples

You can clone the repo and run yarn example ios or yarn example android to preview app with this examples.

Basic

Preview

Dark

Preview

Translated

Preview

Disabled Categories

Preview

Static Modal (without knob)

Preview

Static

Preview

Categories Top

Preview

Categories Bottom

Preview

📈 Future plans

  • Skin tone palette selector.
  • Search bar.
  • Write native module to display forbidden emojis on android.

⚖️ License

MIT