1
- import React , { useEffect , useState } from 'react' ;
2
- import { BrowserRouter as Router , Link , Route , Switch , useParams } from "react-router-dom" ;
1
+ import React from 'react' ;
2
+ import { BrowserRouter as Router , Link , Route , Switch } from "react-router-dom" ;
3
+ import { Cart } from "./routes/Cart" ;
4
+ import { Sock } from "./routes/Sock" ;
5
+ import { Tag } from "./routes/Tag" ;
6
+ import { Home } from "./routes/Home" ;
3
7
4
8
export default function App ( ) {
5
9
return (
@@ -35,142 +39,3 @@ export default function App() {
35
39
) ;
36
40
}
37
41
38
- function Home ( ) {
39
- const [ socks , setSocks ] = useState ( [ ] ) ;
40
- useEffect ( ( ) => {
41
- fetchSocks ( 'featured' , 1 , 6 ) . then ( setSocks ) ;
42
- } , [ ] ) ;
43
- return < div >
44
- < h2 > Spring Socks</ h2 >
45
- < ul >
46
- { socks . map ( sock => < li key = { sock . id } > < Link
47
- to = { `/details/${ sock . id } ` } > { sock . name } </ Link > </ li > ) }
48
- </ ul >
49
- < Tags />
50
- </ div > ;
51
- }
52
-
53
- function Cart ( ) {
54
- const [ cart , setCart ] = useState ( {
55
- items : [ ]
56
- } ) ;
57
- useEffect ( ( ) => {
58
- fetchCart ( ) . then ( setCart ) ;
59
- } , [ ] ) ;
60
- return < div >
61
- < h2 > Cart</ h2 >
62
- < table >
63
- < tr >
64
- < th > Product</ th >
65
- < th > Price</ th >
66
- < th > Quantity</ th >
67
- < th > Total</ th >
68
- </ tr >
69
- { cart . items . map ( item => < tr key = { item . itemId } >
70
- < td > < img src = { item . imageUrl } alt = { item . name } width = { '100px' } /> < Link
71
- to = { `/details/${ item . itemId } ` } > { item . name } </ Link > </ td >
72
- < td > ${ item . unitPrice } </ td >
73
- < td > { item . quantity } </ td >
74
- < td > ${ item . total } </ td >
75
- </ tr > ) }
76
- </ table >
77
- < p >
78
- Total: ${ cart . total }
79
- </ p >
80
- </ div > ;
81
- }
82
-
83
- function Sock ( ) {
84
- const { id} = useParams ( ) ;
85
- const [ sock , setSock ] = useState ( { } ) ;
86
- const [ relatedProducts , setRelatedProducts ] = useState ( [ ] ) ;
87
-
88
- useEffect ( ( ) => {
89
- fetchSock ( id ) . then ( body => {
90
- setSock ( body . sock ) ;
91
- setRelatedProducts ( body . relatedProducts )
92
- } ) ;
93
- } , [ id ] ) ;
94
- return < div >
95
- < h2 > { sock . name } </ h2 >
96
- < img alt = { sock . name } src = { sock . imageUrl && sock . imageUrl [ 0 ] } width = { '450px' } />
97
- < p > ${ sock . price } </ p >
98
- < p > { sock . description } </ p >
99
- < h3 > Related Products</ h3 >
100
- < ul >
101
- { relatedProducts . map ( sock => < li key = { sock . id } > < Link
102
- to = { `/details/${ sock . id } ` } > { sock . name } </ Link > </ li > ) }
103
- </ ul >
104
- < Tags />
105
- </ div > ;
106
- }
107
-
108
- function Tag ( ) {
109
- const { tag} = useParams ( ) ;
110
- const [ socks , setSocks ] = useState ( [ ] ) ;
111
- useEffect ( ( ) => {
112
- fetchSocks ( tag ) . then ( setSocks ) ;
113
- } , [ tag ] ) ;
114
- return < div >
115
- < h2 > Tag: { tag } </ h2 >
116
- < ul >
117
- { socks . map ( sock => < li key = { sock . id } > < Link
118
- to = { `/details/${ sock . id } ` } > { sock . name } </ Link > </ li > ) }
119
- </ ul >
120
- < Tags />
121
- </ div > ;
122
- }
123
-
124
- function Tags ( ) {
125
- const [ tags , setTags ] = useState ( { tags : [ ] } ) ;
126
- useEffect ( ( ) => {
127
- fetchTags ( ) . then ( setTags ) ;
128
- } , [ ] ) ;
129
- return < div >
130
- < h3 > Tags</ h3 >
131
- < ul >
132
- { tags . tags . map ( tag => < li key = { tag } > < Link
133
- to = { `/tags/${ tag } ` } > { tag } </ Link > </ li > ) }
134
- </ ul >
135
- </ div > ;
136
- }
137
-
138
- function fetchSock ( id ) {
139
- return fetch ( `/details/${ id } ` , {
140
- method : 'GET' ,
141
- headers : {
142
- 'Accept' : 'application/json'
143
- } ,
144
- } )
145
- . then ( res => res . json ( ) ) ;
146
- }
147
-
148
- function fetchSocks ( tag , page , size ) {
149
- return fetch ( `/tags/${ tag } ?page=${ page || 1 } &size=${ size || 10 } ` , {
150
- method : 'GET' ,
151
- headers : {
152
- 'Accept' : 'application/json'
153
- } ,
154
- } )
155
- . then ( res => res . json ( ) ) ;
156
- }
157
-
158
- function fetchTags ( ) {
159
- return fetch ( '/tags' , {
160
- method : 'GET' ,
161
- headers : {
162
- 'Accept' : 'application/json'
163
- } ,
164
- } )
165
- . then ( res => res . json ( ) ) ;
166
- }
167
-
168
- function fetchCart ( ) {
169
- return fetch ( '/cart?latest' , {
170
- method : 'GET' ,
171
- headers : {
172
- 'Accept' : 'application/json'
173
- } ,
174
- } )
175
- . then ( res => res . json ( ) ) ;
176
- }
0 commit comments