- Smile on your candid camera -> 😄 on your candid 📷
- Lit fire at the mountain place -> Lit 🔥 at the ⛰️ place
- Get input text field where users can add text
- As the user types, when they press space
- Replace the emoji word with valid emojis
- Randomise the valid emojis from the list of similar emoji for a word
- Use context API
- Provider
- Consumer
- Get list of emojis
- keyup event in mozilla
- On android devices all character keycode is 299. So spacebar doesnt trigger the emojify function but 'Enter' does
- Find solution for listening spacebar event on android
- Trigger emojify on every key event (Risky but will also add feature of having emojis in substring words like
fireplace -> 🔥place
)