Skip to content

perpetua1/coding-challenge-emoji-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Perpetua Coding Challenge - Build an Emoji App

In this challenge the applicant will implement a single page web app that will be able to search from a set of emojis and translate text into emojis.

A base react app is provided with an Emoji component that will be useful for displaying emojis. Included also is a model representation of an emoji and the list of all emojis that should be searchable and translatable.

All code provided is editable. You can do this challenge in any language however you will need to convert the components and models as you see fit.

The use of the internet for references is allowed.

Part 1 - Emoji Search

The emoji search will allow users to filter emojis from text. This section will have a search bar and a list of emojis. The emoji will be displayed by it's symbol and it's name. Search will be filterable by name.

Requirements:

  • The system will present a list of all emojis when no search term is present.
  • The system will filter the list of emojis by name based on the text in the search bar.

Part 2 - Emoji Translate

The emoji translate will allow users to translate text to emoji based on the emoji's shortcode.

For example: If an emoji's shortcode is happy then I'm super happy will be translated to I'm super 😀.

Requirements:

  • The system will automatically translate emoji's shortcodes to their respective symbols as the user types.

Example Video of functionality, not UI. Video

Extra - Copy to Clipboard

Clicking on an emoji in the search list will copy that emoji to the clipboard.

Assets

Note: Some of the assets are missing margins & paddings, just do your best to match the image, not a big deal if it's off by a couple pixels.

Mockup of App

Mockup Image

Navigation Bar

Nav Bar

height: 98px;
background: #FFFFFF;
box-shadow: 0 2px 4px 0 rgba(195,195,195,0.50);
/* 🤓 😍 📖: */
font-size: 36px;
color: #000000;
letter-spacing: 3.01px;

Search Bar

Search Bar

/* Default */
height: 50px;
width: 808px;
border: 2px solid #B4B4B4;
border-radius: 8px;
font-size: 16px;
color: #B4B4B4;

/* Focused */
border: 2px solid #E6AA59;
box-shadow: 0 2px 4px 0 rgba(175,175,175,0.50);
border-radius: 8px;

Emoji List

Emoji List

/* Container */
height: 678px;
background: #FFFFFF;
border: 0 solid #C2C2C2;
box-shadow: 0 2px 4px 0 rgba(194,194,194,0.50);
border-radius: 8px;
padding: 16px;

/* Cell */
height: 86px;
background: #F2F2F2;
border-radius: 8px;
font-size: 36px;
color: #000000;

Translate Header Text

font-size: 62px;
color: #000000;

Translate Text Field

Text Field

background: #FFFFFF;
border: 2px solid #C3C1C1;
box-shadow: 0 2px 4px 0 rgba(158,158,158,0.50);
border-radius: 8px;
font-size: 26px;
color: #000000;

About

Perpetua Coding Challenge - Build an Emoji App

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published