Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
ecd8e69
Chore: 패키지 설치 및 스타일링 설정
YJ0623 Mar 24, 2026
056033d
feat: 채팅창 UI 개발
YJ0623 Mar 24, 2026
20a9ada
feat: 유저 및 메시지 타입 정의
YJ0623 Mar 24, 2026
d0b2d63
feat: zustand 훅 구현
YJ0623 Mar 25, 2026
18eb9dc
fix: 목데이터 분리
YJ0623 Mar 25, 2026
ee55f83
feat: 채팅 전송 기능 구현
YJ0623 Mar 25, 2026
9c81bb4
fix: 뷰포트 크기를 고려한 화면 높이 수정
YJ0623 Mar 25, 2026
2d25d33
fix: 화면 밀림 현상 제거
YJ0623 Mar 25, 2026
84f79bf
style: 날짜변경 폰트 변경
YJ0623 Mar 25, 2026
8c03602
style: 그림자 제거
YJ0623 Mar 25, 2026
b4d9d87
fix: 채팅 간격 수정 및 타임스탬프 로직 변경
YJ0623 Mar 26, 2026
0051ba5
feat: 스타일 폰트 rem 변경 및 채팅방 레이아웃 구현
YJ0623 Apr 2, 2026
0f858c1
feat: Navbar 및 페이지 레이아웃 설계
YJ0623 Apr 2, 2026
2cc78f3
feat: 채팅방 interface 및 채팅방 목데이터 추가
YJ0623 Apr 4, 2026
49a20b8
feat: 단체 채팅방 store 구현
YJ0623 Apr 6, 2026
feca9b6
feat: 프로필 UI 구현
YJ0623 Apr 8, 2026
c4ec0cb
fix: 반복되는 코드 컴포넌트화
YJ0623 Apr 8, 2026
6b99c25
feat: 1차 개발 완료
YJ0623 Apr 8, 2026
dd8b5e5
fix: 미사용 코드 제거
YJ0623 Apr 8, 2026
1049d03
fix: 이미지 절대경로 -> 상대경로
YJ0623 Apr 8, 2026
d58cedd
fix: 경로수정 2
YJ0623 Apr 8, 2026
c3fbef1
fix: 채팅방 내 헤더 로직 수정
YJ0623 Apr 8, 2026
9b29c21
fix: 미완성 코드 제거
YJ0623 Apr 8, 2026
485c5d5
feat: "새 채팅" 로직 구현
YJ0623 Apr 8, 2026
c26c44a
feat: 2차 QA 반영 개발 완료
YJ0623 Apr 8, 2026
05e9718
feat: 통화페이지 searchbar 로직 추가
YJ0623 Apr 9, 2026
7690000
fix: svg파일 변경
YJ0623 Apr 9, 2026
020a982
fix: 서치바 의존성 수정
YJ0623 Apr 9, 2026
f378439
fix: 스크롤 수정
YJ0623 Apr 9, 2026
69dc3c2
fix: 스크롤 수정 3
YJ0623 Apr 9, 2026
7fabcab
fix: 스크롤 수정 4
YJ0623 Apr 9, 2026
6b875b6
Merge branch 'CEOS-Developers:master' into YJ0623
YJ0623 Apr 9, 2026
fef2396
fix: 스크롤 수정 5
YJ0623 Apr 9, 2026
2cc9b79
Merge branch 'YJ0623' of https://github.com/YJ0623/react-messenger-23…
YJ0623 Apr 9, 2026
98fd150
fix: 스크롤 수정 6
YJ0623 Apr 9, 2026
1259fea
fix: 스크롤 수정 6
YJ0623 Apr 9, 2026
8b6dc2e
fix
YJ0623 Apr 11, 2026
64032de
fix: 채팅창 페이지 카테고리 레이아웃 개선
YJ0623 Apr 12, 2026
8661a48
fix: tsconfig.json파일 변경
YJ0623 Apr 12, 2026
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
27 changes: 27 additions & 0 deletions messenger_app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

.env
.env.local
6 changes: 6 additions & 0 deletions messenger_app/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"singleQuote": true,
"semi": true,
"tabWidth": 2,
"trailingComma": "es5"
}
2 changes: 2 additions & 0 deletions messenger_app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
배포 링크: [https://react-messenger-23rd-git-yj0623-yj0623s-projects.vercel.app/](url)
QA 노션 링크: [https://www.notion.so/1-32d8b031c24d804ea74df3ef09995c0b](url)
26 changes: 26 additions & 0 deletions messenger_app/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import tseslint from 'typescript-eslint'
import { defineConfig, globalIgnores } from 'eslint/config'

export default defineConfig([
globalIgnores(['dist']),
{
files: ['**/*.{ts,tsx}'],
extends: [
js.configs.recommended,
tseslint.configs.recommended,
reactHooks.configs.flat.recommended,
reactRefresh.configs.vite,
],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
rules: {
'react/react-in-jsx-scope': 'off',
},
},
])
Binary file added messenger_app/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions messenger_app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>messenger_app</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading