티스토리 뷰
Cloud Firebase를 사용하여 실시간 화면 공유를 할 수 있다. PC 또는 태블릿에서 데이터를 입력하면 미치 공유가 되는 것처럼 가능하다. 예를 들어 은행업무를 보면 계좌 개설이나 대출을 받을 때 동의서를 태블릿으로 서명 동의를 받는 것을 예를 들 수 있다.
아래 예시는 키 몸무게를 입력받아 Cloud Firebase 데이터를 적재하고 실시간으로 다시 화면에 표출하는 예시이다.
CloudFirebase.js
import React, { useEffect } from 'react';
import firebase from 'firebase';
import 'firebase/firestore';
const firebaseConfig = {
apiKey: 'AIzaSyCpJV8njsbs9h-zDagtNDuqA94MjqczMkE',
authDomain: 'fir-sample-543f5.firebaseapp.com',
projectId: 'fir-sample-543f5',
storageBucket: 'fir-sample-543f5.appspot.com',
messagingSenderId: '60143898654',
appId: '1:60143898654:web:ccfbb46d9e1f100a899e0f',
measurementId: 'G-8ZSEP4FEPV',
};
firebase.initializeApp(firebaseConfig); // firebase 초기화
const CloudFirebase = () => {
const firestore = firebase.firestore(); // store 사용
const docRef = firestore.doc('users/userId/sync/body'); // doc directory
useEffect(() => {
docRef.onSnapshot((doc) => {
if (doc && doc.exists) {
const data = doc.data();
console.log(data);
document.querySelector('#bodyInfo').innerText = `${data.heigth} / ${data.weight}`;
}
});
});
const onButtonClickCloudFirebase = () => {
const heigth = document.querySelector('#heigth').value;
const weight = document.querySelector('#weight').value;
docRef
.set({
heigth,
weight,
})
.then(() => {})
.catch((error) => {
console.log(error);
});
};
return (
<>
<input id="heigth" />
<input id="weight" />
<h1 id="bodyInfo"> </h1>
<button type="button" onClick={onButtonClickCloudFirebase}>
{' '}
firebase{' '}
</button>
</>
);
};
export default CloudFirebase;
'프로그래밍 > Front end' 카테고리의 다른 글
[Front end] axios 배열 직열화 (0) | 2022.01.13 |
---|---|
[Front end] JavaScript 데이터타입 기초 with ES6, hoisting (0) | 2021.05.04 |
[Front end] React noImage Component (0) | 2021.04.24 |
[Front end] Firebase 문자 인증 (Firebase SMS authentication) (2) | 2021.04.21 |
[Front end] React .env 설정 및 우선순위 (0) | 2021.04.20 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
링크
TAG
- 프로그래머스
- 정렬 알고리즘
- Linux 명령어
- React
- 이직
- 회고
- spring
- Eclipse
- Java
- effective java
- 리눅스 명령어
- 개발환경
- 자바
- 제주도 여행
- 오라클
- 성능분석
- sort algorithm
- javascript
- 오라클 내장 함수
- 경력관리
- Collection
- 제주도 3박4일 일정
- Maven
- 리액트
- 프로그래머
- Tomcat
- 소프트웨어공학
- 리액트 16
- 자바스크립트
- SQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 26 | 27 | 28 | 29 | 30 |
글 보관함