vi ~/.bash_profile


명령어를 실행하여 해당명령어를 추가합니다.  이때 Visual Studio Code 위치가 응용프로그램 위치가 아닌경우 해당폴더로 위치를 옮겨주시면 실행이 됩니다. 


source ~/.bash_profile


명령어를 실행하여 적용한다음 프로젝트를 열고자하는 디렉토리로 이동한 다음 code . 명령어를 수행해주면 됩니다.



참고 : https://code.visualstudio.com/docs/setup/mac


블로그 이미지

클라인STR

,


React 실습중 해당에러를 만나서 한참해매다가 해결하였다. 



render 함수에 Value값이 아닌 이벤트 레퍼런스를 {} 연산자를 사용하여 문제가 되었다. 해당구문을 수정하면 에러가 없어진다. 



참고링크  

https://stackoverflow.com/questions/51396840/react-functions-are-not-valid-as-a-react-child-this-may-happen-if-you-return

https://stackoverflow.com/questions/48458334/functions-are-not-valid-as-a-react-child-this-may-happen-if-you-return-a-compon

블로그 이미지

클라인STR

,

React 프로젝트에서 node-sass를 설치하고 @import 로 변수를 참조하였는데  scss가 동작하지 않았다. 


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "name""person-list2",
  "version""0.1.0",
  "private"true,
  "dependencies": {
    "react""^16.8.6",
    "react-dom""^16.8.6",
    "react-scripts""0.9.x"
  },
  "devDependencies": {},
  "scripts": {
    "start""react-scripts start",
    "build""react-scripts build",
    "test""react-scripts test --env=jsdom",
    "eject""react-scripts eject"
  }
}

cs

[변경전 package.json]

package.json 파일에서 react-scripts 버전을 2.0.3으로 변경하고 npm install을 다시 실행해줍니다.





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  "name""city-tours",
  "version""0.1.0",
  "private"true,
  "dependencies": {
    "node-sass""^4.12.0",
    "react""^16.8.6",
    "react-dom""^16.8.6",
    "react-scripts""2.0.3"
  },
  "devDependencies": {},
  "scripts": {
    "start""react-scripts start",
    "build""react-scripts build",
    "test""react-scripts test --env=jsdom",
    "eject""react-scripts eject"
  },
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ]
}
 
cs


[변경된 package.json]



참고 : https://reactjs.org/blog/2018/10/01/create-react-app-v2.html

https://velog.io/@velopert/create-react-app-v2

블로그 이미지

클라인STR

,


https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi 접속하여 React Developer Tools 

크롬브라우저에 추가한다.




chrome://extensions 입력해서 아래와같이 dev 플러그인 설정을 한다. 





크롬개발자 도구를 열고 React 탭을 확인한다. 



출처 : https://reactjs.org/blog/2015/09/02/new-react-developer-tools.html#installation


사용법은 아래 링크를 참조한다. 

https://github.com/facebook/react-devtools/blob/master/README.md#the-react-tab-doesnt-show-up 


블로그 이미지

클라인STR

,
1
sudo gem install cocoapods
cs


cocoapods 설치한다. 




1
react-native init PodTest
cs




해당 프로젝트/ios 폴더로 이동한후 pod init  명령어를 실행한다. 





편집기를 이용하여 Podfile 파일을 아래와 같이 편집한다.



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
 
target 'PodTest' do
  pod 'React', :path => '../node_modules/react-native'
  pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
end
 
post_install do |installer|
  installer.pods_project.targets.each do |target|
    if target.name == "React"
      target.remove_from_project
    end
  end
end
cs



pod install 명령어를 실행하면  target "프로젝트명" 하위에 입력된 라이브러리가 설치된다.



프로젝트명.xcworkspace 파일이 생성되면 정상적으로 실행된것이다. 




출처 : 스튜디오 그로테스큐 강좌 

https://zeddios.tistory.com/25

https://cocoapods.org/

https://d2.naver.com/helloworld/444849

https://comxp.tistory.com/333

블로그 이미지

클라인STR

,

리액트 컴포넌트 라이프 사이클 (React Component Life Cycle)


생성 될 때 (Mount) 호출되는 함수 

constructor : 컴포넌트를 새로 만들 때마다 호출되는 클래스 생성자 메서드

getDerivedStateFromProps :  props에 있는 값을 state에 동기화하는 메서드

render : UI를 렌더링하는 메서드 

componentDidMount : 컴포넌트가 웹 브라우저상에 나타난 후 호출하는 메서드 




업데이트 할때 (Update) 호출되는 함수


컴포넌트가 업데이트되는 경우는 4자이다. 


  • props가 바뀔 때
  • state가 바뀔 때
  • 부모 컴포넌트가 리렌더링될 때
  • this.forceUpdate가 강제로 렌더링을 트리거 할때


getDerivedStateFromProps : , 마운트 과정에서 호출되며 props가 바뀌어서 업데이트할 때도 호출된다. 

shouldComponentUpdate : 컴포넌트가 리렌더링을 해야 할지 말아야 할지를 결정하는 메서드이다. 여기에 false를 반환하면 아래 메서드들을 호출하지 않는다.

render : 컴포넌트를 리렌더링하는 메서드 

getSnapshotBeforeUpdate : 컴포넌트 변화를 DOM에 반영하기 바로 직전에 호출하는 메서드

componentDidUpdate : 컴포넌트의 업데이트 작업이 끝난 후 호출하는 메서드


제거될 때 (UNMOUNT) 호출되는 함수

componentWillUnmount :  컴포넌트가 웹 브라우저상에서 사라지기 전에 호출하는 메서드



render() 

이 메서드 안에서 this.props와 this.state에 접근할 수 있다. 아무것도 보여주고 싶지않다면 null 값이나 false 값을 반환하도록 한다.

이 메서드 안에서는 state 값을 변형해서는 안되며, 웹 브라우저에 접근해서 도 안된다. 

DOM 정보를 가져오거나 변화를 줄 때는 componentDidMount 에서 처리해야 한다.



construcotr 

컴포넌트 생성자 메서드로 컴포넌트를 만들 때 처음 실행된다. state 초기화 할 수 있다.


getDerivedStateFromProps

리액트 v16.3 이후에 새로 만든 라이프사이클 메서드 이다. props로 받아 온 값을 state에 동기화시키는 용도로 사용하며, 컴포넌트를 마운트하거나 props 변경할 때 호출한다.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
static getDerivedStateFromProps(nextProps, prevState) {
    
    
    if (nextProps.value !== prevState.value) { // 조건에 따라 특정 값 동기화
      return {
        value: nextProps. value,
       
      };
    }
 
    // state를 변경할 필요가 없다면 null을 반환
    return null;
  }
 
cs



componentDidMount 

컴포넌트를 만들고 첫 렌더링을 마친뒤 실행된다. 이 안에서는 다른 자바스크립트 라이브러리 또는 프레임워크 함수를 호출하거나 이벤트 등록, setTimeout, setInterval, 네트워크 요청 같은 비동기 작업을 처리하면 된다. 



shouldComponentUpdate

props 또는 state를 변경했을 때, 리렌더링을 시작할지 여부를 지정하는 메서드이다. 반드시 true 또는 false 값을 반환해야한다.

이 메서드가 false를 반환하면 업데이트 과정은 중지된다.

이 메서드 안에서 현재 props와 state는 this.props와 this.state로 접근하고, 새로 설정될 props 또는 state는 nextProps와 nextState로 접근할 수 있다.



getSnapshotBeforeUpdate

리액트 v16.3 이후에 만든 메서드이다. 이 메서드는 render 메서드를 호출한 후 DOM에 변화를 반영하기로 바로 직전에 호출하는 메서드 이다. 여기에서는 반환하는 값은 componentDidUpdate 에서 세번째 파라미터인 snapshot 값으로 전달 받을 수 있다. 

주로 업데이트 하기 직전의 값을 참고할 때 사용된다. (예 : 스크롤바 위치 유지)

1
2
3
4
5
6
getSnapshotBeforeUpdate(prevProps, prevState) {
      if(prevState.array !== this.state.array) {
          const {scrollTop, scrollHeight} = this.list
          return {scrollTop, scrollHeight}
      }
  }

cs



componentDidUpdate

리렌더링을 완료한 후 실행된다. 업데이트 가 끝난 직후 이므로, DOM관련 처리를 해도 무방하다. 여기에서는 prevProps 또는 prevState를 사용하여 컴포넌트가 이전에 가졌던 데이터에 접근할 수 있다.  또 getSnapshotBeforeUpdate에서 반환 값이 있다면 여기에서 snapshot 값을 전달받을 수 있다.

1
componentDidUpdate(prevProps, prevState, snapshot) {. . . }
cs




componentWillUnmount

컴포넌트를 DOM에서 제거할 때 실행한다. componentDidMount 에서  등록한 이벤트, 타이머, 직접 생성한 DOM이 있다면 여기에서 제거 작업을 해야 한다.



원문 : 래액트를 다루는 기술 

블로그 이미지

클라인STR

,
geolocation 을 이용하여 현재 위치 (위도, 경도를 구하는 코드이다.) 해당코드를 이용하여 위도, 경도 위치 정보를 파라메터로 하여 API를 호출하는 서비스를 개발하는 중인데 비동기 호출때문에 문제가 됬다. 

1
2
3
4
5
6
7
8
9
10
11
12
  navigator.geolocation.getCurrentPosition(
       (position) => {
        this.setState({
          latitude: position.coords.latitude,
          longitude: position.coords.longitude,
          error: null,
        })
        
      },
      (error) => this.setState({ error: error.message }),
      { enableHighAccuracy: true, timeout: 20000, maximumAge: 1000 },

    );

cs

[기존에 썼던 코드]



1
2
3
4
5
6
7
8
9
10
11
12
13
var getPosition = function (options) {
  return new Promise(function (resolve, reject) {
    navigator.geolocation.getCurrentPosition(resolve, reject, options);
  });
}
 
getPosition()
  .then((position) => {
    console.log(position);
  })
  .catch((err) => {
    console.error(err.message);
  });

cs

[변경될 형태의 코드]



참고 

https://gist.github.com/varmais/74586ec1854fe288d393

https://stackoverflow.com/questions/47544564/how-geolocation-getcurrentposition-return-value


블로그 이미지

클라인STR

,


react-native-circular-progress  바로가기



react-native-svg 가 먼저 설치되어 있어야 한다. 


react-native-svg 설치하기  바로가기



npm i --save react-native-circular-progress    




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { AnimatedCircularProgress } from 'react-native-circular-progress';
 
 . . .
 
 
render() {
 
    return (
      <View style={{flex:1, justifyContent:"center", alignItems:"center"}}>
            <AnimatedCircularProgress
            size={200}
            width={15}
            fill={100}
            tintColor="#00e0ff"
            onAnimationComplete={() => console.log('onAnimationComplete')}
            backgroundColor="#3d5875" />
        </View>
    );
 
  }
 
cs




블로그 이미지

클라인STR

,