🌿✨Solid Wood Glass Vase

$19.99
🌿 Bring Nature Indoors 🌿:  Small
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Quantity

Description

🌿 Transform Your Space with Elegant Natural Beauty 🌿

✨ Add a touch of timeless charm and modern elegance to your home with our Premium Solid Wood & Glass Hydroponic Vase. Perfectly blending nature with craftsmanship, this unique design brings a breath of fresh air to any room, allowing you to showcase plants in the most stunning way. ✨

Why You’ll Fall in Love with It:

🌳 Exquisite Solid Wood Frame:

  • Made from high-quality solid wood, this frame is not just sturdy—it’s a work of art. Meticulously polished to highlight the natural grain, it brings warmth and character to your home, while offering solid support to your flowers and plants. Durable and timeless, it promises to be a lasting centerpiece.

🌱 Innovative Glass Test Tube for Hydroponics:

  • The clear, specially designed glass test tube gives you a front-row seat to the beauty of plant growth. Watch roots thrive and expand as you cultivate flowers or greenery in a simple yet mesmerizing way. It’s more than just a vase—it’s an experience! Easy to disassemble and clean, it makes maintaining your plants a breeze.

📏 Perfectly Sized for Any Space:

  • Choose between two sizes—small (S) for a sleek, space-saving look on desks or windowsills, or large (L) for a bold statement on dining tables or living room coffee tables. Whatever your space, we have the perfect fit to elevate your décor.

🛠️ Impeccable Craftsmanship:

  • From smooth, rounded corners to the seamless connection between wood and glass, every detail is designed with precision. This vase isn't just functional; it’s an embodiment of fine craftsmanship. Durable and aesthetically pleasing, it seamlessly combines beauty with utility.

🌟 Versatile Aesthetic Appeal:

  • Whether your home leans toward Nordic, minimalist, or Japanese-inspired design, this vase effortlessly blends in. Use it to display vibrant greenery or dried flowers, creating a space that feels both serene and sophisticated. Its versatile design ensures it complements any décor style, making it a perfect addition to your home.

Features at a Glance:

  • Premium solid wood frame with natural grain
  • Innovative glass test tube for hydroponic cultivation
  • Easy to clean and maintain


  • Small and large sizes to fit various spaces
  • Seamless craftsmanship for durability and beauty
  • Modern, minimalist design that complements any décor style

🌿 Elevate Your Home with Nature’s Beauty 🌿

🌟 Whether you're a plant lover or an admirer of minimalist design, this hydroponic vase is the perfect addition to any room. Experience the joy of watching life grow while enhancing the aesthetic appeal of your home. 🌟

🌱 Order yours now and transform your living space! 🌱

const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '0ac654b8-0435-44f9-945a-16b3b5fba070'; this.isRTL = SPZ.win.document.dir === 'rtl'; } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = '6f5f1b48-8309-45ef-8120-19d6655a0c4f'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // 重新渲染 抖动问题处理 this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // 绑定事件 bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popover面板点击范围 if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // 兼容主题 this.toggleProductSticky(true); }) // 监听变体变化 document.addEventListener('dj.variantChange', async(event) => { // 重新渲染 const variant = event.detail.selected; if (variant.product_id == '6f5f1b48-8309-45ef-8120-19d6655a0c4f' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // 兼容主题 handleFitTheme() { // top 属性影响抖动 let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (sticky属性影响 popover 层级展示, 会被其他元素覆盖) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // 还原该主题原有的sticky属性值 productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // 兼容主题 this.toggleProductSticky(); }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);