-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspace.ts
609 lines (574 loc) · 13.7 KB
/
space.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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react'
import { getBaseURL } from './url'
import { PaymentIntent } from '@stripe/stripe-js'
interface GetMySpacesRequest {
}
interface GetMySpacesResponse {
entries: Array<{
attributions: {
creator: string
}
categories: string[]
commerce_type: string
description: string
id: string
images: {
preview: {
url: string
}
}
lobby_count: number
member_count: number
name: string
room_size: number
scene_id: number
type: string
url: string
user_data: string
weight: number
}>
}
interface GetSpaceRequest {
hubId: string
}
interface GetSpaceResponse {
allow_promotion: boolean
business_details: Record<any, any>
categories: string[]
commerce_type: string
created_by: string
description: string
hub_id: string
name: string
products: any[]
updated_at: string
url: string
screenshot_url: string
}
interface GetShippingZoneRequest {
hubId: string
}
export interface ShippingZoneType {
shipping_zone_id?: string
hub_sid: string
country: string
name: string
rate_name: string
rate_transit_time: string
shipping_price: number
price_conditions: boolean
order_min_value: number
order_max_value: number
}
interface PostShippingZoneRequest {
data: ShippingZoneType
}
interface PostShippingZoneResponse {
data: {
data: ShippingZoneType
}
}
interface PatchShippingZoneRequest {
data: ShippingZoneType
}
interface PatchShippingZoneResponse {
data: {
data: ShippingZoneType
}
}
interface SpaceOrder {
amount: number
created_at: string
crypto_amount: string
crypto_payment_from: string
crypto_payment_to: string
currency: string
delivery_type: string
customer: {
account_id: number
address: string
address_line_two: string
city: string
country: string
customer_sid: string
email: string
id: number
name: string
state: string
telephone: string
zipcode: string
}
hub_sid: string
live_mode: boolean
order_items: Array<{
listing_id: string
minting_links: string[]
order_type: string
product: {
name: string
product_sid: string
tax_rate: string
tax_status: boolean
}
product_type: string
product_variation: {
barcode: string
color: string
dimension: string
dimension_unit: string
mint: string
model_name: string
model_size: string
model_url: string
name: string
phygital_listing_id: string
price: string
product_sid: string
product_variation_sid: string
quantity: number
sale_price: string
shopify_variation_id: number
sku: string
thumbnail_name: string
thumbnail_size: string
thumbnail_url: string
weight: string
weight_unit: string
}
quantity: number
}>
order_sid: string
payment_id: string
shipping_cost: number
status: string
tracking_link: string
tracking_number: string
fulfillment_status: string
shipping_carrier: string
shipping_email_sent_at: string
notes: string
}
interface GetSpaceOrdersRequest {
hubId: string
}
interface GetSpaceOrdersResponse {
orders: SpaceOrder[]
}
interface PatchFulfilOrderRequest {
data: {
order_sid: string
fulfillment_status: string
shipping_carrier: string
shipping_email_sent_at: string
tracking_link: string
tracking_number: string
}
}
interface PatchFulfilOrderResponse {
message?: string
ok?: string
}
interface PostOrderNotesRequest {
data: {
order_sid: string
notes: string
}
}
interface PostOrderNotesResponse {
message?: string
ok?: string
}
export interface Event {
description: string
end_date: number
event_sid: string
featured: true,
hub_sid: string
image_url: string
start_date: number
title: string
timeslots: Array<{
end_date: string
price: string
quantity: string
start_date: string
timeslot_sid: string
}>
}
interface GetEventResponse {
description: string
end_date: number
event_sid: string
featured: boolean
hub_sid: string
image_url: string
start_date: number
timeslots: Array<{
end_date: number
price: number
quantity: number
start_date: number
tickets: any[],
timeslot_sid: string
}>
title: string
}
export interface Room {
allow_promotion: boolean
commerce_type: string
created_by: number
description?: string
hub_id: string
name: string
screenshot_url: string
updated_at: string
url: string
created_by_username: string
categories: { slug: string }[]
}
interface AddCartItemRequest {
hub_sid: string
item: {
product_variation_sid?: string
timeslot_sid?: string
},
quantity: number
}
interface AddCartItemResponse {
account_id: string
item: {
product_variation_sid?: string
timeslot_sid?: string
},
quantity: number
}
interface UpdateCartItemRequest {
hub_sid: string
item: {
product_variation_sid?: string
timeslot_sid?: string
},
quantity: number
}
interface UpdateCartItemResponse {
account_id: string
hub_sid: string
item: {
product_variation_sid?: string
timeslot_sid?: string
},
quantity: number
}
interface GetCartResponse {
data: Array<{
id: number
item: {
product_variation_sid?: string
timeslot_sid?: string
},
quantity: number
}>
}
interface DeleteCartItemRequest {
hub_sid: string
item: {
product_variation_sid?: string
timeslot_sid?: string
},
quantity: number
}
interface PostPaymentIntentRequest {
amount: number
metadata: {
type: string
}
}
interface PostPaymentIntentResponse extends PaymentIntent {
clientSecret: string
}
interface PostOrderRequest {
data: {
account_id: string
amount: number
shipping_cost: number
currency: string
status: string
live_mode: boolean
hub_sid: string
payment_id: string
client_secret: string
products: Array<{
product_variation_sid: string
quantity: number
}>
tickets: any[]
},
customer: {
name: string
address_line_two: string
country: string
zipcode: string
city: string
state: string
address: string
email: string
telephone: string
time_zone: string
}
}
interface PostOrderResponse {
}
interface PostTicketTimerRequest {
tickets: string[]
}
interface PostTicketTimerResponse {
ok: {
tickets_available: Array<{
ok: {
tickets_available: number
timeslot_sid: string
},
}>,
timers: Array<{
ok: {
status: string
timeslot: string
users_in_queue: number
}
}>
}
}
export const spaceApi = createApi({
reducerPath: 'spaceApi',
baseQuery: fetchBaseQuery({ baseUrl: getBaseURL() }),
endpoints: (builder) => ({
getMySpaces: builder.query<GetMySpacesResponse, GetMySpacesRequest>({
query: () => ({
url: '/api/v1/media/search?source=rooms&filter=my&cursor=1',
method: 'GET',
headers: {
Authorization: `Bearer ${window.localStorage.getItem('hubsToken')}`,
'Content-Type': 'application/json'
}
})
}),
getSpace: builder.query<GetSpaceResponse, GetSpaceRequest>({
query: ({ hubId }) => ({
url: `/api/v1/hubs/?hub_id=${hubId}`,
method: 'GET',
})
}),
getShippingZones: builder.query<any, GetShippingZoneRequest>({
query: ({ hubId }) => ({
url: `/api/v1/shipping_zones?hub_sid=${hubId}`,
method: 'GET',
headers: {
Authorization: `Bearer ${window.localStorage.getItem('hubsToken')}`
}
})
}),
postShippingZone: builder.mutation<PostShippingZoneResponse, PostShippingZoneRequest>({
query: (body) => ({
url: `/api/v1/shipping_zone`,
method: 'POST',
headers: {
Authorization: `Bearer ${window.localStorage.getItem('hubsToken')}`
},
body
})
}),
patchShippingZone: builder.mutation<PatchShippingZoneResponse, PatchShippingZoneRequest>({
query: (body) => ({
url: `/api/v1/shipping_zone`,
method: 'PATCH',
headers: {
Authorization: `Bearer ${window.localStorage.getItem('hubsToken')}`
},
body
})
}),
deleteShippingZone: builder.mutation<any, { shippingZoneId: string }>({
query: ({ shippingZoneId }) => ({
url: `/api/v1/shipping_zone?shipping_zone_id=${shippingZoneId}`,
method: 'DELETE',
headers: {
Authorization: `Bearer ${window.localStorage.getItem('hubsToken')}`
}
})
}),
getSpaceOrders: builder.query<GetSpaceOrdersResponse, GetSpaceOrdersRequest>({
query: ({ hubId }) => ({
url: `/api/v1/orders/?hub_id=${hubId}`,
method: 'GET',
headers: {
Authorization: `Bearer ${window.localStorage.getItem('hubsToken')}`
}
})
}),
patchFullfilOrder: builder.mutation<PatchFulfilOrderResponse, PatchFulfilOrderRequest>({
query: (body) => ({
url: '/api/v1/fulfill_order',
method: 'POST',
body,
headers: {
Authorization: `Bearer ${window.localStorage.getItem('hubsToken')}`
}
})
}),
postOrderNotes: builder.mutation<PostOrderNotesResponse, PostOrderNotesRequest>({
query: (body) => ({
url: '/api/v1/dynamical_pandora_box',
method: 'POST',
body,
headers: {
Authorization: `Bearer ${window.localStorage.getItem('hubsToken')}`
}
})
}),
getOrdersCount: builder.query<{ unfulfilled_order_count: number }, { hubId: string }>({
query: ({ hubId }) => ({
url: `/api/v1/count_orders_unfulfilled/?hub_id=${hubId}`,
method: 'GET',
headers: {
Authorization: `Bearer ${window.localStorage.getItem('hubsToken')}`
}
})
}),
getAllEvents: builder.query<{ data: Event[] }, {}>({
query: () => ({
url: `/api/v1/all_events`,
method: 'GET',
})
}),
getAllRooms: builder.query<{ data: Room[] }, {}>({
query: () => ({
url: `/api/v1/all_rooms`,
method: 'GET',
})
}),
getEvent: builder.query<GetEventResponse, { event_sid: string }>({
query: ({ event_sid }) => ({
url: `/api/v1/event_with_timeslots_and_tickets?event_sid=${event_sid}`,
method: 'GET',
})
}),
getAllProducts: builder.query<any, {}>({
query: () => ({
url: `api/v1/all_products`,
method: 'GET',
})
}),
addCartItem: builder.mutation<AddCartItemResponse, AddCartItemRequest>({
query: (body) => ({
url: `/api/v1/cart_items/add`,
method: 'POST',
body: {
...body,
account_id: window.localStorage.getItem('accountId') as string
}
})
}),
getCartItems: builder.query<GetCartResponse, {}>({
query: () => ({
url: `api/v1/cart_items/all_hubs?account_id=${window.localStorage.getItem('accountId') as string}`,
method: 'GET',
})
}),
deleteCartItem: builder.mutation<any, DeleteCartItemRequest>({
query: (body) => ({
url: `api/v1/cart_items/subtract`,
method: 'POST',
body: {
...body,
account_id: window.localStorage.getItem('accountId') as string
}
})
}),
getProduct: builder.query<any, { productId: string }>({
query: ({ productId }) => ({
url: `api/v1/product_variation?product_variation_sid=${productId}`,
method: 'GET',
})
}),
getTicket: builder.query<any, { timeslotId: string }>({
query: ({ timeslotId }) => ({
url: `api/v1/timeslot?timeslot_sid=${timeslotId}`,
method: 'GET',
})
}),
postPaymentIntent: builder.mutation<PostPaymentIntentResponse, PostPaymentIntentRequest>({
query: (body) => ({
url: `/api/v1/immers_create_payment_intent`,
method: 'POST',
body: {
...body,
metadata: {
...body.metadata,
account_id: window.localStorage.getItem('accountId') as string,
}
}
})
}),
postOrder: builder.mutation<PostOrderResponse, PostOrderRequest>({
query: (body) => ({
url: `/api/v1/orders`,
method: 'POST',
body,
})
}),
getEventsBySpace: builder.query<any, { hubId: string }>({
query: ({ hubId }) => ({
url: `api/v1/all_events_for_hub?hub_sid=${hubId}`,
method: 'GET',
})
}),
postTicketTimer: builder.mutation<PostTicketTimerResponse, PostTicketTimerRequest>({
query: (body) => ({
url: `/api/v1/new_ticket/ticket_purchase_timer_init`,
method: 'POST',
body: {
...body,
account_id: window.localStorage.getItem('accountId') as string
}
})
}),
updateCartItem: builder.mutation<UpdateCartItemResponse, UpdateCartItemRequest>({
query: (body) => ({
url: `/api/v1/cart_items/change`,
method: 'POST',
body: {
...body,
account_id: window.localStorage.getItem('accountId') as string
}
})
}),
})
})
export const {
useGetMySpacesQuery,
useGetSpaceQuery,
useGetShippingZonesQuery,
usePostShippingZoneMutation,
usePatchShippingZoneMutation,
useDeleteShippingZoneMutation,
useGetSpaceOrdersQuery,
usePatchFullfilOrderMutation,
usePostOrderNotesMutation,
useGetOrdersCountQuery,
useGetAllEventsQuery,
useGetAllRoomsQuery,
useGetEventQuery,
useGetAllProductsQuery,
useAddCartItemMutation,
useGetCartItemsQuery,
useLazyGetProductQuery,
useGetProductQuery,
useDeleteCartItemMutation,
usePostPaymentIntentMutation,
usePostOrderMutation,
useGetTicketQuery,
useLazyGetTicketQuery,
useGetEventsBySpaceQuery,
usePostTicketTimerMutation,
useUpdateCartItemMutation,
} = spaceApi