Last active
July 11, 2020 17:08
-
-
Save apatronl/eac374a7afaefc99e74dc7080c05c910 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
public struct EmojiProvider { | |
/// Creates a list of emoji details that includes an emoji along with its name and description. | |
/// - Returns: The list of `EmojiDetail`s | |
/// - Note: Emoji descriptions obtained from [Empojipedia](https://emojipedia.org/). | |
static func all() -> [EmojiDetails] { | |
return [ | |
EmojiDetails( | |
emoji: "πΎ", | |
name: "Alien Monster", | |
description: "A friendly-looking, tentacled space creature with two eyes."), | |
EmojiDetails( | |
emoji: "π¨", | |
name: "Artist Palette", | |
description: "A palette used by an artist when painting, to store and mix paint colors."), | |
EmojiDetails( | |
emoji: "π₯", | |
name: "Avocado", | |
description: "A pear-shaped avocado, sliced in half to show its yellow-green flesh and " | |
+ "large brown pit."), | |
EmojiDetails( | |
emoji: "π€―", | |
name: "Exploding Head", | |
description: "A yellow face with an open mouth, the top of its head exploding in the shape " | |
+ "of a brain-like mushroom cloud."), | |
EmojiDetails( | |
emoji: "π", | |
name: "Grinning Face", | |
description: "A yellow face with simple, open eyes and a broad, open smile, showing upper " | |
+ "teeth and tongue on some platforms."), | |
EmojiDetails( | |
emoji: "π", | |
name: "French Fries", | |
description: "Thin-cut, golden-brown French fries, served in a red carton, as at " | |
+ "McDonaldβs."), | |
EmojiDetails( | |
emoji: "π£", | |
name: "Hatching Chick", | |
description: "A baby chicken (chick), hatching from an egg and seeing the world for the " | |
+ "first time."), | |
EmojiDetails( | |
emoji: "π", | |
name: "Hot Dog", | |
description: "The cooked sausage of a hot dog in a sliced bun and drizzled with yellow " | |
+ "mustard, as eaten at a baseball game. "), | |
EmojiDetails( | |
emoji: "π", | |
name: "Ping Pong", | |
description: "A paddle and ping pong ball used in the sport of table tennis."), | |
EmojiDetails( | |
emoji: "π", | |
name: "Pizza", | |
description: "A slice of pepperoni pizza, topped with black olives on Google. WhatsApp " | |
+ "adds green pepper, Samsung white onion."), | |
EmojiDetails( | |
emoji: "π§©", | |
name: "Puzzle Piece", | |
description: "Puzzle Piece was approved as part of Unicode 11.0 in 2018 under the name " | |
+ "βJigsaw Puzzle Pieceβ and added to Emoji 11.0 in 2018."), | |
EmojiDetails( | |
emoji: "π", | |
name: "Rocket", | |
description: "A rocket being propelled into space."), | |
EmojiDetails( | |
emoji: "π", | |
name: "Round Pushpin", | |
description: "A thumbtack (drawing pin), as used to pin documents on a bulletin (notice) " | |
+ "board. Depicted at a 45Β° angle with its red, flat head to the upper right."), | |
EmojiDetails( | |
emoji: "π₯°", | |
name: "Smiling Face with Hearts", | |
description: "A yellow face with smiling eyes, a closed smile, rosy cheeks, and several " | |
+ "hearts floating around its head."), | |
EmojiDetails( | |
emoji: "π", | |
name: "Smiling Face with Horns", | |
description: "A face, usually purple, with devil horns, a wide grin, and eyes and eyebrows " | |
+ "scrunched downward on most platforms."), | |
EmojiDetails( | |
emoji: "π€©", | |
name: "Star-Struck", | |
description: "A yellow face with a broad, open smile, showing upper teeth on most " | |
+ "platforms, with stars for eyes, as if seeing a beloved celebrity."), | |
EmojiDetails( | |
emoji: "π½", | |
name: "Statue of Liberty", | |
description: "The Statue of Liberty, often used as a depiction of New York City."), | |
EmojiDetails( | |
emoji: "π»", | |
name: "Sunflower", | |
description: "A sunflower, a tall, round flower with large yellow petals. Depicted as a " | |
+ "single, vertical sunflower with a large, dark-brown center on a green stem."), | |
EmojiDetails( | |
emoji: "π§Έ", | |
name: "Teddy Bear", | |
description: "A classic teddy bear, as snuggled by a child when going to sleep."), | |
EmojiDetails( | |
emoji: "πΎ", | |
name: "Tennis", | |
description: "A tennis racket (racquet) with a tennis ball. Only a ball is shown on Apple, " | |
+ "LG, Twitter, Facebook, and Mozilla platforms."), | |
EmojiDetails( | |
emoji: "πΌ", | |
name: "Tokyo Tower", | |
description: "The Tokyo Tower is the second-tallest building in Japan, located in Minato, " | |
+ "Tokyo."), | |
EmojiDetails( | |
emoji: "π¦", | |
name: "Unicorn", | |
description: "The face of a unicorn, a mythical creature in the form of a white horse with " | |
+ "a single, long horn on its forehead."), | |
EmojiDetails( | |
emoji: "π", | |
name: "Watermelon", | |
description: "A slice of watermelon, showing its rich pink flesh, black seeds, and green " | |
+ "rind."), | |
EmojiDetails( | |
emoji: "π΄π½ββοΈ", | |
name: "Woman Biking", | |
description: "The female version of the π΄ Bicyclist emoji."), | |
EmojiDetails( | |
emoji: "π©π½βπ»", | |
name: "Woman Technologist", | |
description: "A woman behind a computer screen, working in the field of technology."), | |
EmojiDetails( | |
emoji: "πΊ", | |
name: "World Map", | |
description: "A rectangular map of the world. Generally depicted as a paper map creased at " | |
+ "its folds, Earthβs surface shown in green on blue ocean."), | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment