Coder Social home page Coder Social logo

indiecodermm / js-capstone Goto Github PK

View Code? Open in Web Editor NEW
4.0 1.0 0.0 1.67 MB

In this website, users can view popular game characters, and interact with other users by liking and commenting on individual characters. Powered by Amiibo API and Involvement API.

Home Page: https://indiecodermm.github.io/js-capstone/

License: MIT License

HTML 14.66% JavaScript 52.63% CSS 32.71%
capstone-project html-css-javascript microverse rest-api webpack amiibo-api

js-capstone's Introduction

πŸ“— Table of Contents

πŸ’» PixelBros

This is a capstone project we built at the end of JavaScript Module during our study in Microverse program.

PixelBros is a website where users can view high-quality images of popular retro game characters. Users can also like and comment on their favourite ones and see which characters are the most popular.

The website uses Amiibo API to get information about all popular Nintendo characters from popular franchises such as Super Smash Bros, the Legend of Zelda, and Mario. Whether you're a fan of Mario, Pokemon or any other beloved characters, you'll be able to find them on this website.

Β Β Β 

πŸ›  Built With

Tech Stack

  • HTML, CSS, JavaScript
  • Amiibo API: API for characters data
  • Involvement API: API for user likes and comments
  • Webpack: Module bundler
  • Jest: Unit testing
  • GitHub Project: KanBan Board for tracking the progress

Key Features

  • Browse through all of the different retro game characters
  • Like and comment on your favourite characters
  • View other users' likes and comments

(back to top)

πŸš€ Live Demo

You can visit the Live Demo Website.

(back to top)

πŸ’» Getting Started

To get a local copy up and running, follow these steps.

Prerequisites

In order to run this project you need:

Setup

Clone this repository to your desired folder:

  cd my-project
  git clone https://github.com/IndieCoderMM/js-capstone.git .

Install

Install the dependencies with:

  npm install

Usage

To run the project, execute the following command:

  npm start

Run tests

To run tests, run the following command:

  npm run test

Deployment

You can deploy this project using:

  npm run build

This will create a production ready build for website in the dist directory. You can then deploy this directory on the GitHub Pages.

πŸ‘₯ Authors

πŸ‘¨β€πŸš€ Hein Thant

πŸ‘¨β€πŸš€ Amanuel Worku

(back to top)

🎯 Future Features

These are the features we want to implement in the upcoming updates.

  • Add a hero section
  • Implement search feature
  • Add reservations
  • Add sort-by button

(back to top)

🀝 Contributing

We welcome any contributions to our website! If you have an idea for a new feature or have found a bug, please open an issue or submit a pull request.

Feel free to check the issues page.

(back to top)

πŸ’– Show your support

If you like this project, please consider giving it a ⭐. We really appreciate your support. Thank you!

(back to top)

πŸ™ Acknowledgments

I would like to thank Microverse for giving us this opportunity to work together and work on a project to understand what we have learned.

(back to top)

πŸ“ License

This project is MIT licensed.

(back to top)

js-capstone's People

Contributors

amanworku avatar indiecodermm avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

js-capstone's Issues

[4pt] -Display Comments pop up with selected item's details - Student B

Create a comments popup only with the top section (displaying details of the selected item)

Screenshot 2021-06-27 at 22 10 45

When the popup loads, the webapp retrieves data from the selected API and shows details about the selected item.

Add event to button prepared by your teammate that will open your popup. You need to communicate with your team member to make sure that you do not block each other (most likely the easiest solution is to merge the list of items feature to the dev branch before you try to add that event).

Peer-to-peer code review

In this Issue :

Hi @IndieCoderMM βœ‹
Your project is looking very good and you did a great job but there are some improvements πŸ‘ .

Highlights!

  • Followed Gitflowβœ”οΈ
  • Good commitβœ”οΈ
  • No Linters errorsβœ”οΈ
  • Professional readmeβœ”οΈ
  • Webpackβœ”οΈ

Suggestions

  • Nice work Hein, I would suggest you reduce the number of items on your home page also please center your popup window on the screen and resize your popup images. Well done again. πŸ’―
  • I think it's better to keep the comments add before.
  • I think is better to display the articles in the same order.

[4pt] - Display list of items on the Homepage - Student A

Create the main part of the homepage that keeps the layout from the wireframe:

Screenshot 2021-06-27 at 21 50 23

When the page loads, the webapp retrieves data from the selected API and shows the list of items on screen with the basic data (e.g. title + image).

Prepare also "Comments" and "Reservations" buttons. They should be doing nothing - just being displayed.

This task does not include displaying the number of likes for each item.

This task does not include the counter of the items.

[0.5pt] Find external API - group task

Find an API to base the development of the webapp around it. The API should allow you to

  • Get a list of items with a unique item id (or generate the unique id).
  • For a given item, get detailed information about it.
    choose an APIs that doesn't need authentication. if you select an API that requires authentication, you should implement it on your own. Also, if you select an API that provides image resources your webapp will be more visual.

[3pt] - Add comments counter - Student B

Even if the API gives you the number of comments you will create a specific function to calculate it.

Make sure that the correct number is displayed on the Comments pop up.

Respect the following rules:

  • Each counter should be implemented as a separate module.
  • A counter function should look for specific DOM elements (e.g. for the comments counter it should look for comments) and make the counting based on what is actually displayed on the page.
  • A counter function should cover all the edge cases you can think about.

Peer-to-peer review Module 2 wk5

Highlight

  • The way you module the code base is very impressive. πŸ₯‡
  • The UI also looks great. πŸ’―
  • I suggest you make the Logo a link to direct users to the home page
  • Also update your readme to reflect what the project is about
  • In all the project adheres to the requirements. Keep it up πŸ‘

[3pt] - Add reservations counter - Student C

Even if the API gives you the number of reservations you will create a specific function to calculate it.

Make sure that the correct number is displayed on the Reservations pop up.

Respect the following rules:

  • Each counter should be implemented as a separate module.
  • A counter function should look for specific DOM elements (e.g. for the comments counter it should look for comments) and make the counting based on what is actually displayed on the page.
  • A counter function should cover all the edge cases you can think about.

[4pt] - Display Reservations pop up with selected item's details - Student C

Create a reservations popup only with the top section (displaying details of the selected item)

Screenshot 2021-06-27 at 22 10 45

When the popup loads, the webapp retrieves data from the selected API and shows details about the selected item.

Add event to button prepared by your teammate that will open your popup. You need to communicate with your team member to make sure that you do not block each other (most likely the easiest solution is to merge the list of items feature to the dev branch before you try to add that event).

[3pt] - Add all items counter on the Homepage - Student A

Even if the API gives you the number of items, you will create a specific function to calculate it.

Make sure that the correct number is displayed on the Homepage.

Respect the following rules:

  • Each counter should be implemented as a separate module.
  • A counter function should look for specific DOM elements (e.g. for the comments counter it should look for comments) and make the counting based on what is actually displayed on the page.
  • A counter function should cover all the edge cases you can think about.

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.