-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from 2024-Team-Techeer-Salon/develop
[build] main update
- Loading branch information
Showing
29 changed files
with
539 additions
and
405 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Frontend CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20.14.0' | ||
|
||
- name: Install yarn | ||
run: npm install -g yarn | ||
|
||
- name: Cache yarn dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.yarn/cache | ||
node_modules | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn- | ||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Build project | ||
run: yarn build | ||
|
||
|
||
# - name: Trigger Docker CI/CD | ||
# run: | | ||
# curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | ||
# -H "Accept: application/vnd.github.v3+json" \ | ||
# https://api.github.com/repos/your-org/docker-repo/dispatches \ | ||
# -d '{"event_type":"frontend_updated"}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,5 @@ yarn-error.log* | |
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,23 @@ | ||
/* eslint-disable import/prefer-default-export */ | ||
/* eslint-disable no-console */ | ||
|
||
export function GoogleLogin() { | ||
try { | ||
window.location.href = `${process.env.NEXT_PUBLIC_BASE_URL}/oauth2/authorization/google`; | ||
} catch (error) { | ||
console.error('구글 로그인 에러 : ', error); | ||
throw new Error('구글 로그인 에러 : ', error || ''); | ||
} | ||
} | ||
|
||
export function KakaoLogin() { | ||
try { | ||
window.location.href = `${process.env.NEXT_PUBLIC_BASE_URL}/oauth2/authorization/kakao`; | ||
} catch (error) { | ||
console.error('카카오 로그인 에러 : ', error); | ||
throw new Error('카카오 로그인 에러 : ', error || ''); | ||
} | ||
} | ||
|
||
export function NaverLogin() { | ||
try { | ||
window.location.href = `${process.env.NEXT_PUBLIC_BASE_URL}/oauth2/authorization/naver`; | ||
} catch (error) { | ||
console.error('네이버 로그인 에러 : ', error); | ||
throw new Error('네이버 로그인 에러 : ', error || ''); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { api } from './axios.config.ts'; | ||
|
||
export const deleteChat = async (chatId: number) => { | ||
try { | ||
const response = await api.delete(`chattings/rooms/${chatId}`); | ||
return response.data; | ||
} catch (error) { | ||
throw new Error('chat delete api request error : ', error || ''); | ||
} | ||
}; | ||
|
||
export const getChats = async (meetingId: number) => { | ||
try { | ||
const response = await api.get(`/chats/${meetingId}`); | ||
return response.data.data; | ||
} catch (error) { | ||
throw new Error('chat get api request error : ', error || ''); | ||
} | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.