-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
96 changed files
with
724 additions
and
692 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 |
---|---|---|
@@ -1,16 +1,29 @@ | ||
<!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 maximum-scale=1" /> | ||
<title>위플플 | 여정 공유 플랫폼</title> | ||
</head> | ||
<!-- Google tag (gtag.js) --> | ||
<script | ||
async | ||
src="https://www.googletagmanager.com/gtag/js?id=G-1285JF2LMZ"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { | ||
dataLayer.push(arguments); | ||
} | ||
gtag('js', new Date()); | ||
|
||
<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 maximum-scale=1" /> | ||
<title>위플플 | 여정 공유 플랫폼</title> | ||
</head> | ||
gtag('config', 'G-1285JF2LMZ'); | ||
</script> | ||
|
||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
|
||
</html> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
</html> |
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,5 +1,6 @@ | ||
interface tourDetail { | ||
id: number; | ||
contentTypeId: number; | ||
title: string; | ||
liked: boolean; | ||
fullAddress: string; | ||
|
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,11 +1,34 @@ | ||
interface ReviewRequest { | ||
tourItemId: number; | ||
interface Keyword { | ||
keywordId: number; | ||
content: string; | ||
type?: string; | ||
} | ||
|
||
interface CommentItemProps { | ||
commentId: number; | ||
authorNickname: string; | ||
authorProfileImageUrl: string; | ||
createdTime: string; | ||
content: string; | ||
onClick?: () => void; | ||
isAuthor: boolean; | ||
} | ||
|
||
interface MyReviewContent { | ||
reviewId: number; | ||
authorNickname: string; | ||
authorProfileImageUrl: string; | ||
rating: number; | ||
keywords: Keyword[]; | ||
createdTime: string; | ||
content: string; | ||
keywords: Keyword[]; | ||
commentCount: number; | ||
isAuthor?: boolean; | ||
} | ||
|
||
interface Keyword { | ||
keywordId: number; | ||
interface ReviewRequest { | ||
tourItemId: number; | ||
rating: number; | ||
keywords: Keyword[]; | ||
content: string; | ||
} |
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
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
import client from './client'; | ||
import authClient from './authClient'; | ||
|
||
// 리뷰 관련 API | ||
|
||
// 리뷰수정 | ||
|
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
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.