Skip to content

Commit

Permalink
removes class comp and updates readme
Browse files Browse the repository at this point in the history
  • Loading branch information
LucyMac committed Jun 12, 2020
1 parent 4e80406 commit 44d52a3
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 49 deletions.
49 changes: 26 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please **fork** and **clone** this repository. There are instructions for how t

Then navigate to the correct directory using the command line.

In the project directory, you can run:
Once you're in the project directory, you can run:
```
npm install
Expand All @@ -17,17 +17,20 @@ This runs the app in the development mode.

Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

Edit `App.js` and add a tiny change - maybe have the blank page say your name!
### Test to see if it worked
Edit `App.js` and add a tiny change, like adding your name, to see if the change appears.

Add and commit this change to git, and push it up to your remote github repo:
```
git add .
git commit -m "Added my name to the app!"
git commit -m "Added my name to the app"
git push
```

Pay attention to any errors, and then check that your changes made it to github, by visiting github.com with your browser and inspecting your repo there.

All good? Then let's get coding.

## Instructions

### Aim
Expand All @@ -40,24 +43,22 @@ You will be connecting to a real-time weather API to make a weather app that loo

### 1. Getting started: Static HTML and CSS

Let's start slow by creating the HTML and CSS we need to make the app look like the design: do this is App.js and App.css
Let's start slow by creating the HTML and CSS we need to make the app look like the design: do this is `App.js` and `App.css`

Don't worry about fetching data yet, you can use **invented, "hardcoded"** values for now - just focus on getting content up on the page and imitating the design provided. However, do not leave out the values! Put numbers in so that you can confirm how the layout will work with numbers present. Using the numbers that occur in the screenshot is a good idea.

A few things to think of:

- The font you need is called `Raleway` and is already loaded up into the project - but remember you'll need to declare it in your CSS.
- You'll need to copy the colours, spacing, layout and size of elements in the design. This is a core skill as a front-end developer! :)
- Use placeholder images (such as [these kittens](https://placekitten.com/) ), initially.
- Extra points if you can think of a nice way to display the app on mobile ;)
- The weather icons you need are in the `img/weather-icons` folder, but you can use a placeholder image like [this one](https://cdn2.iconfinder.com/data/icons/weather-flat-14/64/weather02-512.png) for now if that's easier. See the next section below for help with images.
- Extra points if you use media queries to make the app responsive ;)

#### A note on using images in React

Once you have your design working with placeholder images, you can try using the weather icons we've provided.

There is a special way to show images from a React app created with create-react-app. You can [read about how to add and use images in a create-react-app project in the official docs](https://facebook.github.io/create-react-app/docs/adding-images-fonts-and-files), but in short, you'll need to do these two things:

At the top of your component, import the image:
At the top of your component, import the image like this (remember to give it a name!)

```
import storm from '../img/weather-icons/storm.svg';
Expand All @@ -70,6 +71,7 @@ Then later in your `<img/>` tag, use the imported value as the image source, lik

Once you're happy with the way your app looks, it's time to move on.


### 2. Break your HTML into React components

This is about cutting up your one big single block of HTML and putting sections of it in React components instead.
Expand All @@ -78,7 +80,7 @@ You'll need several components - you can decide how much you want to break thing

![wireframe](src/img/instructions/wireframe.png)

If you find yourself copy-pasting an html section multiple times with small changes, you've probably found a good candidate for a reusable React component.
If you find yourself copy-pasting an HTML section multiple times with small changes, you've probably found a good candidate for a reusable React component.

Note that your React components at this stage should still have hardcoded numbers for temperature, etc.

Expand All @@ -99,18 +101,18 @@ Copy all contents into a new file and add it to your project somewhere under the
Import it into your react app with

```
import FakeWeather from "./data/FakeWeather.json";
import FakeWeatherData from "./data/FakeWeather.json";
```

Into which react component should you load it? The highest component in the hierarchy that needs to know about the weather, or that needs to communicate it to its children.
Into which react component should you load it? The highest component in the hierarchy that needs to know about the weather, or that needs to communicate it to its children.

#### About the JSON structure

Spend some time investigating the json structure and figuring out which bits you need to use.

This JSON represents weather data for **just one city**.

It includes **a `list` array containing the weather forecast for the next 24 hours, split into 8 x 3-hour chunks**
It includes **an array called `list` containing the weather predicitons for the next 5 days, split into 8 x 3-hour chunks**
Each object inside `list` contains a `weather` array with an object that looks like this:

```
Expand All @@ -124,19 +126,19 @@ Each object inside `list` contains a `weather` array with an object that looks l
]
```

**Note:** the `list` data includes 36 items (to cover forecasts for 5 days). The design only requires you to use enough to cover 24 hours - so you won't need every single item in the array.

#### Extracting the values from the Fake Weather json

Now it's time to replace all of the hard-coded values in your html with values from `FakeWeather.json`.
Now it's time to replace all of the hard-coded values in your HTML (or JSX) with values from `FakeWeather.json`.

You will probably have to pass sections of the weather object to child components, as props.

Once you've got this all working, it's time to fetch some real weather data!

### 5. Getting the LIVE weather data

We'll be using data from this API: http://api.openweathermap.org/data/2.5/forecast?q=${this.state.searchInput}&cnt=8&units=metric&appid=${apiKey}

The data will come in JSON format, and will look like this: https://samples.openweathermap.org/data/2.5/forecast?q=M%C3%BCnchen,DE&appid=b6907d289e10d714a6e88b30761fae22
We'll be using data from this API: https://openweathermap.org/forecast5 for which **you'll need an API key**:

**1)** Register to get your personal API key. This is free, and will enable you to make (limited) requests to fetch the weather data you need. Follow the steps here: https://openweathermap.org/appid

Expand All @@ -147,7 +149,7 @@ The data will come in JSON format, and will look like this: https://samples.open
**3)** The format you'll need to follow to make API calls is:
`http://api.openweathermap.org/data/2.5/forecast?q=${CITY_NAME}&cnt=8&units=metric&appid=${YOUR_API_KEY}`

where CITY_NAME is replaced by the city you're looking for, for example 'London', and YOUR_API_KEY is replaced with... your personal API key, of course.
where `CITY_NAME` is replaced by the city you're looking for, for example 'London', and `YOUR_API_KEY` is replaced with... your personal API key, of course.

example format: http://api.openweathermap.org/data/2.5/forecast?q=London&cnt=8&units=metric&appid=57cf9da04987637a23fcbc26f5356e12 (this doesn't work because it's a fake API key, but when you replace it with yours, it will ;) )

Expand All @@ -163,8 +165,9 @@ Look at the design:

- The response you get from the API will need to be passed down as props to the `<CurrentWeather />` component so it knows what weather to display.

- As we've seen before, the response will include **a `list` array containing the weather forecast for the next 24 hours, split into 8 x 3-hour chunks**
Each object inside `list` contains a `weather` array with an object that looks like this:
- As we've seen before, the response will include a `list` array containing the weather forecast for the next 5 days, split into chunks. **You will only need the first item in `list` to display the current weather** (you will use the rest of the items later to display *future* weather).

- Each object inside `list` contains a `weather` array with an object that looks like this:

```
"weather": [
Expand All @@ -176,11 +179,11 @@ Each object inside `list` contains a `weather` array with an object that looks l
}
]
```
**The `id` is what we'll use to display the current weather icon.**
**The `id` is what we'll use to display the current weather icon** (you can ignore the "icon" key in the above object).

### 6. Matching up the weather `id` with the appropriate icon

We will **not** be using the `icon` property of the data, we will only use the `id` and match it with our own svg icons. You can find these svgs in `src/img/weather-icons`.
We will **not** be using the `icon` property of the data, we will only use the `id` and match it with our own SVG icons. You can find these SVGs in `src/img/weather-icons`.

You will need to write some code to do the following:

Expand All @@ -200,7 +203,7 @@ So for example, in the above response, the `id` was 521, which is between 500 an
### 7. Showing more weather information

Once you're showing the icon, you can also display information about the temperature, the humidity etc.
Have a look at the response from the API to find this information, and try to display it as shown in the design! ;)
Have a look at the response from the API to find this information, and try to display it as shown in the design!

### 8. Error-Handling

Expand Down
3 changes: 3 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,7 @@



/* Future weather */



29 changes: 12 additions & 17 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,19 @@
import React, { Component } from 'react';
import React from 'react';
import './App.css';

class App extends Component {
function App() {
return (
<div className="app">

constructor(props) {
super(props);
this.state = {
};
}
<header className="app__header">
</header>

render () {
return (
<div className="app">
<header className="app__header">
</header>
<main className="app__main">
</main>
</div>
);
}
<main className="app__main">
</main>

</div>
);
}


export default App;
9 changes: 0 additions & 9 deletions src/App.test.js

This file was deleted.

0 comments on commit 44d52a3

Please sign in to comment.