New Sizes – BloomChic (2024)

[\s\S]*<\/div>/g.exec(data.description);if(sizeAll && sizeAll[0]) {$(sizeAll[0]).find('.sizeContainer').each(function(element) {sizeAllHtml.push($(this).html().replace(/

[\s\S]*<\/div>/, ''))})}// setSkuInfoBuyIndex();// 加载完数据处理$('.CartSkuSelect_loading').hide()$('.CartSkuSelect_box, .CartSkuSelect_confirm').fadeIn(100);handleBriefProductTrackShow();}})})resovle()})};// 初始化面板function handleInit(data) {options = data.options;variantsObject = data.variants;var colorStyle = findProductMetafieldsByKey(gqlData, 'skc_attributes') || {}var selectOptions = [];if (id) {variant = findVariantById(id); // 当前选中的selectOptions = variant.options;} else {selectOptions = [options[0].values[0]]}if(options) {var html = "";options.forEach(function(element, index) {var isColor = element.name == 'Color';var isSize = element.name == 'Size';var str = `

`;var str2 = '';element.values.forEach(function(element2, index2) {str2 += `

${isColor?getColorBgURL(element2):element2}

`})str += `

${str2}

`;str = `

${str}

`;html += str;});$('.CartSkuSelect_selectbox').html(html);// 简易处理 setTimeout(function() {handlePopupAll()}, 10)}};function handleOptionsStatus(data) { var ProductOptions = data.options; var optionsValue = {}; // 所有规格属性 var selectOptions = Array(ProductOptions.length).fill(''); // 选中规格 ProductOptions.forEach((option, index) => {const key = option.name; optionsValue[key] = []; $(`.variant-button[data-name="${key}"]`).each(function () { optionsValue[key].push($(this).attr('data-value')) }); selectOptions[index] = $(`.on.variant-button[data-name="${key}"]`).attr('data-value') || '' }) var skus = {}; data.variants.forEach(item => { skus[`${item.options.join(';')}`] = item.available ? 1 : 0 }); // 判断库存 const hasSku = (reg) => Object.keys(skus).some(key => { const result = key.search(reg) > -1; if (result) { return skus[key] > 0; // 找到了再判断是否还有库存 } return false }) // 生成reg const genReg = (args) => args.reduce((acc, cur, idx) => { if (idx === 0) { return acc += cur ? `^(${cur})` : '' } if (idx === args.length - 1) { return acc += cur ? `;(${cur})$` : '' } return acc += cur ? `;(${cur})` : '.+' }, '') const renderOption = (key) => { const optionIndex = ProductOptions.findIndex((option) => option.name === key); return optionsValue[key].map(current => { const currentOption = [...selectOptions] currentOption[optionIndex] = current const reg = genReg(currentOption) const disabled = !hasSku(new RegExp(reg)) $(`.variant-button[data-value="${current}"]`)[disabled ? 'addClass' : 'removeClass']('disabled'); return { current, disabled } }) } ProductOptions.forEach((option) => { renderOption(option.name); }); };// 查找选中SKUfunction findVariantById(id) {return variantsObject.find(item => item.id == id);};// 找到选中颜色与Size按钮Domfunction findVariantByDom() {var result = []$('.variant-wrappers .variant-button.on').each((idx, ele) => {result.push($(ele).data('value'))})return variantsObject.find(item => item.options.toString() == result.toString())};window.handleOptionClick = async function(e) {$(e).parent().find('.variant-button').removeClass('on');$(e).addClass('on');handlePopupAll()};/* 处理图片列表定位、sku展示价格 , 预售时间, 展示tips等 */function handlePopupAll() {handleOptionsStatus(product)variant = findVariantByDom();handleSkuPrice();handleConfirmStyle();handlePreOrderTime();handleScrollImagePosition();handleOptionsTips();}/*处理价格*/function handleSkuPrice() {if (variant && variant.compare_at_price && variant.price) {var hasDeletePrice = variant.compare_at_price > variant.price$('.CartSkuSelect_price__origin span').text(hasDeletePrice ? `$${(variant.compare_at_price/100).toFixed(2)}`:'')$('.CartSkuSelect_price__true')[hasDeletePrice?'addClass':'removeClass']('CartSkuSelect_price__trueRed').find('span').text(`$${(variant.price/100).toFixed(2)}`);}};function handleOptionsTips() {if (window.detailOptionTips) {window.detailOptionTips.forEach(item => {var key = $(`.variant-button.on[data-name="${item.key}"`).text();var tipsbox = $(`.variant-wrappers-tips[data-name="${item.key}"]`);if (key) {tipsbox && tipsbox.html(item.options[key]) } else {tipsbox && tipsbox.html() }})}};// 处理滚动定位的与颜色处理function handleScrollImagePosition() {// 如果有选中的颜色var color = $(".variant-button.variant-button__bgp.on").attr("data-value");var imgid = null;if (color) {var find = variantsObject.find(item => item.option1 == color);if (find) {imgid = find.featured_media.id;}$("#variant_Color").text(color);}if (imgid) {var current = ".CartSkuSelect_imglist li[data-id="+imgid+"]";$('.CartSkuSelect_imglist ul').animate({scrollLeft: $(current)[0].offsetLeft - 16}, 100);}};// 处理Pre Order Timefunction handlePreOrderTime() {var result = false;var color = $(".variant-button[data-index='option1'].on").attr("data-value");var size_type = $(".variant-button[data-index='option3'].on").attr("data-value");var baseTime = 60 * 60 * 24 * 3 * 1000;if (preOrderTime) {if (size_type && size_type.length) {var findVariants = variantsObject.filter(item => item.option1 == color && item.option3 == size_type);} else { var findVariants = variantsObject.filter(item => item.option1 == color);}$('.variant-button[data-name="Size"]').removeAttr('data-arriva-time');findVariants.forEach(item => {preOrderTime.forEach(item2 => {if (item.sku == item2.sku_code && item.available) {var timeEnd = new Date(item2.arriva_date).getTime();var now = Date.now();if ((timeEnd - now) > baseTime) {$(`.variant-button[data-value="${item.option2}"]`).attr('data-arriva-time', '');}}})})}if (variant && preOrderTime) { var current = preOrderTime.find(function(item) {return item.sku_code == variant.sku }) var now = Date.now() var result = current && new Date(current.arriva_date).getTime() - now > baseTime;}if (result) {$('.CartSkuSelect_pretime').html(`Pre-order:Estimated to ship by ${theme.dateTransform(current.arriva_date)}`).show();var dayDiff = new Date(current.arriva_date).getTime() - new Date().getTime()$('.CartSkuSelect_pretime').attr('data-value', Math.ceil(dayDiff / (1000 * 3600 * 24)));} else {$('.CartSkuSelect_pretime').hide();$('.CartSkuSelect_pretime').attr('data-value', 0);}};// 批量处理按钮状态, 现在是disabed掉function handleOptionsHide() {var list = document.querySelectorAll('.variant-button');for(let i = 0; i < list.length; i++) {// list[i].classList.remove('disabled');if (optionsMerger) {list[i].classList.add('disabled');} else {list[i].classList.add('disabled');}}};// 处理确认按钮$('.CartSkuSelect_confirm').click(function(e) {if (!variant) {theme.toast.show({message: "Please Choose Size"})return}if (!id) {handleCartAdd(variant.id);return}if(variant.id == id) {closeModal()return}handleCartOptions();});// 处理颜色背景图function getColorBgURL(color) {var bgImage = ''if (skcPictureUrls && skcPictureUrls[color]) {bgImage = skcPictureUrls[color]} else {var findOne = variantsObject.find(item => item.option1 == color && item.featured_image && item.featured_image.src);bgImage = `${findOne.featured_image.src}&width=200`}return `

`}; // sku购物车操作 function handleCartOptions() {var findOne = gqlData.variants.nodes.find(item => item.id.includes(variant.id)); // 切换判断是否超限制 var postData = [ { sku: sku, variant_id: parseInt(id), chosen: chosen, action_time: Date.now(), deleted: true,product_type: 1, quantity: 0 }, { sku: variant.sku, variant_id: variant.id, chosen: chosen, action_time: Date.now(), deleted: false,product_type: 1, quantity: !findOne.availableForSale ? 0 : parseInt(qty) <= findOne.quantityAvailable ? parseInt(qty) : (findOne.quantityAvailable || 1) } ];handleCartAddTrackClick(); document.dispatchEvent(new CustomEvent("cart:variant.cart-drawer", { detail: { data: postData } })); };// 加购async function handleCartAdd(id) {await theme.ShopCart.addToCart(id, variant.sku, variant.price / 100) // 加购// wishList的时候会调用moveToCartConfirmif (window.moveToCartConfirm) {window.moveToCartConfirm() // 调用加购} else {theme.toast.show({message: "Added Successfully!", type:"success"});}document.dispatchEvent(new CustomEvent("cart:addCartSuccess", {status: true}));// 补加购事件handleCartAddTrackClick()closeModal()};// 刷新购物车function refreshCart(e) {document.dispatchEvent(new CustomEvent("cart:build"), {detail: {}})};// 格式化图片function formatImgUrl(url) {return url.replace(/(\.[^.]*)$/, "_180x$1")};// 处理状态function handleConfirmStyle() {if(!variant || !variant.available) {$('.CartSkuSelect_confirm').attr('disabled', true).text(!variant ?'Add to Cart':'Sold Out')} else {$('.CartSkuSelect_confirm').removeAttr('disabled').text(!id ? window.isMoveToCart ? 'Move To Cart' : 'Add to Cart' : 'Update');}};/* 获取上报数据 */function getSelectPopupProductValue() {return {product_id: product.id,product_spu: theme.utils.getProductSpu(product.variants[0].sku || ""),product_name: product.title,preorder_skus: preOrderTime?.map(item => item.sku_code).join(','),web_original_price: product.compare_at_price / 100,web_current_price: product.price / 100,web_discount_price: (product.compare_at_price - product.price) / 100,product_from_page: product_from_page || '购物车页',}}function handleBriefProductTrackShow() {var colorStyle = findProductMetafieldsByKey(gqlData, 'skc_attributes') || {};var productSkcTag = {}; Object.keys(colorStyle).forEach(key => {var tagValue = colorStyle[key].tag_styleif (tagValue) {let curKey = `product_skc_tag_${tagValue}`;if (!productSkcTag[curKey]) {productSkcTag[curKey] = []}productSkcTag[curKey].push(key)}});Object.keys(productSkcTag).forEach(key => { productSkcTag[key] = productSkcTag[key].join(';')})sensors.track("BriefProductShow", Object.assign(getSelectPopupProductValue(), {preorder_skus: preOrderTime?.map(item => item.sku_code).join(';'),...productSkcTag,}))}function handleCartAddTrackClick() {sensors.track("AddToCartClick", Object.assign( getSelectPopupProductValue(), {page_code: '微商详',product_size: variant.option2,product_color: variant.option1,preorder_left_date: $('.CartSkuSelect_pretime').attr('data-value') || 0,recommend_size: ''}))}})

New Sizes
– BloomChic (2024)

FAQs

New Sizes – BloomChic? ›

That's why we're bringing you the most on-trend and stylish clothing in sizes 12-22 (with an expansion to size 30 by June 2022), and we're reimagining this space and creating a fashion-forward, community-centered shopping destination that always puts YOU first.

Is BloomChic owned by Shein? ›

While SHEIN caters to a wide audience, offering a vast range of trendy, affordable clothing, BloomChic has its own target market and goals. Both aim to provide fashion-forward items at great prices, but they operate independently of each other.

Where are the clothes from BloomChic made? ›

To pull this off, we work closely with our deep networks of factories and other supply chain partners in southern China to accurately plan, manage, and predict inventory.

How long does it take to get clothes from BloomChic? ›

CountryStandard Shipping Time (Days)Express Shipping Time (Days)
United States9-123-7
United Kingdom7-115-6
Canada10-148-9
Australia11-135-6
6 more rows

Do New Look sizes run small or big? ›

3. Sizing Guide for New Look. New Look dresses are big in the bust and small in the waist. A size six dress from New Look has a bust of 81 cm, a waist of 62 cm, and a hip of 87 cm.

What is Shein's old name? ›

Shein, originally named ZZKKO, was founded in China in 2008 by entrepreneur and search engine optimization (SEO) marketing specialist Chris Xu (Xu Yangtian). Information on Xu's educational and career background remains elusive as of 2022, with sources conflicting on details of his biography.

Does BloomChic take returns? ›

Eligible items must be in their original condition; unwashed and unworn. If items are not in their original condition, they will not be accepted for return.

Who is the founder of BloomChic? ›

Bill Hu, the founder and chief executive officer of BloomChic, said, "L Catterton has an impressive track record of helping companies to build iconic brands, broaden product suites, enter new geographic markets, and attract talent.

Are Zara clothes made in China? ›

While some competitors outsource all production to Asia, Zara manufactures its most fashionable items – half of all its merchandise – at a dozen company-owned factories in Spain (particularly in Galicia), Portugal (northern part) and Turkey.

Where are Lululemon clothes made? ›

So, where are Lululemon products actually made? Lululemon products are produced in several countries, including Vietnam, China, and Cambodia, among others. This global manufacturing strategy allows Lululemon to maintain high standards of quality and meet the growing demand for their stylish and functional clothing.

How do I contact BloomChic? ›

* Live Chat: Our 24/7 live chat support is just a click away. Look for the chat icon located at the bottom right corner of our website. There, our dedicated support team can assist you in real-time. * Email: You can also connect with us by sending an email to support@bloomchic.us -- or, by submitting a request below.

Does BloomChic have an app? ›

Download the BloomChic App | A Re-Imagining | BloomChic.

What forms of payment does BloomChic accept? ›

Please feel free to pay with Visa, Mastercard, American Express, Shop Pay, Apple Pay and Google Pay under Shopify Payments.

What size is an XL in new look? ›

Core Women's sizes
UK SizeUK SizeBust
14M39
16L41
18L44
20XL45.5
7 more rows
Aug 9, 2023

What clothing size is most attractive? ›

The majority of the men (nearly 86% of them) preferred a woman with a dress size 14 to 16. Only 10% said they prefer women between sizes 8 and 10, and 4.2% of them said they prefer women sizes 20 or over.

What size waist is a size 10? ›

Hitched's Women's Dress Size Guide
SizeBustWaist
680.5cm62.5cm
833″26″
83cm65cm
1035″28″
20 more rows
Mar 4, 2024

What company is SHEIN owned by? ›

Who owns Shein? Shein is owned by parent company Nanjing Lingtian Information Technology, although the company's ownership is frequently branded a mystery. It remains a private company, with four major shareholders so far: JAFCO Asia, IDG Capital, Sequoia Capital China, and Tiger Global Management.

What other brands are owned by SHEIN? ›

SHEIN owns a variety of brands and companies under its umbrella. Though SHEIN is famously tight-lipped about its acquisitions, some known brands include ROMWE, another fast-fashion retailer. This suggests SHEIN's strategy involves broadening its market reach and diversifying its product offerings through acquisitions.

Who does SHEIN partner with? ›

Shein partners with Forever 21 in fast-fashion deal that will expand reach of both companies. Fast fashion e-tailer Shein may be coming to a mall near you.

References

Top Articles
Latest Posts
Article information

Author: Sen. Emmett Berge

Last Updated:

Views: 6078

Rating: 5 / 5 (80 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Sen. Emmett Berge

Birthday: 1993-06-17

Address: 787 Elvis Divide, Port Brice, OH 24507-6802

Phone: +9779049645255

Job: Senior Healthcare Specialist

Hobby: Cycling, Model building, Kitesurfing, Origami, Lapidary, Dance, Basketball

Introduction: My name is Sen. Emmett Berge, I am a funny, vast, charming, courageous, enthusiastic, jolly, famous person who loves writing and wants to share my knowledge and understanding with you.