This repository has been archived by the owner on Aug 15, 2022. It is now read-only.
forked from ByCodersTec/desafio-frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
notes
228 lines (127 loc) · 4.24 KB
/
notes
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
styledComponents & Design SYstem
Thumbnail
Fornecer um mecanismo para o usuário poder pesquisar vídeos
Possuir home page que exiba algum conteúdo interessante para uma plataforma de vídeos
HomePage
Zustand App State tree
storeLocally(keyIndex)
retrieveLocally(keyIndex)
// zustand
useGetSearchTerm() {
}
useSetSearchTerm() {
}
useGetSearchTermsHistory
extend to useFetchFromYoutube(type, numPage) {
} returns data
function useSetLocalSearchHistory() {
// incrementally rehydrate (real-time change compatible)
// don't remove
// concat with local search history
// persist concat
}
function useGetLocalSearchHistory() {
// retrieve local search history
// return retrieve
}
// youtube fetch hooks
fetchDataFromYoutube
// youtube API implementation
https://www.googleapis.com/youtube/v3/search/?key=AIzaSyBZ--nEkyorU89iKVYDLTbEb8zZTLi7PyM&?type=%22channel&?q=%22goku%20super%20sayajin%22&maxResults=8&part=snippet&page=2
function APP () {
// https://github.com/pmndrs/zustand
const createAppStateStore = createStore() // zustand
<Provider createStore={createAppStateStore}>
<NavBar />
<History />
<HomePage />
</Provider>
}
function HomePage() {
return (
<Main>
<FeaturedVideos />
<MoreFeaturedVideos />
</Main>
)
}
function FeaturedVideos() {
const featuredVideos = ()
const queryFilterString = useStore()
const videosListQueryObj = useQuery(searchVideos(queryFilterString), [queryFilterString, page])// keep old data
render <Thumbnail>
<OutletItem />
<OutletItem />
<OutletItem />
}
function MoreFeaturedVideos() {
const [page, currentPage] = useState(1)
const videosListQueryObj = useQuery(searchVideos(queryFilterString), [queryFilterString, page])// keep old data
const videosList = useEffect(() => {
}, [videosListObj])
<ThumbnailSecondarySmall /> 8 times
currentPage > 1 ? <arrow onClick={setCurrentPage(currentPage-1)}> : null
{page}
<arrow onClick={setCurrentPage(currentPage+1)} />
}
thumbnail = Small picture only.
Thumbnail
State - Loading
State - Error
State - Default / ok
error display ann X ThumbnailError
loading display Spinner ThumbnailLoad
ok display image ThumbnailDisplay
fixed width and height
ThumbnailHigh = styled(Thumbnail) high width and height
ThumbnailMedium = styled(thumbnail) medium width height
Thumbnail = default small width height
TextHigh
TextMedium - font-size 14px;
Text - font-size 11px;
------------------------------------------------------
const OutletItemMedium (thumbUrl, textDisplay, isLoading) = <div side-by-side> ThumbnailMedium + TextMedium </div>
const OutLetItem = <div side-by-side> Thumbnail + Text </div>
Requisitos extras
useAuth
user = null | userObject
user.featuredContentPreferences = last 2 watched + last 1 searched or last 3 searched
Permitir cadastro de usuário / login através da API do YouTube + OAuth2
useMediaUploader
// able to upload videos
// able to limit to only supported formats on youtube API
// able to display error when not completed, in a suspended mode
// able to display progress in a suspended mode
Permitir upload de vídeo para a API do YouTube
--------------------------------
e2e Test List
actions
"Navigate to Home Page"
//able to find a home page
"Navigate to Channell Page"
//able to find a channels page
"Search stuff Into API as unauth user"
//able to search stuff on API public
"Searc0h stuff Into API as authed user"
//able to search stuff on API using oauth
//able to do oauth
videos
expect to
TODO List
Create react app ok
Implement AppStateStore + local persistent localSearchHistory
localStorage OK
searchHistory OK
Implement Home Page Route ok Implement Channels Page Route ok
Implement react-query + fetch functions (fetchVideos | fetchChannels)
ok
Implement Oauth2
store auth_token in localSessioStorage - store ready - just grab from app.tsx
enable http redirect through hook OK
Implement storybook and emotion + implement Styled components
skeletons ok
Implement Navbar
base file ok
Implement Home Page
Implement Channel Page
Implement E2E Tests - cypress