-
Notifications
You must be signed in to change notification settings - Fork 1
/
types.ts
125 lines (93 loc) · 2.73 KB
/
types.ts
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
export interface PartialStore {
numOfTravellers: string,
setNumberOfTravellers: SetNumberOfTravellers,
arrivalDate: string,
setArrivalDate: SetArrivalDate,
endDate: string,
setEndDate: SetEndDate,
infoForWeather: InfoForWeather,
setInfoForWeather: SetInfoForWeather,
yelpBudget: string,
setYelpBudget: SetYelpBudget,
location: string,
setLocationAsString: SetLocationAsString,
additionalNotes: string,
setAdditionalNotes: SetAdditionalNotes,
restaurants: any[],
setRestaurants: SetRestaurants,
pexelPics: any[],
setPexelPics: SetPexelPics,
initialData: {
budget: string,
number: number
},
setInitialData: (budget:string, number:number) => void,
mongoID: string,
setMongoID: (id: string) => void,
gptResponse: any,
setGptResponse: (res: any) => void,
responseId: string,
setResponseId: (id: string) => void
};
export type QuestionCardType = {
el: number,
question: string,
type: string,
setQuestionStates: React.Dispatch<React.SetStateAction<boolean[]>>,
questionStates: boolean[],
setCurrentQuestionIndex: React.Dispatch<React.SetStateAction<number>>,
currentQuestionIndex: number,
// ref: any
};
export interface NavbarContainerProps {
visible: boolean;
}
export interface ButtonProps {
onClick: () => void;
label: string;
}
export interface FeatureCardProps {
iconSrc: string;
title: string;
description: string;
}
export interface InfoForWeather {
startDate: string,
endDate: string,
destination: string,
latLong: string
};
export interface Restaurant {
id: string;
alias: string;
name: string;
address: string;
latitude: number;
longitude: number;
business_page_link: string;
rating: number;
review_count: number;
price_range: string;
photo: string;
photos_page_link: string;
phone: string;
country: string;
}
export interface PexelPic {
id: string;
url: string;
alt?: string;
}
export interface RestaurantCardProps {
restaurant: Restaurant;
}
export type SetNumberOfTravellers = (numOfTravellers: string) => void;
export type SetInfoForWeather = (startDate: string, endDate: string, destination: string, latLong: string) => void;
export type SetYelpBudget = (yelpBudget: string) => void;
export type SetLocationAsString = (location: string) => void;
export type SetAdditionalNotes = (notes: string) => void;
export type SetArrivalDate = (date: string) => void;
export type SetEndDate = (date: string) => void;
export type SetLatLong = (latLong: string) => void;
export type SetRestaurants = (restaurants: any[]) => void;
export type SetPexelPics = (pexelPics: any[]) => void;