-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder-service.js
157 lines (139 loc) · 4.64 KB
/
order-service.js
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
class OrderService {
constructor() {
this.baseUrl = 'http://localhost:5000';
this.apiUrl = `${this.baseUrl}/api`;
this.requestTimeout = 30000; // 30 seconds timeout
this.maxRetries = 3;
}
getAuthHeaders() {
const token = localStorage.getItem('userToken');
if (!token) {
throw new Error('Please log in to continue');
}
return {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json'
};
}
formatCurrency(amount) {
return `$ ${Number(amount || 0).toFixed(2)}`;
}
formatDate(dateString) {
const date = new Date(dateString);
return date.toLocaleDateString('en-US', {
year: 'numeric',
month: 'long',
day: 'numeric',
hour: '2-digit',
minute: '2-digit'
});
}
getStatusColor(status) {
const colors = {
'Pending': '#f59e0b',
'Processing': '#3b82f6',
'Shipped': '#10b981',
'Delivered': '#059669',
'Cancelled': '#ef4444'
};
return colors[status] || '#6b7280';
}
getPaymentStatusColor(status) {
const colors = {
'Pending': '#f59e0b',
'Paid': '#10b981',
'Failed': '#ef4444',
'Refunded': '#6366f1'
};
return colors[status] || '#6b7280';
}
getImagePath(imagePath) {
if (!imagePath) {
return `${this.baseUrl}/images/default-product.jpg`;
}
// Remove any leading slashes to avoid double slashes in URL
const cleanPath = imagePath.replace(/^\/+/, '');
return imagePath.startsWith('http') ? imagePath : `${this.baseUrl}/${cleanPath}`;
}
async fetchWithTimeout(url, options) {
const controller = new AbortController();
const timeout = setTimeout(() => controller.abort(), this.requestTimeout);
try {
const response = await fetch(url, {
...options,
signal: controller.signal
});
clearTimeout(timeout);
return response;
} catch (error) {
clearTimeout(timeout);
if (error.name === 'AbortError') {
throw new Error('Request timed out. Please try again.');
}
throw error;
}
}
async retryOperation(operation, retries = this.maxRetries) {
for (let i = 0; i < retries; i++) {
try {
return await operation();
} catch (error) {
if (i === retries - 1) throw error;
await new Promise(resolve => setTimeout(resolve, 1000 * Math.pow(2, i)));
}
}
}
async createOrder(orderData) {
try {
return await this.retryOperation(async () => {
const response = await this.fetchWithTimeout(
`${this.apiUrl}/Orders`,
{
method: 'POST',
headers: this.getAuthHeaders(),
body: JSON.stringify(orderData)
}
);
if (response.status === 401) {
window.location.href = 'login.html';
return;
}
if (!response.ok) {
const error = await response.text();
throw new Error(error || 'Failed to create order');
}
return await response.json();
});
} catch (error) {
console.error('Error creating order:', error);
throw error;
}
}
async getUserOrders(userId) {
try {
return await this.retryOperation(async () => {
const response = await this.fetchWithTimeout(
`${this.apiUrl}/Orders/user/${userId}`,
{
method: 'GET',
headers: this.getAuthHeaders()
}
);
if (response.status === 401) {
window.location.href = 'login.html';
return;
}
if (!response.ok) {
const error = await response.text();
throw new Error(error || 'Failed to fetch orders');
}
return await response.json();
});
} catch (error) {
console.error('Error fetching orders:', error);
throw error;
}
}
}
// Create a global instance
const orderService = new OrderService();