Giter Club home page Giter Club logo

emojiscreen's Introduction

EmojiScreen πŸ“Ί

🚧 October 2 Update:

Due to the high volume of activity from Hacktoberfest we are pausing contributions to this project while we review the current backlog of Pull Requests and work on setting additional contribution limits. You will not be able to make any new Pull Requests or Issues at the moment. Please feel free to contribute to other projects on GitHub during this time. Thanks!

If you are working on an Issue, you can work on it in your forked repo and you will be able to create a Pull Request once we open this project again.

A listing of movies, TV shows and musicals depicted through emojis.

Visit emojiscreen.com

Screenshot of Emojiscreen homepage

This project was built to create a fun, judgement free space for those learning Git and Github to practice making pull requests, branches, adding features, and more. πŸ’› πŸ’™ πŸ’œ πŸ’š πŸ’–

Contributing 🎁

Below are instructions for how to contribute to this project. The easiest way to make a contribution is to add an Emoji Card to the website. Each card should be added in the data.js file as an object.

Contribution Guidlines

Below are some guidelines to follow when contributing to this project.

πŸ›‘ We are limiting contributions per person to 3 additions across EmojiScreen, EmojiBops and EmojiPages.

  • Please limit yourself to up to 3 additions across the three emoji projects. (Example One: Complete 1 feature, add two movies; Example Two: add three songs; Example Three: add one song, one movie and one book, etc). This is due to the high level of activity on these projects at the moment. We want to make sure many people have a chance to contribute. The limit will be lifted once the activity has died down. πŸ™‚

Check Issues and current Pull Requests before contributing to avoid adding duplicates.

  • If your Pull Request is a duplicate, we will let you know so that you can update it if you like.

If someone has commented inside of the Issue saying they are working on it, that item is reserved for them.

  • Please choose something else to add if someone else has already said they will add something. We will let you know if you accidently add something that someone else is assigned. It is easy to tell if someone is adding something accidently vs if they are ignoring our rules. We will mark Pull Requests as invalid (and therefore it will not count towards Hacktoberfest) if you are purposely creating multiple Pull Requests for Issues that someone else is assigned to or has reserved.

Please do not approve or make suggestions on other people's Pull Requests.

  • We do not need additional maintainers at this time. To avoid confusion and incorrect approvals, only maintainers approve Pull Requests.

Please do not create Pull Requests without creating an Issue first.

  • Do not start work on a new feature or adding a show/movie without getting confirmation from the maintainers via an Issue. Please wait for confirmation from the maintainers before working on those types of Issues.

Issues

For adding features, see the repo Issues under the label 'enhancement'. You are also welcome to suggest other features by adding an Issue.

If you want to work on one of the Issues to add a TV show, movie or musical

  • Please comment in the Issue so that others know to not add that show or movie. You do not have to wait for confirmation for Issues adding shows or movies before creating a Pull Request. Your comment will just help 'bookmark' the Issue for you to prevent duplicate Pull Requests.

  • We are only accepting Pull Requests for movies/shows that are listed as an Issue and approved by the maintainers.

If you want to work on one of the Issues that are labeled with enhancement or are adding an Issue for a feature

  • Please comment in the Issue and wait for confirmation before you start working on it.

Read below for a detailed overview and walkthrough on how to add an Emoji Card to this project. First time pull-requests are encouraged and you can make multiple pull requests if you desire. If you run into trouble, feel free to create an Issue!

Table of Contents

Choosing a Movie, TV Show or Musical to Add

Here are some links to lists of movies, TV shows and musicals in case you're having trouble thinking of something to add!

Movies

TV

Musicals

Card Overview

On the website, each Emoji Card displays 1) images of the emojis, 2) a hint icon that will show the type (musical, movie or TV show) when the user hovers and 3) the name of the show (which appears when the user clicks on a card).

Screenshot of Beauty and the Beast Emoji Card

In the data.js file, each Emoji Card consists of the following object:

{
  title: "Beauty and the Beast",
  emojiImgs: "🏰πŸ₯€πŸŽΆπŸ“šπŸ•°οΈ",
  genres: ["animation", "family", "fantasy"],
  itemLink: "https://www.imdb.com/title/tt0101414/",
  type: "movie",
  year: 1991
}

To add a new card to the website, add a new object in the data.js file. Make sure to separate your new object from existing objects with a comma. Below is an overview of each key in the Emoji Card object. Every key is required.

Title πŸ‘

Each card must have a title. This should be the full title.

{
  title: "Beauty and the Beast",
}

Emojis 😍

The emojis should be added to emojiImgs as a string. Your emojis should be surrounded by double quotation marks.

Important Note: Add five emojis maximum for each card

{
  emojiImgs: "🏰πŸ₯€πŸŽΆπŸ“šπŸ•°οΈ",
}

Using JavaScript, the emojis are converted into Twemoji (Twitter's emoji version) so that all emojis will be uniform across platforms. And because they are pretty cute. πŸ’–

Here are a few resources to find emojis to copy:

  • Twitter Emojis - Shows you what each Twitter emoji looks like.
  • Get Emoji and EmojiCopy are tools to copy regular emojis easily from one page. Note: The initial homepage does not display all skin color versions of each emoji so you will need to search in Emojipedia for those.
  • Emojipedia - A directory of all emojis.

Note when you copy these emojis and paste them into your text editor or Github, they will no longer look like the Twitter emojis. But don't worry, Javascript will convert them to the Twitter emojis on the EmojiScreen website.

Genres πŸ”

The genres should be added as an array (the square [] brackets indicates an array or list). Separate each genre with a comma and each genre should be wrapped in quotes. There is no limit to the number of genres but try not to add too many.

{
  genres: ["animation", "family", "fantasy"],
}

For movies and TV shows, go to the IMDB profile and find the genres listed under the title. Add these genres to the Emoji Card object. Some cards will only have one genre, that is okay! Use the genre chart below as a guide for which genres are available.

See the below screenshot for the location of the genre listing in IMDB profiles.

Screenshot of the Beauty and the Beast IDMB profile with the genres circled

For musicals, include the musical genre and any other genres from the list below that you think fit:

action adventure animation biography comedy crime documentary drama
family fantasy film-noir history horror music mystery news
romance sci-fi sport thriller war western

Link πŸ”—

Add a link to the IMDB page if TV show or movie, or Playbill archive page if it is a musical.

Make sure the link includes https or http at the beginning. The link must be wrapped in quotation marks.

For TV shows and movies, add the IMDB page link.

For musicals link the Playbill archive page for the show. Make sure the Playbill link is for the original production. It will say 'original' under the show name on Playbill. Here is an example of the page you should be linking for musicals.

{
  itemLink: "https://www.imdb.com/title/tt0101414/",
}

Note: Make sure the IDMB link does not have ?ref_=[id number here] at the end. If it does, delete that part of the link. This link should just be the base IMDB url.

Type 🎬

Specify if the card you are adding is tv, movie or musical. Only add one type per card.

musical under type is referring to live musicals performed on Broadway, the West End, local theaters etc. If you are adding a movie musical, please choose movie as the type and indicate it is a musical via genres.

{
  type: "movie",
}

Year πŸ“†

Specify the year the movie or show was released or first aired. Or the first performance year for a musical. This should be a single number (no quotations around the year). Do not add ranges such as 2017-2019.

{
  year: 1994
}

Walkthrough

Follow these instructions to add a card. You can add a card using the Github website user interface or on your local machine. If you do not already have one, create a Github account before proceeding.

If you are already comfortable using Github and Git, feel free to skip the instructions below and make a pull request using whatever method you prefer!

Github UI

This method will use the Github website to contribute to this project. You will not need to download any programs to your computer using these instructions.

  1. Check the Issues and Pull Requests to see if the what you would like to add is listed. If it is not listed as an Issue or Pull Request, continue to the next step. If it is listed as an Issue or Pull Request, choose something else to add.
  2. Fork this repository. This will create a copy of the repository and create a new repository on your account. Note: the Fork button is located in the top right area of the repo.
  3. Once the repo is forked, you will be taken to the forked repo. Note: In the top left, the name of the repo should now include your username.
  4. Navigate to the data.js file in your forked repo by clicking on the file name.
  5. Edit the data.js file by clicking on the pencil icon and add a new object for your movie, TV show or musical in alphabetical order. Note: If the movie title starts with 'The' then use the next word for alphabetical order. Make sure there is a comma between your object and the object above and below. Refer to the card overview above for requirements for the different object keys.

Use the following object as a template:

{
  title: "Black Panther",
  emojiImgs: "😺🌍🏴πŸ’ͺ🏿🦸🏿",
  genres: ["action", "adventure", "sci-fi"],
  itemLink: "https://www.imdb.com/title/tt1825683/",
  type: "movie",
  year: 2018
}
  1. Once you have completed updating the object for your show or movie, scroll to the bottom of the page and add a commit message. The commit message should be formatted like: Added Fight Club or Added Casablanca. Click the Commit Changes button to save your changes.

Screenshot of creating a commit message on the Github website

  1. Navigate to the Pull Request tab. Click on New Pull Request.

Screenshot of a Pull Request on the Github website

  1. Review your changes and then click Create Pull Request. Add any additional comments, go through the checklist within the Pull Request and add an Issue number if applicable, then click on Create Pull Request.
  2. Wait for feedback/review of your Pull Request. Your code will be reviewed and if any changes need to be made, we will let you know. Once your pull request is accepted, you will be able to see your card at https://emojiscreen.com and you will officially have contributed to the project! πŸŽ‰

Local Development

This method will use your local machine to contribute to the project. This will require you to download multiple programs onto your computer. This is the method most programmers use when working on projects.

Required Downloads & Tools

  • Terminal (Mac OS) or Command Prompt. These are installed by default on your computer. Search for the program to open it. For Windows, Git Bash is recommended.
  • Git - This is a version control tool. For Windows, this download will include Git Bash.
  • A text editor such as Sublime Text, Atom, Visual Studio Code, etc.

Local Development Instructions

  1. Check the Issues and Pull Requests to see if the what you would like to add is listed. If it is not listed as an Issue or Pull Request, continue to the next step. If it is listed as an Issue or Pull Request, choose something else to add.
  2. Fork this repository. This will create a copy of the repository and create a new repository on your account.
  3. Once the repo is forked, you will be taken to the forked repo. Note: In the top left, the name of the repo should now include your username.
  4. Download the project to your computer. Click on the Clone or Download button. Copy the HTTPS github repo link.
  5. In your terminal, navigate to where you would like to save the project (such as cd Desktop). Run the following command in the terminal, replacing the following link with your copied link: git clone https://github.com/your-username-will-be-here/emojiscreen.git;
  6. After the command has been run, in the terminal, navigate into the EmojiScreen project folder: cd emojiscreen.
  7. Open the emojiscreen project in your text editor of choice. Edit the data.js file and add a new object for your movie, TV show or musical in alphabetical order. Note: If the movie title starts with 'The' then use the next word for alphabetical order.. Make sure there is a comma between your object and the objects above and below. Refer to the card overview above for requirements for the different object keys. Make sure to save your file after you have made changes.

Use the following object as a template:

{
  title: "The Lion King",
  emojiImgs: "πŸ¦πŸ‘‘πŸŒ",
  genres: ["animation", "adventure", "drama"],
  itemLink: "https://www.imdb.com/title/tt0110357/",
  type: "movie",
  year: 1994
}
  1. If you would like to see what your addition will look like, open the index.html file that is in the emojiscreen folder in a web browser. The EmojiCards are added in a random order so it may take you a few seconds to find what you added. If you do not see any cards in the browser, this could mean that you have a typo in your data.js file. If that is the case, double check what you have added for missing commas and quotation marks.
  2. Once you are done, go to the terminal and type git status. You should see data.js as modified. If you don't see this, go back and make sure to save your data.js file.
  3. Run git add -A to add your changes.
  4. Add a commit message. Run the following command and replace with your movie or show name: git commit -m "Added Harry Potter the movie".
  5. If you have never used git on your computer before, you will see a message asking for you to set your email and username. If you do not see that message, continue to the next step. Run the following commands, replacing "[email protected]" with your Github email and "Your name" with your github username:

git config --global user.email "[email protected]"

git config --global user.name "Your Name"

Then re-run the commit command. Remember to replace with your show or movie: git commit -m "Added Harry Potter the movie"

  1. Run git push. If you have not done this before, git push will not run until you login to your Github account. Type in your Github username and password. NOTE: When you type your password, it will not show in the terminal. Press enter after you type your password to continue.

  2. Go to the Github website and navigate to the Pull Request tab. Click on New Pull Request.

Screenshot of a Pull Request on the Github website

  1. Review your changes and then click Create Pull Request. Add any additional comments, go through the checklist within the Pull Request and add an Issue number if applicable, then click on Create Pull Request.
  2. Wait for feedback/review of your Pull Request. Your code will be reviewed and if any changes need to be made, we will let you know. Once your pull request is accepted, you will be able to see your card at https://emojiscreen.com and you will officially have contributed to the project! πŸŽ‰

Other Resources and Options

Credits

πŸ’–Check out a list of all of the EmojiScreen contributors.

Emoji graphics are by Twitter and are licensed under CC-BY 4.0. Review the Attribution Requirements for more information.

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

emojiscreen's People

Contributors

brittanyrw avatar navneetsharmaui avatar sumanismcse avatar vishwa9 avatar susanahan avatar lmaffeo avatar matinicusrock avatar prashi23 avatar zesterquinn avatar gideon-lanex avatar beamed8 avatar oliviale avatar isalevine avatar wilchrist avatar nungster avatar nilerbarcelos avatar unikornintech avatar harsukhdeol avatar dantehemerson avatar aakhonbay avatar gemanepa avatar joshseven avatar jebc314 avatar scrabill avatar jgodfreyva avatar gallimorej avatar pawelraciborski avatar mikeyalmighty avatar juansimon18 avatar bharatsdruv avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.