React_Native (2)

ํ•œ์ƒํ˜„ยท2021๋…„ 2์›” 5์ผ
0

React_Native

๋ชฉ๋ก ๋ณด๊ธฐ
2/2
post-thumbnail

๐Ÿ˜€ ์œ„์น˜๋ฅผ ๊ฐ€์ ธ์˜ค๊ณ , ์œ„์น˜์˜ ์œ„๋„, ๊ฒฝ๋„์— ๋”ฐ๋ฅธ ์„ญ์”จ๋ฅผ ๊ฐ€์ ธ์˜ค๋Š” ์ž‘์—….

๐Ÿ”ด ์œ„๋„, ๊ฒฝ๋„์— ๋”ฐ๋ฅธ ์„ญ์”จ์˜จ๋„ get

๐Ÿ’ปApp.js

  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}/>;
  }
}

๐Ÿ˜€ ์ฝ”๋“œ ์„ค๋ช…

  1. this.setState({ isLoading: false,condition:weather[0].main, temp })์—์„œ data.main.temp์— ์„ญ์”จ ์˜จ๋„๊ฐ€ ๋‹ด๊ฒจ์ ธ ์žˆ์Œ. axios์˜ ํ™ˆํŽ˜์ด์ง€๋กœ ๋“ค์–ด๊ฐ€๋ณด๋ฉด ํ™•์ธ ๊ฐ€๋Šฅ. es6 ๋ฌธ๋ฒ•์œผ๋กœ ์ถ•์•ฝ ๊ฐ€๋Šฅ.
  2. const { data:{main :{temp},weather ์˜ es6 ๋ฌธ๋ฒ• ์‚ฌ์šฉ.
  3. isLoading์— ๋”ฐ๋ผ Loading ์ค‘์ด๋ฉด Loading ํŽ˜์ด์ง€, ๊ทธ๋ ‡์ง€ ์•Š์œผ๋ฉด Weather ํŽ˜์ด์ง€.
  4. Weather ํŽ˜์ด์ง€์— props๋กœ temp = {temp}๋ฅผ ๋„˜๊ฒจ์ค€๋‹ค.

๐Ÿ’ป Weather.js

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"
  }
});

๐Ÿ˜€ ์ฝ”๋“œ ์„ค๋ช…

  1. propTypes๋กœ temp์˜ ํ˜•์‹ ๋งž์ถฐ์คŒ.
  2. condition์€ ํ•ด๋‹น ๋ฐฐ์—ด์— ํฌํ•จ๋˜์–ด ์žˆ์–ด์•ผ ํ•œ๋‹ค๋Š” ์˜๋ฏธ.

๐Ÿ”ด ์•„์ด์ฝ˜ ๋ฐ ์˜จ๋„ ํ‘œ์‹œํ•˜๊ธฐ

๐Ÿ’ป Weather.js

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"
  }
});

๐Ÿ˜€ ์ฝ”๋“œ ์„ค๋ช…

  1. import { MaterialCommunityIcons } from "@expo/vector-icons"; : expo์˜ icon API์—์„œ ๊ฐ€์ ธ์˜จ icon ๋ชจ์Œ.
  2. view๋ฅผ ๋ฐ˜์œผ๋กœ ์ชผ๊ฐœ์คŒ.
  3. <MaterialCommunityIcons size={96} name="weather-lightning-rainy" /> : icon์˜ name์„ ํ†ตํ•ด์„œ ๊ฐ€์ ธ์˜ด.

๐Ÿ”ด background gradient color

terminal : expo install expo-linear-gradient

๐Ÿ’ป Weather.js

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
  }
});

<์ถœ์ฒ˜ : ๋…ธ๋งˆ๋“œ ์ฝ”๋”>

profile
์˜ ๊ณต๋ถ€ ๋…ธํŠธ.

0๊ฐœ์˜ ๋Œ“๊ธ€

๊ด€๋ จ ์ฑ„์šฉ ์ •๋ณด