Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature : 기존 웹 라우팅 > 앱 스택 라우팅 방식으로 구현 #9

Merged
merged 36 commits into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
96ca6c0
feat : 네비게이션 모듈 설치
guesung Oct 27, 2023
4879075
feat : 웹뷰 > 앱 통신
guesung Oct 27, 2023
8a2cff0
refactor : WebViewContainer 분리
guesung Oct 27, 2023
2eaaec9
feat : NavigationItem 분리
guesung Oct 28, 2023
bd121e5
feat : StatusBar
guesung Oct 28, 2023
e400fd8
refactor : 컴포넌트 > App 컴포넌트에서 분리
guesung Oct 28, 2023
8e002cb
refactor : SafeArea WebViewContainer로 이동
guesung Oct 28, 2023
48c1d62
feat : 에러핸들링
guesung Oct 28, 2023
8a8719e
refactor : Firebase 알림 권한 요청 함수 분리
guesung Oct 28, 2023
aaef94f
refactor : 불필요한 로직 제거
guesung Oct 28, 2023
f07bebf
refactor : src로 폴더 묶기
guesung Oct 28, 2023
7ec67a3
refactor : js -> ts로 수정
guesung Oct 28, 2023
e4e895c
refactor : 권한 요청 메소드 분리
guesung Oct 28, 2023
5d7a216
refactor : style 직접 추가
guesung Oct 28, 2023
e780659
feat : Dev Tool 설치
guesung Oct 28, 2023
8c9ce41
feat : 언어 구현
guesung Oct 28, 2023
37a0947
feat : Bottom-Tab 설치
guesung Oct 28, 2023
1208fab
feat : url 수정
guesung Oct 28, 2023
a814ea4
refactor : 사용하지 않는 jest 제거
guesung Oct 29, 2023
7b0f4d1
refactor : 웹 주소 개발 서버로 수정
guesung Oct 29, 2023
66def6c
chore : 버전 업그레이드
guesung Oct 29, 2023
f427efb
refactor : console 제거
guesung Oct 29, 2023
b60598d
feat : 안드로이드에서 뒤로가기 버튼 설정
guesung Oct 29, 2023
7eb9657
feat : 버전 업그레이드
guesung Oct 29, 2023
a9b066a
fix : catch문 작성하지 않아서 발생하는 에러
guesung Oct 29, 2023
75340a4
feat : push,back,replace,refresh 분기 처리
guesung Oct 29, 2023
aa806aa
feat : 투명 모달처럼 나타나도록
guesung Oct 29, 2023
4869168
refactor : 에러 메시지 수정
guesung Oct 29, 2023
bc502dd
refactor : 콘솔 주석처리
guesung Oct 29, 2023
b0e76a4
feat : 버전 업 & 개발 서버 변경
guesung Oct 29, 2023
63320c6
feat : 기존 REFRESH 제거 & RESET case 생성
guesung Oct 30, 2023
f873989
feat : 앱 재실행
guesung Oct 30, 2023
24ec592
fix : restart 에러
guesung Oct 30, 2023
c0de7d6
feat : 안드로이드 빌드 명령어 추가
guesung Oct 30, 2023
11b911c
feat : 버전 업
guesung Nov 3, 2023
cf5a6f9
feat : 파싱하여 데이터 보여주기
guesung Nov 3, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
module.exports = {
root: true,
extends: '@react-native',
rules: {
'react/react-in-jsx-scope': 'off',
'react-native/no-inline-styles': 0,
'prettier/prettier': [
'error',
{
'no-inline-styles': false,
},
],
},
};
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"java.configuration.updateBuildConfiguration": "automatic"
"java.configuration.updateBuildConfiguration": "automatic",
"java.compile.nullAnalysis.mode": "automatic",
"typescript.tsdk": "node_modules/typescript/lib"
}
339 changes: 0 additions & 339 deletions App.js

This file was deleted.

20 changes: 20 additions & 0 deletions App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import MainNavigator from './src/components/MainNavigator';
import React from 'react';
import {StatusBar, View} from 'react-native';

export default function App() {
return (
<>
<StatusBar
animated={false}
backgroundColor="white"
translucent={false}
hidden={false}
barStyle="dark-content"
/>
<View style={{flex: 1, backgroundColor: 'white'}}>
<MainNavigator />
</View>
</>
);
}
Loading