Panjia 925 Sterling Silver Hollow Love and Family Tree Fritillaria Decorative DIY Jewelry Accessories Pendant Joker Beads

$28.00
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
1
Select product
Selected 0 item(s)
ZZ759 Disney Series, Alice in Wonderland & The Mad Hatter's Tea Party
ZZ760 Two-color Frog Prince
ZZ761 Smiley Crying Face Mask
ZZ7622021 Mickey Balloon
ZZ763 hollow star string decoration
ZZ764 Mage Mickey string decoration
ZZ765 m Sakagi Mud Castle
ZZ766 Angel Wing Mother
ZZ767 love and four leaf clover
ZZ768 Mi Ni Bow and Mother
ZZ769 Hollow Love and Family Tree
ZZ770 Sparkling Buckingham
ZZ771 Gold Dome Heart
ZZ772 DISNEY LADY
ZZ773 Disney Dumbo
ZZ774 Disney Mickey and Minnie Mouse Eternal Love
class SpzCheckoutNotificationHandler extends SPZ.BaseElement { constructor(element) { super(element); this.timer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } sendVariantListUpdateEvent_(data) { const messageData = { type: "theme_variant_list_update", data: { orderToken: data.order_token || data.order_id } }; clearInterval(this.timer_); if(!window.CheckoutAPI) { this.timer_ = setInterval(() => { if(window.CheckoutAPI) { clearInterval(this.timer_); postMessage && postMessage(messageData); } }, 500); } else { postMessage && postMessage(messageData); } } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction('sendVariantListUpdateEvent', (param) => { this.sendVariantListUpdateEvent_(param.args.data); }); } } SPZ.defineElement('spz-custom-checkout-notification-handler', SpzCheckoutNotificationHandler); function handleGetOrderInfo(data) { if (data.order_id) { let api = `/api/checkout/order/info?order_id=${data.order_id}`; return Promise.resolve(api); } return Promise.reject({}); } function addEventListenerKickItems(data) { if (data.type === 'checkout_kick_items') { return Promise.resolve(data); } return Promise.reject({}); } exportFunction('handleGetOrderInfo', handleGetOrderInfo) exportFunction('addEventListenerKickItems', addEventListenerKickItems)