88 lines
1.7 KiB
TypeScript
88 lines
1.7 KiB
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import type { Cart, CartMeta } from '@woocommerce/types';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import type { ResponseError } from './types';
|
|
|
|
export interface CartState {
|
|
cartItemsPendingQuantity: Array< string >;
|
|
cartItemsPendingDelete: Array< string >;
|
|
cartData: Cart;
|
|
metaData: CartMeta;
|
|
errors: Array< ResponseError >;
|
|
}
|
|
|
|
export const defaultCartState: CartState = {
|
|
cartItemsPendingQuantity: [],
|
|
cartItemsPendingDelete: [],
|
|
cartData: {
|
|
coupons: [],
|
|
shippingRates: [],
|
|
shippingAddress: {
|
|
first_name: '',
|
|
last_name: '',
|
|
company: '',
|
|
address_1: '',
|
|
address_2: '',
|
|
city: '',
|
|
state: '',
|
|
postcode: '',
|
|
country: '',
|
|
},
|
|
billingAddress: {
|
|
first_name: '',
|
|
last_name: '',
|
|
company: '',
|
|
address_1: '',
|
|
address_2: '',
|
|
city: '',
|
|
state: '',
|
|
postcode: '',
|
|
country: '',
|
|
phone: '',
|
|
email: '',
|
|
},
|
|
items: [],
|
|
itemsCount: 0,
|
|
itemsWeight: 0,
|
|
needsShipping: true,
|
|
needsPayment: false,
|
|
hasCalculatedShipping: true,
|
|
fees: [],
|
|
totals: {
|
|
currency_code: '',
|
|
currency_symbol: '',
|
|
currency_minor_unit: 2,
|
|
currency_decimal_separator: '.',
|
|
currency_thousand_separator: ',',
|
|
currency_prefix: '',
|
|
currency_suffix: '',
|
|
total_items: '0',
|
|
total_items_tax: '0',
|
|
total_fees: '0',
|
|
total_fees_tax: '0',
|
|
total_discount: '0',
|
|
total_discount_tax: '0',
|
|
total_shipping: '0',
|
|
total_shipping_tax: '0',
|
|
total_price: '0',
|
|
total_tax: '0',
|
|
tax_lines: [],
|
|
},
|
|
errors: [],
|
|
paymentRequirements: [],
|
|
extensions: [],
|
|
},
|
|
metaData: {
|
|
updatingCustomerData: false,
|
|
updatingSelectedRate: false,
|
|
applyingCoupon: '',
|
|
removingCoupon: '',
|
|
},
|
|
errors: [],
|
|
};
|