liznomura / the-async-force-ep-2

Async Exercise using Interactive Client side XHR accessing the swapi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The-Async-Force-Ep-2

An async Exercise using client side XHR accessing the swapi API at https://swapi.co

Excercise

Remember to commit after each step.

  1. Make a /js folder and create an app.js file in it.

  2. In the index.html file, load app.js via script tags.

  3. Use live-reload to serve up the files to your browser.

  4. Construct your XHR requests in the app.js file by scraping the value from the input field.

  5. A request to the SWAPI api should be initiated when the button is clicked. Information that comes back from the API should be displayed in the body of the html. Additional html elements should be created to properly parse, display and format the data in a presentable way.

  6. If a person is requested, display the following information: - Name, in an <h2> tag - Gender, in an <p> tag - Species (only get the first species if there are multiple) (only display the name), in an <p> tag

  7. If a planet is requested, display the following information: - Name, in an <h2> tag - Terrain, in an <p> tag - Population, in an <p> tag - a list of all Film names that this planet appeared in <li> tags wrapped in <ul>

  8. If a starship is requested, display the following information: - Name, in an <h2> tag - Manufacturer, in an <p> tag - Starship Class, in an <p> tag - a list of all Film names that this starship appeared in <li> tags wrapped in <ul>

  9. Display any xhr errors in the dom, so the user can see. For example, if a user inputs 99999 as an id, or potato. Display the error on the page.

Note: Go to https://swapi.co to preview the data that you will be requesting

Demo

demo

Hints

  1. URL Fragments are the parts of a URL that an API Endpoint parses to tell the server what resource to retrieve.
  2. Slides on Async HTTP Request with XHR: http://slides.com/sgnl/xhr#/
  3. Documentation on 'XMLHttpRequest' method: https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest
  4. Remember that this is a client side excercise which means that all the code will be executed via the browser's javascript runtime, which means that our global context is the 'window' object. Go ahead and type in 'window' in the browser console to inspect the methods on the 'window' object. In there you will find a method named 'XMLHttpRequest' which you will be using for this excercise.

About

Async Exercise using Interactive Client side XHR accessing the swapi


Languages

Language:HTML 100.0%