๐ ์์น๋ฅผ ๊ฐ์ ธ์ค๊ณ , ์์น์ ์๋, ๊ฒฝ๋์ ๋ฐ๋ฅธ ์ญ์จ๋ฅผ ๊ฐ์ ธ์ค๋ ์์ .
๐ด ์๋, ๊ฒฝ๋์ ๋ฐ๋ฅธ ์ญ์จ์จ๋ get
export default class extends React.Component {
state = {
isLoading: true
};
getWeather = async (latitude, longitude) => {
const { data:{main :{temp},
weather
} } = await axios.get(
`http://api.openweathermap.org/data/2.5/weather?lat=${latitude}&lon=${longitude}&APPID=${API_KEY}&units=metric`
);
this.setState({ isLoading: false,condition:weather[0].main, temp });
};
getLocation = async () => {
try {
...
}
componentDidMount(){
this.getLocation();
}
render(){
const {isLoading,condition, temp } = this.state;
return isLoading? <Loading /> : <Weather temp={temp}/>;
}
}
๐ ์ฝ๋ ์ค๋ช
this.setState({ isLoading: false,condition:weather[0].main, temp })
์์ data.main.temp์ ์ญ์จ ์จ๋๊ฐ ๋ด๊ฒจ์ ธ ์์. axios์ ํํ์ด์ง๋ก ๋ค์ด๊ฐ๋ณด๋ฉด ํ์ธ ๊ฐ๋ฅ. es6 ๋ฌธ๋ฒ์ผ๋ก ์ถ์ฝ ๊ฐ๋ฅ.const { data:{main :{temp},weather
์ es6 ๋ฌธ๋ฒ ์ฌ์ฉ.import React from "react";
import { View, Text, StyleSheet } from "react-native";
import PropTypes from "prop-types";
export default function Weather({ temp }) {
return (
<View style={styles.container}>
<Text>{temp}</Text>
</View>
);
}
Weather.propTypes = {
temp: PropTypes.number.isRequired,
condition:PropTypes.oneOf(["Thunderstorm","Haze","Drizzle", "Rain", "Snow", "Atmosphere","Clear","Clouds"]).isRequired
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: "center"
}
});
๐ ์ฝ๋ ์ค๋ช
๐ด ์์ด์ฝ ๋ฐ ์จ๋ ํ์ํ๊ธฐ
import React from "react";
import { View, Text, StyleSheet } from "react-native";
import PropTypes from "prop-types";
import { MaterialCommunityIcons } from "@expo/vector-icons";
export default function Weather({ temp }) {
return (
<View style={styles.container}>
<View style = {styles.halfContainer}>
<MaterialCommunityIcons size={96} name="weather-lightning-rainy" />
<Text style ={styles.temp}>{temp}ยบ</Text>
</View>
<View style = {styles.halfContainer}/>
</View>
);
}
Weather.propTypes = {
...
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: "center"
},
temp: {
fontSize: 42
},
halfContainer: {
flex: 1,
justifyContent: "center",
alignItems: "center"
}
});
๐ ์ฝ๋ ์ค๋ช
import { MaterialCommunityIcons } from "@expo/vector-icons";
: expo์ icon API์์ ๊ฐ์ ธ์จ icon ๋ชจ์.<MaterialCommunityIcons size={96} name="weather-lightning-rainy" />
: icon์ name์ ํตํด์ ๊ฐ์ ธ์ด.๐ด background gradient color
terminal : expo install expo-linear-gradient
import React from "react";
import { View, Text, StyleSheet, StatusBar } from "react-native";
import PropTypes from "prop-types";
import { LinearGradient } from "expo-linear-gradient";
import { MaterialCommunityIcons } from "@expo/vector-icons";
const weatherOptions = {
Thunderstorm: {
iconName: "weather-lightning",
gradient: ["#373B44", "#4286f4"],
title: "Thunderstorm in the house",
subtitle: "Actually, outside of the house"
},
Drizzle: {
iconName: "weather-hail",
gradient: ["#89F7FE", "#66A6FF"],
title: "Drizzle",
subtitle: "Is like rain, but gay ๐ณ๏ธโ๐"
},
...
};
export default function Weather({ temp, condition }) {
return (
<LinearGradient
colors={weatherOptions[condition].gradient}
style={styles.container}
>
<StatusBar barStyle="light-content" />
<View style={styles.halfContainer}>
<MaterialCommunityIcons
size={96}
name={weatherOptions[condition].iconName}
color="white"
/>
<Text style={styles.temp}>{temp}ยฐ</Text>
</View>
<View style={styles.textContainer}>
<Text style={styles.title}>{weatherOptions[condition].title}</Text>
<Text style={styles.subtitle}>
{weatherOptions[condition].subtitle}
</Text>
</View>
</LinearGradient>
);
}
Weather.propTypes = {
...
};
const styles = StyleSheet.create({
...
title: {
color: "white",
fontSize: 44,
fontWeight: "300",
marginBottom: 10,
textAlign: "left"
},
subtitle: {
fontWeight: "600",
color: "white",
fontSize: 24,
textAlign: "left"
},
textContainer: {
alignItems: "flex-start",
paddingHorizontal: 40,
justifyContent: "center",
flex: 1
}
});
<์ถ์ฒ : ๋ ธ๋ง๋ ์ฝ๋>