-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathShippingLabelSampleData.swift
189 lines (172 loc) · 8.79 KB
/
ShippingLabelSampleData.swift
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
import Foundation
import Yosemite
#if DEBUG
/// Sample data to be used in SwiftUI previews of Shipping Labels flow
///
enum ShippingLabelSampleData {
static func sampleOrder() -> Order {
return Order(siteID: 1234,
orderID: 963,
parentID: 0,
customerID: 11,
orderKey: "",
isEditable: false,
needsPayment: false,
needsProcessing: false,
number: "963",
status: .processing,
currency: "USD",
currencySymbol: "",
customerNote: "",
dateCreated: date(with: "2018-04-03T23:05:12"),
dateModified: date(with: "2018-04-03T23:05:14"),
datePaid: date(with: "2018-04-03T23:05:14"),
discountTotal: "30.00",
discountTax: "1.20",
shippingTotal: "0.00",
shippingTax: "0.00",
total: "31.20",
totalTax: "1.20",
paymentMethodID: "stripe",
paymentMethodTitle: "Credit Card (Stripe)",
paymentURL: nil,
chargeID: nil,
items: sampleItems(),
billingAddress: sampleAddress(),
shippingAddress: sampleAddress(),
shippingLines: sampleShippingLines(),
coupons: sampleCoupons(),
refunds: [],
fees: [],
taxes: [],
customFields: [],
renewalSubscriptionID: nil,
appliedGiftCards: [],
attributionInfo: nil,
shippingLabels: [])
}
static func samplePackageDetails() -> ShippingLabelPackagesResponse {
return ShippingLabelPackagesResponse(storeOptions: sampleShippingLabelStoreOptions(),
customPackages: sampleShippingLabelCustomPackages(),
predefinedOptions: sampleShippingLabelPredefinedOptions(),
unactivatedPredefinedOptions: sampleShippingLabelPredefinedOptions())
}
}
// MARK: Helper methods
//
private extension ShippingLabelSampleData {
static func sampleAddress() -> Address {
return Address(firstName: "Johnny",
lastName: "Appleseed",
company: "",
address1: "234 70th Street",
address2: "",
city: "Niagara Falls",
state: "NY",
postcode: "14304",
country: "US",
phone: "333-333-3333",
}
static func sampleShippingLines() -> [ShippingLine] {
return [ShippingLine(shippingID: 123,
methodTitle: "International Priority Mail Express Flat Rate",
methodID: "usps",
total: "133.00",
totalTax: "0.00",
taxes: [.init(taxID: 1, subtotal: "", total: "0.62125")])]
}
static func sampleCoupons() -> [OrderCouponLine] {
let coupon1 = OrderCouponLine(couponID: 894,
code: "30$off",
discount: "30",
discountTax: "1.2")
return [coupon1]
}
static func sampleItems() -> [OrderItem] {
let item1 = OrderItem(itemID: 890,
name: "Fruits Basket (Mix & Match Product)",
productID: 52,
variationID: 0,
quantity: 2,
price: NSDecimalNumber(integerLiteral: 30),
sku: "",
subtotal: "50.00",
subtotalTax: "2.00",
taxClass: "",
taxes: [.init(taxID: 1, subtotal: "2", total: "1.2")],
total: "30.00",
totalTax: "1.20",
attributes: [],
addOns: [],
parent: nil,
bundleConfiguration: [])
let item2 = OrderItem(itemID: 891,
name: "Fruits Bundle",
productID: 234,
variationID: 0,
quantity: 1.5,
price: NSDecimalNumber(integerLiteral: 0),
sku: "5555-A",
subtotal: "10.00",
subtotalTax: "0.40",
taxClass: "",
taxes: [.init(taxID: 1, subtotal: "0.4", total: "0")],
total: "0.00",
totalTax: "0.00",
attributes: [],
addOns: [],
parent: nil,
bundleConfiguration: [])
return [item1, item2]
}
static func date(with dateString: String) -> Date {
guard let date = DateFormatter.Defaults.dateTimeFormatter.date(from: dateString) else {
return Date()
}
return date
}
static func taxes() -> [OrderItemTax] {
return [OrderItemTax(taxID: 75, subtotal: "0.45", total: "0.45")]
}
static func sampleShippingLabelStoreOptions() -> ShippingLabelStoreOptions {
return ShippingLabelStoreOptions(currencySymbol: "$", dimensionUnit: "cm", weightUnit: "kg", originCountry: "US")
}
static func sampleShippingLabelCustomPackages() -> [ShippingLabelCustomPackage] {
let customPackage1 = ShippingLabelCustomPackage(isUserDefined: true,
title: "Krabica",
isLetter: false,
dimensions: "1 x 2 x 3",
boxWeight: 1,
maxWeight: 0)
let customPackage2 = ShippingLabelCustomPackage(isUserDefined: true,
title: "Obalka",
isLetter: true,
dimensions: "2 x 3 x 4",
boxWeight: 5,
maxWeight: 0)
return [customPackage1, customPackage2]
}
static func sampleShippingLabelPredefinedOptions() -> [ShippingLabelPredefinedOption] {
let predefinedPackages1 = [ShippingLabelPredefinedPackage(id: "small_flat_box",
title: "Small Flat Rate Box",
isLetter: false,
dimensions: "21.91 x 13.65 x 4.13"),
ShippingLabelPredefinedPackage(id: "medium_flat_box_top",
title: "Medium Flat Rate Box 1, Top Loading",
isLetter: false,
dimensions: "28.57 x 22.22 x 15.24")]
let predefinedOption1 = ShippingLabelPredefinedOption(title: "USPS Priority Mail Flat Rate Boxes",
providerID: "usps",
predefinedPackages: predefinedPackages1)
let predefinedPackages2 = [ShippingLabelPredefinedPackage(id: "LargePaddedPouch",
title: "Large Padded Pouch",
isLetter: true,
dimensions: "30.22 x 35.56 x 2.54")]
let predefinedOption2 = ShippingLabelPredefinedOption(title: "DHL Express",
providerID: "dhlexpress",
predefinedPackages: predefinedPackages2)
return [predefinedOption1, predefinedOption2]
}
}
#endif