Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5cd33d6
fix : fix viewer modal not closing error
jzongyun Feb 7, 2025
c65124b
feat : add dockerfile
jzongyun Feb 7, 2025
20e141c
feat : open confirm modal when click go back in live room page
jzongyun Feb 7, 2025
501f516
refactor : change variable name mute to isMute
jzongyun Feb 7, 2025
f35a75e
fix : click back button modal not closing error
jzongyun Feb 7, 2025
85fe906
feat : add pagination
jzongyun Feb 7, 2025
78d7ea1
refactor : make svg file separate
jzongyun Feb 7, 2025
66e98a3
feat : make viewer modal work when click ellipsis of saved videos
jzongyun Feb 8, 2025
5bcea9a
feat : make search button works
jzongyun Feb 8, 2025
964e612
fix : make search query blank when page changed
jzongyun Feb 8, 2025
33fda72
design : change css style of chatting
jzongyun Feb 8, 2025
fff8370
test : link chat to STOMP
jzongyun Feb 8, 2025
a9f059a
refactor: add space between comma
jzongyun Feb 13, 2025
dba5f04
feat: install axios
jzongyun Feb 16, 2025
408b4b5
refactor: remove useless file
jzongyun Feb 16, 2025
ae85774
feat: integrate API for fetching viewer data
jzongyun Feb 16, 2025
ffe0efe
feat: integrate API for fetching video data
jzongyun Feb 16, 2025
bd5ee70
feat: integrate API to delete video
jzongyun Feb 16, 2025
df872c8
refactor : get viewer number from viewer modal store
jzongyun Feb 16, 2025
65185cd
feat : integrate API to join braodcast
jzongyun Feb 16, 2025
5c7e809
feat : integrate API for fetching video data
jzongyun Feb 16, 2025
9b82a5f
feat : integrate API to create broadcast
jzongyun Feb 16, 2025
a69f463
feat : integrate API to update broadcast setting
jzongyun Feb 16, 2025
48710d4
fix : fix api access link
jzongyun Feb 16, 2025
074ca98
feat: link api for register
jzongyun Mar 1, 2025
fe4f3bd
feat: link api login
jzongyun Mar 1, 2025
8eadcf6
feat: link api exit live
jzongyun Mar 1, 2025
4a8b781
fix: make create live works
jzongyun Mar 1, 2025
058c5e5
fix: make check duplicate id work
jzongyun Mar 1, 2025
996410a
refactor: remove useless space
jzongyun Mar 1, 2025
9ae6989
feat: make logout feature
jzongyun Mar 1, 2025
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
12 changes: 12 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
services:
server:
platform: linux/amd64
build:
context: .
dockerfile: docker/Dockerfile
image: live-tino-fe
volumes:
- .:/code
ports:
- 3000:3000
restart: always
9 changes: 9 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM node:21 AS build-stage

COPY . /code

WORKDIR /code

RUN npm install

CMD ["npm", "run", "start"]
197 changes: 197 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,22 @@
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@fortawesome/react-fontawesome": "^0.2.2",
"@stomp/stompjs": "^7.0.0",
"@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.121",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"axios": "^1.7.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.0.2",
"react-scripts": "5.0.1",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4",
"websocket": "^1.0.35",
"zustand": "^5.0.2"
},
"scripts": {
Expand Down
Loading