URBAN DECAY Naked Mini Eyeshadow Palette, 6 Multi-use Shades, Ultra-Blendable, Long-lasting Wear, Travel Eyeshadow Palette, Crease-free, Matte Shimmer or Metallic Colors, Vegan, Cruelty-free Naked2 Basics
${function() {
const variantData = data.variant || {"id":"0a2ccc66-7fc6-4f0b-bf39-5379a9d37e5c","product_id":"e31c22e8-855a-40f4-8a9d-b591c48b7378","title":"Naked3 Mini","weight_unit":"kg","inventory_quantity":0,"sku":"-Naked3 Mini-A001821","barcode":"","position":1,"option1":"Naked3 Mini","option2":"","option3":"","note":"","image":{"src":"\/\/img.staticdj.com\/54202ec07b67fede3feca021e6c01ce9.jpeg","path":"54202ec07b67fede3feca021e6c01ce9.jpeg","width":600,"height":600,"alt":"URBAN DECAY Naked Mini Eyeshadow Palette, 6 Multi-use Shades, Ultra-Blendable, Long-lasting Wear, Travel Eyeshadow Palette, Crease-free, Matte Shimmer or Metallic Colors, Vegan, Cruelty-free Naked2 Basics","aspect_ratio":1},"wholesale_price":[{"price":35,"min_quantity":1}],"weight":"0","compare_at_price":"35","price":"35","retail_price":"35","available":true,"url":"\/products\/urban-decay-naked-mini-eyeshadow-palette-6-multi-use-shades-ultra-blendable-long-lasting-wear-travel-eyeshadow-palette-crease-free-matte-shimmer-or-metallic-colors-vegan-cruelty-free-naked2-basics?variant=0a2ccc66-7fc6-4f0b-bf39-5379a9d37e5c","available_quantity":999999999,"options":[{"name":"Color","value":"Naked3 Mini"}],"off_ratio":0,"flashsale_info":[],"sales":0};
const saveType = "percentage";
const productLabelDiscountOn = true;
return `
-
(Tax included)
${saveType == 'percentage'
? `-${variantData.off_ratio}%`
: `-`
}
(Tax included)
`;
}()}
${function(){
const tipText = "Please select a {{ name }}".replace(/\{\{\s+name\s+\}\}/g, data);
return `${tipText}
`
}()}
people are viewing this right now
Product was out of stock.
Product is unavailable.
Sku : -Naked3 Mini-A001821
${function(){
const variantData = data.variant || {"id":"0a2ccc66-7fc6-4f0b-bf39-5379a9d37e5c","product_id":"e31c22e8-855a-40f4-8a9d-b591c48b7378","title":"Naked3 Mini","weight_unit":"kg","inventory_quantity":0,"sku":"-Naked3 Mini-A001821","barcode":"","position":1,"option1":"Naked3 Mini","option2":"","option3":"","note":"","image":{"src":"\/\/img.staticdj.com\/54202ec07b67fede3feca021e6c01ce9.jpeg","path":"54202ec07b67fede3feca021e6c01ce9.jpeg","width":600,"height":600,"alt":"URBAN DECAY Naked Mini Eyeshadow Palette, 6 Multi-use Shades, Ultra-Blendable, Long-lasting Wear, Travel Eyeshadow Palette, Crease-free, Matte Shimmer or Metallic Colors, Vegan, Cruelty-free Naked2 Basics","aspect_ratio":1},"wholesale_price":[{"price":35,"min_quantity":1}],"weight":"0","compare_at_price":"35","price":"35","retail_price":"35","available":true,"url":"\/products\/urban-decay-naked-mini-eyeshadow-palette-6-multi-use-shades-ultra-blendable-long-lasting-wear-travel-eyeshadow-palette-crease-free-matte-shimmer-or-metallic-colors-vegan-cruelty-free-naked2-basics?variant=0a2ccc66-7fc6-4f0b-bf39-5379a9d37e5c","available_quantity":999999999,"options":[{"name":"Color","value":"Naked3 Mini"}],"off_ratio":0,"flashsale_info":[],"sales":0};
return `
Sku : ${variantData && variantData.sku}
Weight : ${variantData && variantData.weight}${variantData && variantData.weight_unit}
Barcode : ${variantData && variantData.barcode}
`
}()}
/** @private {string} */
class SpzCustomAnchorScroll extends SPZ.BaseElement {
static deferredMount() {
return false;
}
constructor(element) {
super(element);
/** @private {Element} */
this.scrollableContainer_ = null;
}
isLayoutSupported(layout) {
return layout == SPZCore.Layout.LOGIC;
}
buildCallback() {
this.viewport_ = this.getViewport();
this.initActions_();
}
setTarget(containerId, targetId) {
this.containerId = '#' + containerId;
this.targetId = '#' + targetId;
}
scrollToTarget() {
const container = document.querySelector(this.containerId);
const target = container.querySelector(this.targetId);
const {scrollTop} = container;
const eleOffsetTop = this.getOffsetTop_(target, container);
this.viewport_
.interpolateScrollIntoView_(
container,
scrollTop,
scrollTop + eleOffsetTop
);
}
initActions_() {
this.registerAction(
'scrollToTarget',
(invocation) => this.scrollToTarget(invocation?.caller)
);
this.registerAction(
'setTarget',
(invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId)
);
}
/**
* @param {Element} element
* @param {Element} container
* @return {number}
* @private
*/
getOffsetTop_(element, container) {
if (!element./*OK*/ getClientRects().length) {
return 0;
}
const rect = element./*OK*/ getBoundingClientRect();
if (rect.width || rect.height) {
return rect.top - container./*OK*/ getBoundingClientRect().top;
}
return rect.top;
}
}
SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll);
const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings";
class SpzCustomStrengthenTrust extends SPZ.BaseElement {
constructor(element) {
super(element);
this.renderElement_ = null;
}
isLayoutSupported(layout) {
return layout == SPZCore.Layout.CONTAINER;
}
buildCallback() {
this.xhr_ = SPZServices.xhrFor(this.win);
const renderId = this.element.getAttribute('render-id');
SPZCore.Dom.waitForChild(
document.body,
() => !!document.getElementById(renderId),
() => {
this.renderElement_ = SPZCore.Dom.scopedQuerySelector(
document.body,
`#${renderId}`
);
if (this.renderElement_) {
this.render_();
}
this.registerAction('track', (invocation) => {
this.track_(invocation.args);
});
}
);
}
render_() {
this.fetchData_().then((data) => {
if (!data) {
return;
}
SPZ.whenApiDefined(this.renderElement_).then((apis) => {
apis?.render(data);
document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{
if(event.target.nodeName == 'A'){
this.track_({type: 'trust_content_click'});
}
})
});
});
}
track_(data = {}) {
const track = window.sa && window.sa.track;
if (!track) {
return;
}
track('trust_enhancement_event', data);
}
parseJSON_(string) {
let result = {};
try {
result = JSON.parse(string);
} catch (e) {}
return result;
}
fetchData_() {
return this.xhr_
.fetchJson(STRENGTHEN_TRUST_URL)
.then((responseData) => {
if (!responseData || !responseData.data) {
return null;
}
const data = responseData.data;
const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => {
return result.concat(Object.assign(moduleSetting, {
logos: (moduleSetting.logos || []).map((item) => {
return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item;
})
}));
}, []);
return Object.assign(data, {
module_settings: moduleSettings,
isEditor: window.self !== window.top,
});
});
}
}
SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);
${data.module_title}
To display this card to customers, you need to go to "Booster & Store Conversion" to turn on the trust enhancement feature.
${item.content.replaceAll("{store_name}","Anastasia")}
To display this card to customers, you need to go to "Booster & Store Conversion" to turn on the trust enhancement feature.
${function() {
const postageFreeAmount = 399;
const custom_text = "Buy {amount} more to enjoy FREE Shipping";
const totalPrice = +data.total_price;
const diffPrice = postageFreeAmount - totalPrice;
const percentDiff = (diffPrice > 0 ? (totalPrice / postageFreeAmount * 100) : 100) + '%';
let tipText = "Your order is free delivery";
if (diffPrice > 0) {
tipText = custom_text.replace('{amount}', `
`);
}
return `
`;
}()}