Skip to content

Simple pokemon app with HTML, CSS, JavaScript and the usage of the jQuery library. The app loads data from an external API.

Notifications You must be signed in to change notification settings

LisaPMunich/Simple-Pokemon-JS-App

Repository files navigation

Building a Simple Pokedex App

Project Description

In this project I used JavaScript to build a simple client-side application that can communicate with an external API. This responsive app displays a list of 150 Pokemon from the database. The user can search Pokemon by name and click on each Pokemon to open a modal with more information on height and types as well as an image. The objective of this project was to get experience in integrating the data from an external third-party API as well as seeing the advantages of using vanilla JavaScript as well as Bootstrap classes.

Key Features

  • Loads data from an external source (API):https://pokeapi.co/api/v2/pokemon/?limit=150
  • View a list of pokemon
  • Modal/pop-up: With a click on a button the user can view more details on the pokemon selected: height, types and a frontal image.
  • Search box: When typing in the name of a pokemon then the list item is filtered and displayed.

Technologies and Requirements

  • This app was first written in HTML, SCSS and JavaScript (see Screenshot below). Later it was rewritten with jQuery and some Bootstrap elements added.
  • The Project follows the rules of ESLint, Prettier, Stylelint.
  • The app works in Chrome, Firefox, Safari, Edge, and Internet Explorer 11 (by incorporating Polyfills for fetch and promise)

Learnings from the Project

Bootstrap

  • how to apply bootstrap grid and define breakpoints for responsiveness
  • setting margins to create gaps between items influences grid properties, use border in the color of the background instead

Modal

  • aligning the modal at center of page with position: fixed and transform: translate (-50%, 50%)

Search box

  • in order to filter by pokemon name, it is necessary to first pinpoint target and value in external API using console.log

Display images from a third-party API

  • when using an external API, the developer relies on a good documentation, since he has to work with the methods and endpoints delivered by the API.
  • the API does not deliver any explicit ID for each pokemon. Since the items are delivered in a certain order, it is possible to get the images with a forEach on datafromAPI.
  • Given the chance to re-do this app, I would probably search for another pokemon API with higher solution images as well as better documentation. Especially for a beginner this API was not structured well and it was not easy to find what I was looking for.

How to run and use the project ...

clone it ...

  1. First clone the file. For instructions, how to clone a github repository, click here.

  2. Go to your local directory, where you stored the cloned file and click the index.html to open in the browser.

... or use it live

Click here

About

Simple pokemon app with HTML, CSS, JavaScript and the usage of the jQuery library. The app loads data from an external API.

Topics

Resources

Stars

Watchers

Forks