140 lines
3.1 KiB
TypeScript
140 lines
3.1 KiB
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __, _x } from '@wordpress/i18n';
|
|
import type { CartResponseShippingRate } from '@woocommerce/types';
|
|
|
|
export const previewShippingRates: CartResponseShippingRate[] = [
|
|
{
|
|
destination: {
|
|
address_1: '',
|
|
address_2: '',
|
|
city: '',
|
|
state: '',
|
|
postcode: '',
|
|
country: '',
|
|
},
|
|
package_id: 0,
|
|
name: __( 'Shipping', 'woo-gutenberg-products-block' ),
|
|
items: [
|
|
{
|
|
key: '33e75ff09dd601bbe69f351039152189',
|
|
name: _x(
|
|
'Beanie with Logo',
|
|
'example product in Cart Block',
|
|
'woo-gutenberg-products-block'
|
|
),
|
|
quantity: 2,
|
|
},
|
|
{
|
|
key: '6512bd43d9caa6e02c990b0a82652dca',
|
|
name: _x(
|
|
'Beanie',
|
|
'example product in Cart Block',
|
|
'woo-gutenberg-products-block'
|
|
),
|
|
quantity: 1,
|
|
},
|
|
],
|
|
shipping_rates: [
|
|
{
|
|
currency_code: 'USD',
|
|
currency_symbol: '$',
|
|
currency_minor_unit: 2,
|
|
currency_decimal_separator: '.',
|
|
currency_thousand_separator: ',',
|
|
currency_prefix: '$',
|
|
currency_suffix: '',
|
|
name: __(
|
|
'Flat rate shipping',
|
|
'woo-gutenberg-products-block'
|
|
),
|
|
description: '',
|
|
delivery_time: '',
|
|
price: '500',
|
|
taxes: '0',
|
|
rate_id: 'flat_rate:0',
|
|
instance_id: 0,
|
|
meta_data: [],
|
|
method_id: 'flat_rate',
|
|
selected: true,
|
|
},
|
|
{
|
|
currency_code: 'USD',
|
|
currency_symbol: '$',
|
|
currency_minor_unit: 2,
|
|
currency_decimal_separator: '.',
|
|
currency_thousand_separator: ',',
|
|
currency_prefix: '$',
|
|
currency_suffix: '',
|
|
name: __( 'Free shipping', 'woo-gutenberg-products-block' ),
|
|
description: '',
|
|
delivery_time: '',
|
|
price: '0',
|
|
taxes: '0',
|
|
rate_id: 'free_shipping:1',
|
|
instance_id: 0,
|
|
meta_data: [],
|
|
method_id: 'flat_rate',
|
|
selected: false,
|
|
},
|
|
{
|
|
currency_code: 'USD',
|
|
currency_symbol: '$',
|
|
currency_minor_unit: 2,
|
|
currency_decimal_separator: '.',
|
|
currency_thousand_separator: ',',
|
|
currency_prefix: '$',
|
|
currency_suffix: '',
|
|
name: __( 'Local pickup', 'woo-gutenberg-products-block' ),
|
|
description: '',
|
|
delivery_time: '',
|
|
price: '0',
|
|
taxes: '0',
|
|
rate_id: 'pickup_location:1',
|
|
instance_id: 1,
|
|
meta_data: [
|
|
{
|
|
key: 'pickup_location',
|
|
value: 'New York',
|
|
},
|
|
{
|
|
key: 'pickup_address',
|
|
value: '123 Easy Street, New York, 12345',
|
|
},
|
|
],
|
|
method_id: 'pickup_location',
|
|
selected: false,
|
|
},
|
|
{
|
|
currency_code: 'USD',
|
|
currency_symbol: '$',
|
|
currency_minor_unit: 2,
|
|
currency_decimal_separator: '.',
|
|
currency_thousand_separator: ',',
|
|
currency_prefix: '$',
|
|
currency_suffix: '',
|
|
name: __( 'Local pickup', 'woo-gutenberg-products-block' ),
|
|
description: '',
|
|
delivery_time: '',
|
|
price: '0',
|
|
taxes: '0',
|
|
rate_id: 'pickup_location:2',
|
|
instance_id: 1,
|
|
meta_data: [
|
|
{
|
|
key: 'pickup_location',
|
|
value: 'Los Angeles',
|
|
},
|
|
{
|
|
key: 'pickup_address',
|
|
value: '123 Easy Street, Los Angeles, California, 90210',
|
|
},
|
|
],
|
|
method_id: 'pickup_location',
|
|
selected: false,
|
|
},
|
|
],
|
|
},
|
|
];
|