티스토리 뷰
1) Firestore 설정하기
firebase authentication은 우리가 원하는 모든 회원 정보를 담을 수 없다.
firestore를 써서 집주소를 저장해보자.
- 파이어베이스 대시보드 → Firestore로 이동
- shared/firebase.js 에서 firestore 설정
import { initializeApp } from "firebase/app";
import { getAuth } from "firebase/auth";
import { getFirestore } from "firebase/firestore";
const firebaseConfig = {
// 인증 정보!
};
const app = initializeApp(firebaseConfig);
export const auth = getAuth();
export const db = getFirestore(app);
export default app;
2) 회원가입
백엔드 api가 없이도 할 수 있도록 firebase authentication을 사용하지만 백엔드 api를 사용한다고 해서 순서가 달라지진 않는다. (구현 방식은 다를 수 있음)
중요한 부분은
1. 회원 정보를 받고,
2. 회원가입을 위한 서버 요청을 하고,
3. 응답(토큰 등)을 받아온다.
이 순서 이다.
그 외의 처리는 그때 그때 사용하는 것에 따라, 프로젝트 요구사항에 따라 달라질 수 있다.
- firebase Authentication과 firestore를 사용한 회원 가입하기
- firebase.js에 만들어둔 auth, firestore 가져오기
import { initializeApp } from "firebase/app";
import { getAuth } from "firebase/auth";
import { getFirestore } from "firebase/firestore";
// TODO: Replace the following with your app's Firebase project configuration
const firebaseConfig = {
// 인증정보!
};
const app = initializeApp(firebaseConfig);
export const auth = getAuth();
export const db = getFirestore(app);
export default app;
- auth.createUserWithEmailAndPassword()로 가입 시키기
import { createUserWithEmailAndPassword } from 'firebase/auth';
import './App.css';
import { auth, db } from './shared/firebase';
function App() {
const signup = async () => {
const user = await createUserWithEmailAndPassword(auth, "devdev@aaa.com", "devdev123!");
console.log(user);
}
return (
<div className="App">
<button onClick={signup}>회원가입</button>
</div>
);
}
export default App;
3. 가입에 성공했다면 firestore에 유저 정보를 바로 업데이트
import { createUserWithEmailAndPassword } from 'firebase/auth';
import './App.css';
import { auth, db } from './shared/firebase';
import {collection, addDoc} from "firebase/firestore";
function App() {
const signup = async () => {
const user = await createUserWithEmailAndPassword(auth, "devdev@aaa.com", "devdev123!");
console.log(user);
const user_data = await addDoc(collection(db, "users"), {user_id: "1111", name: "perl"});
console.log(user_data.id);
}
return (
<div className="App">
<button onClick={signup}>회원가입</button>
</div>
);
}
export default App;
'프론트엔드 > React' 카테고리의 다른 글
리액트에 Firebase 연동하기 (0) | 2022.06.08 |
---|---|
Firebase (0) | 2022.06.08 |
자바스크립트 스크립트 등록하기 (0) | 2022.06.06 |
네트워크 요청 2 - Fetch API와 Axios (0) | 2022.06.06 |
네트워크 요청 1 - XMLHTTPRequest (0) | 2022.06.06 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- find
- 불변 객체
- 비교 연산자
- EVERY
- redux thunk
- findindex
- 기본형 데이터
- 느슨한 타입(loosely typed)
- 동적(dynamic) 언어
- redux-middleware
- null
- 얕은복사
- map
- redux middleware
- some
- filter
- 타입변환
- redux-thunk
- 참조형 데이터
- redux
- undefined
- foreach
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함