File size: 7,926 Bytes
c2efbe6 | 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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | import { toast } from "react-toastify"
const notificationTypes = {
success: {
icon: "β
",
background: "linear-gradient(135deg, #4ecdc4, #44a08d)",
color: "white"
},
warning: {
icon: "β οΈ",
background: "linear-gradient(135deg, #f39c12, #e67e22)",
color: "white"
},
error: {
icon: "β",
background: "linear-gradient(135deg, #e74c3c, #c0392b)",
color: "white"
},
info: {
icon: "βΉοΈ",
background: "linear-gradient(135deg, #667eea, #764ba2)",
color: "white"
},
order: {
icon: "π¦",
background: "linear-gradient(135deg, #9b59b6, #8e44ad)",
color: "white"
},
cart: {
icon: "π",
background: "linear-gradient(135deg, #2ecc71, #27ae60)",
color: "white"
},
wishlist: {
icon: "β€οΈ",
background: "linear-gradient(135deg, #e91e63, #c2185b)",
color: "white"
},
review: {
icon: "β",
background: "linear-gradient(135deg, #ff9800, #f57c00)",
color: "white"
},
shipping: {
icon: "π",
background: "linear-gradient(135deg, #00bcd4, #0097a7)",
color: "white"
},
promotion: {
icon: "π",
background: "linear-gradient(135deg, #ff5722, #e64a19)",
color: "white"
},
}
let notificationStore = {
notifications: [
{
id: 1,
type: "success",
title: "Order Confirmed",
message: "Your Premium order #MK2025001 has been confirmed and is being processed.",
timestamp: new Date(Date.now() - 5 * 60 * 1000),
read: false,
priority: "high",
action: { label: "View Order", url: "/orders/MK2025001" },
},
{
id: 2,
type: "shipping",
title: "Package Shipped",
message: "Your Premium items are on the way! Expected delivery: Tomorrow",
timestamp: new Date(Date.now() - 30 * 60 * 1000),
read: false,
priority: "medium",
action: { label: "Track Package", url: "/tracking" },
},
{
id: 3,
type: "promotion",
title: "Exclusive Offer",
message: "Limited time: 25% off on Premium electronics. Use code Premium25",
timestamp: new Date(Date.now() - 2 * 60 * 60 * 1000),
read: true,
priority: "low",
action: { label: "Shop Now", url: "/electronics" },
},
],
listeners: [],
maxNotifications: 6
}
export const addNotification = (notification) => {
const newNotification = {
id: Date.now(),
timestamp: new Date(),
read: false,
priority: "medium",
...notification
}
notificationStore.notifications = [newNotification, ...notificationStore.notifications].slice(0, notificationStore.maxNotifications)
notificationStore.listeners.forEach(listener => listener(notificationStore.notifications))
const type = notification.type || 'info'
const style = notificationTypes[type]
toast.info(
<div>
<div style={{ fontWeight: 'bold', marginBottom: '4px' }}>{notification.title}</div>
<div style={{ fontSize: '0.9rem' }}>{notification.message}</div>
</div>,
{
position: "top-right",
autoClose: 2000,
hideProgressBar: false,
closeOnClick: true,
pauseOnHover: true,
draggable: true,
progress: undefined,
icon: style.icon,
style: {
background: style.background,
color: style.color,
}
}
)
return newNotification
}
export const subscribeToNotifications = (callback) => {
notificationStore.listeners.push(callback)
return () => {
notificationStore.listeners = notificationStore.listeners.filter(listener => listener !== callback)
}
}
export const getNotifications = () => {
return notificationStore.notifications
}
export const markNotificationAsRead = (id) => {
notificationStore.notifications = notificationStore.notifications.map(notification =>
notification.id === id ? { ...notification, read: true } : notification
)
notificationStore.listeners.forEach(listener => listener(notificationStore.notifications))
}
export const markAllNotificationsAsRead = () => {
notificationStore.notifications = notificationStore.notifications.map(notification => ({
...notification,
read: true
}))
notificationStore.listeners.forEach(listener => listener(notificationStore.notifications))
}
export const deleteNotification = (id) => {
notificationStore.notifications = notificationStore.notifications.filter(notification => notification.id !== id)
notificationStore.listeners.forEach(listener => listener(notificationStore.notifications))
}
export const clearAllNotifications = () => {
notificationStore.notifications = []
notificationStore.listeners.forEach(listener => listener(notificationStore.notifications))
}
export const getUnreadCount = () => {
return notificationStore.notifications.filter(notification => !notification.read).length
}
export const notifyCartAction = (action, product) => {
const notifications = {
add: {
type: 'cart',
title: 'Added to Cart! π',
message: `${product.name} has been added to your cart.`,
action: { label: 'View Cart', url: '/cart' }
},
remove: {
type: 'cart',
title: 'Removed from Cart',
message: `${product.name} has been removed from your cart.`,
action: { label: 'View Cart', url: '/cart' }
},
update: {
type: 'cart',
title: 'Cart Updated',
message: `Quantity updated for ${product.name}.`,
action: { label: 'View Cart', url: '/cart' }
},
failed: {
type: 'error',
title: 'Cart Operation Failed! β',
message: `Failed to ${action === 'add' ? 'add' : action === 'remove' ? 'remove' : 'update'} ${product.name} from your cart.`,
action: { label: 'Try Again', url: '/cart' }
},
error: {
type: 'error',
title: 'Cart Error! β',
message: `An error occurred while ${action === 'add' ? 'adding' : action === 'remove' ? 'removing' : 'updating'} ${product.name}.`,
action: { label: 'Try Again', url: '/cart' }
}
}
return addNotification(notifications[action])
}
export const notifyWishlistAction = (action, product) => {
const notifications = {
add: {
type: 'wishlist',
title: 'Added to Wishlist! β€οΈ',
message: `${product.name} has been added to your wishlist.`,
action: { label: 'View Wishlist', url: '/wishlist' }
},
remove: {
type: 'wishlist',
title: 'Removed from Wishlist',
message: `${product.name} has been removed from your wishlist.`,
action: { label: 'View Wishlist', url: '/wishlist' }
},
failed: {
type: 'error',
title: 'Wishlist Operation Failed! β',
message: `Failed to ${action === 'add' ? 'add' : 'remove'} ${product.name} from your wishlist.`,
action: { label: 'Try Again', url: '/wishlist' }
},
error: {
type: 'error',
title: 'Wishlist Error! β',
message: `An error occurred while ${action === 'add' ? 'adding' : 'removing'} ${product.name} to/from your wishlist.`,
action: { label: 'Try Again', url: '/wishlist' }
}
}
return addNotification(notifications[action])
}
export const notifyOrderAction = (action, orderId) => {
const notifications = {
placed: {
type: 'order',
title: 'Order Placed! π¦',
message: `Your order #${orderId} has been successfully placed.`,
action: { label: 'Track Order', url: `/orders/${orderId}` }
},
shipped: {
type: 'shipping',
title: 'Order Shipped! π',
message: `Your order #${orderId} is on its way to you.`,
action: { label: 'Track Package', url: `/tracking/${orderId}` }
},
delivered: {
type: 'success',
title: 'Order Delivered! β
',
message: `Your order #${orderId} has been delivered.`,
action: { label: 'Review Product', url: `/reviews/write` }
}
}
return addNotification(notifications[action])
} |