-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreviewSummaryMock.ts
More file actions
130 lines (129 loc) · 3.81 KB
/
reviewSummaryMock.ts
File metadata and controls
130 lines (129 loc) · 3.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import type { ReviewSummary } from '@/types/review';
export const reviewSummaryMock: ReviewSummary[] = [
{
id: 1,
movieSeatInfo: {
movieTitle: '어벤져스: 엔드게임',
theaterName: '남양주현대아울렛 스페이스원',
auditoriumName: '1관',
seatNumber: 'F6, F12',
},
hashtags: [
{ hashTagId: 1, hashTagName: '음향최고', hashTagType: '음향' },
{ hashTagId: 2, hashTagName: '시야좋음', hashTagType: '관람환경' },
{ hashTagId: 3, hashTagName: '자녀와', hashTagType: '동반인' },
],
content: 'IMAX 사운드는 정말 감동적이에요. 앉은 좌석도 시야 확보 최고였습니다.',
rating: 5,
user: {
userId: 101,
nickname: 'Leets',
profileImageUrl: '',
},
imageInfo: [
{ imageUrl: '', order: 1 },
{ imageUrl: '', order: 2 },
],
heartCount: 22,
createdAt: '2025-07-27T07:14:36Z',
},
{
id: 2,
movieSeatInfo: {
movieTitle: '범죄도시4',
theaterName: '남양주현대아울렛 스페이스원',
auditoriumName: '1관',
seatNumber: 'E10',
},
hashtags: [
{ hashTagId: 4, hashTagName: '화질굿', hashTagType: '관람환경' },
{ hashTagId: 5, hashTagName: '대형스크린', hashTagType: '관람환경' },
],
content: '화질도 좋고 화면 크기도 압도적입니다.',
rating: 4,
user: {
userId: 102,
nickname: '냠냠이',
profileImageUrl: '',
},
imageInfo: [{ imageUrl: '', order: 1 }],
heartCount: 10,
createdAt: '2025-07-27T07:14:36Z',
},
{
id: 3,
movieSeatInfo: {
movieTitle: '드래곤 길들이기',
theaterName: '남양주현대아울렛 스페이스원',
auditoriumName: '2관',
seatNumber: 'A1',
},
hashtags: [
{ hashTagId: 6, hashTagName: '음질만족', hashTagType: '음향' },
{ hashTagId: 7, hashTagName: '출입구근처', hashTagType: '관람환경' },
],
content: '사운드도 좋고 스크린도 컸는데 문이랑 가까워서 외부 소음이 조금 거슬렸어요 ㅎㅎ',
rating: 3.5,
user: {
userId: 103,
nickname: '김씨잇',
profileImageUrl: '',
},
imageInfo: [
{ imageUrl: '', order: 1 },
{ imageUrl: '', order: 2 },
],
heartCount: 34,
createdAt: '2025-07-27T07:14:36Z',
},
{
id: 4,
movieSeatInfo: {
movieTitle: '드래곤 길들이기',
theaterName: '남양주현대아울렛 스페이스원',
auditoriumName: '2관',
seatNumber: 'A1',
},
hashtags: [
{ hashTagId: 6, hashTagName: '음질만족', hashTagType: '음향' },
{ hashTagId: 7, hashTagName: '출입구근처', hashTagType: '관람환경' },
],
content: '사운드도 좋고 스크린도 컸는데 문이랑 가까워서 외부 소음이 조금 거슬렸어요 ㅎㅎ',
rating: 3.5,
user: {
userId: 103,
nickname: '김씨잇',
profileImageUrl: '',
},
imageInfo: [
{ imageUrl: '', order: 1 },
{ imageUrl: '', order: 2 },
],
heartCount: 34,
createdAt: '2025-07-27T07:14:36Z',
},
{
id: 4,
movieSeatInfo: {
movieTitle: '위키드',
theaterName: '남양주현대아울렛 스페이스원',
auditoriumName: '1관',
seatNumber: 'D4',
},
hashtags: [
{ hashTagId: 8, hashTagName: '주변산만', hashTagType: '관람환경' },
{ hashTagId: 9, hashTagName: '잡음있음', hashTagType: '음향' },
],
content:
'단차가 낮은 건지 앞사람 행동이 너무 거슬려요ㅜㅜ 그리고 상영관에서 냄새가 너무 마니 남!!!',
rating: 2.5,
user: {
userId: 104,
nickname: '박리츠',
profileImageUrl: '',
},
imageInfo: [],
heartCount: 7,
createdAt: '2025-07-27T07:14:36Z',
},
];