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

[4주차] 김동혁 미션 제출합니다. #14

Open
wants to merge 48 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
83b0548
feat: react 초기세팅
ddhelop Mar 25, 2024
602a33f
fix: esLintBugFix
ddhelop Mar 25, 2024
55e30d2
feat: addDataDummy
ddhelop Mar 25, 2024
68934f1
feat: svg 업로드 룰 추가
ddhelop Mar 26, 2024
ce3e25c
feat: styled-components 설치
ddhelop Mar 26, 2024
1c0220b
feat: ChatRoom UI
ddhelop Mar 27, 2024
70e452e
fix: 채팅방 높이 수정
ddhelop Mar 27, 2024
b484fa5
feat: 상대방 메세지 UI
ddhelop Mar 27, 2024
96358a1
fix: 대화상자 너비 조절
ddhelop Mar 27, 2024
7318b65
feat: 내 대화상자 UI
ddhelop Mar 27, 2024
b977149
feat: recoil 설치
ddhelop Mar 28, 2024
55ff1e5
fix: 데이터 수정 및 삭제
ddhelop Mar 28, 2024
729b2b0
feat: 메세지 사용자 전환
ddhelop Mar 28, 2024
cf1b9e6
fix: 버그 수정
ddhelop Mar 28, 2024
6c87b9c
feat: 보낸 시간(24시간제) 설정
ddhelop Mar 28, 2024
10ef25a
feat: 메세지 연속시 말꼬리 및 프로필 제거
ddhelop Mar 28, 2024
1fea697
feat: 메세지 입력시 스크롤 하단 고정
ddhelop Mar 28, 2024
4242d3f
feat:
ddhelop Mar 28, 2024
48743b7
feat: 웹앱에서 확대방지
ddhelop Mar 28, 2024
2b43ae4
style: 아이콘 굵기 변경
ddhelop Mar 28, 2024
dab2587
feat: 모바일 사용환경 개선
ddhelop Mar 28, 2024
a6bbdbf
fix: 키보드 고정
ddhelop Mar 28, 2024
63688a3
fix: bugFix
ddhelop Mar 28, 2024
e3ba781
fix: bugFix
ddhelop Mar 28, 2024
3fa43cf
fix: bugTest
ddhelop Mar 28, 2024
89dc72e
refactor: 불필요한 코드 삭제
ddhelop Mar 29, 2024
cacd799
fix: 말꼬리 위치 조정
ddhelop Mar 29, 2024
88bf03b
fix: 이름 클릭 cursor pointer 적용
ddhelop Mar 29, 2024
b5b71e4
feat: 데스크톱에서 Header, Footer 활성화
ddhelop Apr 7, 2024
5305d6b
feat: DeskTop일때만 핸드폰 모양의 Header,Footer 활성화
ddhelop Apr 7, 2024
bcf31dc
feat: TabBar UI
ddhelop Apr 7, 2024
fb88fff
feat: Footer 하단 절대위치 지정
ddhelop Apr 7, 2024
2aafc11
feat: mainPage UI
ddhelop Apr 7, 2024
c3d6c92
feat: TabBarLink
ddhelop Apr 7, 2024
b35ba7c
refactor: Footer 한번에 관리
ddhelop Apr 29, 2024
034ce41
fix: fix_router_src
ddhelop Apr 29, 2024
d7242a6
feat: 채팅방 목록 UI
ddhelop Apr 29, 2024
a139a5a
feat: menuColorChange
ddhelop May 2, 2024
3b94f97
feat: footer, header 고정
ddhelop May 2, 2024
f0ecbfe
feat: ProfileUI
ddhelop May 2, 2024
3ff96d2
feat: HomeScreenUI
ddhelop May 2, 2024
bf59994
fix: styleFix
ddhelop May 2, 2024
a1cf06e
fix: fixStyle
ddhelop May 3, 2024
c73f794
feat: :sparkles:
ddhelop May 3, 2024
c745452
fix: fixBug
ddhelop May 3, 2024
0c9bb36
fix: paddingFix
ddhelop May 4, 2024
b71065f
fix: paddingFix
ddhelop May 4, 2024
44cc097
fix: fixColor
ddhelop May 4, 2024
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
11 changes: 11 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"semi": true,
"useTabs": true,
"arrowParens": "avoid",
"endOfLine": "lf"
}
36,560 changes: 18,383 additions & 18,177 deletions package-lock.json

Large diffs are not rendered by default.

88 changes: 47 additions & 41 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,49 @@
{
"name": "react-messenger-19th",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.91",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
"name": "react-messenger-19th",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.91",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"react-scripts": "5.0.1",
"recoil": "^0.7.7",
"styled-components": "^6.1.8",
"typescript": "*",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"prettier": "3.2.5"
}
}
3 changes: 3 additions & 0 deletions public/ChatRoom/MyChatTail.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/ChatRoom/add.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/ChatRoom/back.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/ChatRoom/call.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/ChatRoom/chatTail.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/ChatRoom/defaultProfile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/ChatRoom/emoticon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/ChatRoom/more.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/ChatRoom/search.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/ChatRoom/send.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/icon/7272profile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/icon/Character.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icon/Footer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/icon/Footer.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/icon/More.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions public/icon/Status Bar/Icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/icon/addChat.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions public/icon/addUser.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/icon/alarm.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/icon/chatProfile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/icon/defaultFriendProfile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/icon/git.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/icon/instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/icon/leftArrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading