4
0
forked from crowetic/commerce

Updated defaults in all hooks

This commit is contained in:
Luis Alvarez 2020-10-21 10:35:49 -05:00
parent d98897a7e3
commit 2804627aef
11 changed files with 31 additions and 20 deletions

View File

@ -26,8 +26,8 @@ export const fetcher: HookFetcher<Cart, AddItemBody> = (
} }
return fetch({ return fetch({
url: options?.url ?? defaultOpts.url, ...defaultOpts,
method: options?.method ?? defaultOpts.method, ...options,
body: { item }, body: { item },
}) })
} }

View File

@ -5,6 +5,7 @@ import type { Cart } from '../api/cart'
const defaultOpts = { const defaultOpts = {
url: '/api/bigcommerce/cart', url: '/api/bigcommerce/cart',
method: 'GET',
} }
export type { Cart } export type { Cart }
@ -14,7 +15,7 @@ export const fetcher: HookFetcher<Cart | null, CartInput> = (
{ cartId }, { cartId },
fetch fetch
) => { ) => {
return cartId ? fetch({ ...options }) : null return cartId ? fetch({ ...defaultOpts, ...options }) : null
} }
export function extendHook( export function extendHook(

View File

@ -19,8 +19,8 @@ export const fetcher: HookFetcher<Cart | null, RemoveItemBody> = (
fetch fetch
) => { ) => {
return fetch({ return fetch({
url: options?.url ?? defaultOpts.url, ...defaultOpts,
method: options?.method ?? defaultOpts.method, ...options,
body: { itemId }, body: { itemId },
}) })
} }

View File

@ -28,8 +28,8 @@ export const fetcher: HookFetcher<Cart | null, UpdateItemBody> = (
} }
return fetch({ return fetch({
url: options?.url ?? defaultOpts.url, ...defaultOpts,
method: options?.method ?? defaultOpts.method, ...options,
body: { itemId, item }, body: { itemId, item },
}) })
} }

View File

@ -5,6 +5,7 @@ import type { Customer, CustomerData } from './api/customers'
const defaultOpts = { const defaultOpts = {
url: '/api/bigcommerce/customer', url: '/api/bigcommerce/customer',
method: 'GET',
} }
export type { Customer } export type { Customer }
@ -14,7 +15,7 @@ export const fetcher: HookFetcher<CustomerData | null, CustomerInput> = (
{ cartId }, { cartId },
fetch fetch
) => { ) => {
return cartId ? fetch({ ...options }) : null return cartId ? fetch({ ...defaultOpts, ...options }) : null
} }
export function extendHook( export function extendHook(

View File

@ -22,8 +22,8 @@ export const fetcher: HookFetcher<null, LoginBody> = (
} }
return fetch({ return fetch({
url: options?.url ?? defaultOpts.url, ...defaultOpts,
method: options?.method ?? defaultOpts.method, ...options,
body: { email, password }, body: { email, password },
}) })
} }

View File

@ -22,8 +22,8 @@ export const fetcher: HookFetcher<null, SignupBody> = (
} }
return fetch({ return fetch({
url: options?.url ?? defaultOpts.url, ...defaultOpts,
method: options?.method ?? defaultOpts.method, ...options,
body: { firstName, lastName, email, password }, body: { firstName, lastName, email, password },
}) })
} }

View File

@ -17,8 +17,8 @@ export const fetcher: HookFetcher<Wishlist, AddItemBody> = (
fetch fetch
) => { ) => {
return fetch({ return fetch({
url: options?.url ?? defaultOpts.url, ...defaultOpts,
method: options?.method ?? defaultOpts.method, ...options,
body: { wishlistId, item }, body: { wishlistId, item },
}) })
} }

View File

@ -19,8 +19,8 @@ export const fetcher: HookFetcher<Wishlist | null, RemoveItemBody> = (
fetch fetch
) => { ) => {
return fetch({ return fetch({
url: options?.url ?? defaultOpts.url, ...defaultOpts,
method: options?.method ?? defaultOpts.method, ...options,
body: { wishlistId, itemId }, body: { wishlistId, itemId },
}) })
} }

View File

@ -4,6 +4,7 @@ import type { Wishlist } from '../api/wishlist'
const defaultOpts = { const defaultOpts = {
url: '/api/bigcommerce/wishlists', url: '/api/bigcommerce/wishlists',
method: 'GET',
} }
export type { Wishlist } export type { Wishlist }
@ -18,7 +19,8 @@ export const fetcher: HookFetcher<Wishlist | null, WishlistInput> = (
fetch fetch
) => { ) => {
return fetch({ return fetch({
url: options?.url, ...defaultOpts,
...options,
body: { wishlistId }, body: { wishlistId },
}) })
} }

View File

@ -9,9 +9,14 @@ export default function useData<T, Input = any>(
swrOptions?: ConfigInterface<T> swrOptions?: ConfigInterface<T>
) { ) {
const { fetcherRef } = useCommerce() const { fetcherRef } = useCommerce()
const fetcher = (url?: string, query?: string, ...args: any[]) => { const fetcher = (
url?: string,
query?: string,
method?: string,
...args: any[]
) => {
return fetcherFn( return fetcherFn(
{ url, query }, { url, query, method },
// Transform the input array into an object // Transform the input array into an object
args.reduce((obj, val, i) => { args.reduce((obj, val, i) => {
obj[input[i][0]!] = val obj[input[i][0]!] = val
@ -24,7 +29,9 @@ export default function useData<T, Input = any>(
const response = useSWR( const response = useSWR(
() => { () => {
const opts = typeof options === 'function' ? options() : options const opts = typeof options === 'function' ? options() : options
return opts ? [opts.url, opts.query, ...input.map((e) => e[1])] : null return opts
? [opts.url, opts.query, opts.method, ...input.map((e) => e[1])]
: null
}, },
fetcher, fetcher,
swrOptions swrOptions