Sampler packs
{
const activeParams = [...activeFilters];
if (activeSort.value) {
activeParams.push({
key: 'sort_by',
value: activeSort.value,
});
}
if (activePage > 1) {
activeParams.push({
key: 'page',
value: activePage,
});
}
// For open
activeParams.push({
key: 'open_filter_groups',
value: openFilterGroups.join(','),
});
const filteredSortedUrl = `${window.location.pathname}${activeParams.length > 0 ? `?${activeParams.map(v => `${v.key}=${v.value}`).join('&')}` : ''}`;
const productGridDiv = '.product-grid-items';
const productGrid = $el.querySelector(productGridDiv);
const productFiltersDiv = '.product-grid-filters';
const productFilters = $el.querySelector(productFiltersDiv);
$store.ajaxWorking = true;
fetch(filteredSortedUrl)
.then((response) => response.text())
.then((responseText) => {
const html = new DOMParser().parseFromString(responseText, 'text/html');
// Update items
const productGridUpdated = html.querySelector(productGridDiv);
productGrid.innerHTML = productGridUpdated.innerHTML;
// Grab filters
const productFiltersUpdated = html.querySelector(productFiltersDiv);
productFilters.replaceWith(productFiltersUpdated);
$store.ajaxWorking = false;
history.pushState({}, '', filteredSortedUrl);
// Scroll to top.
const scrollTop =
document.querySelector('.product-grid-items').getBoundingClientRect().top +
window.scrollY -
document.querySelector('.site-header').getBoundingClientRect().height - 40;
window.scrollTo({ top: scrollTop, behavior: 'smooth' });
})
.catch((e) => {
console.error(e);
$store.ajaxWorking = false;
});
}"
@paginate="
activePage = $event.detail;
$dispatch('update');
"
@sort="
activeSort = $event.detail;
$dispatch('update');
"
@filter="
$dispatch('update');
">
BRAVO TRIO (3 CANS)
3 can ($7.33/can)
Contains Wintergreen, Citrus Strike and Arctic Mint
BUZZ BUNDLE (6 CANS)
6 can ($6.16/can)
Contains Citrus Strike and Arctic Mint.
Mint Lover's Bundle (10 CANS)
10 can ($5.50/can)
contains arctic mint and wintergreen
OPERATOR BUNDLE (15 CANS)
15 can ($5.33/can)
Contains Wintergreen, Citrus Strike and Arctic Mint
LOCK-IN BUNDLE (20 CANS)
20 can ($4.95/can)
Contains Citrus Strike and Arctic Mint.
TEASER PACK (2 CANS)
2 can ($7.49/can)
Contains Citrus Strike and Arctic Mint.
BOOSTER BUNDLE (10 CANS)
10 can ($5.50/can)
Contains Citrus Strike and Arctic Mint.
BRAVO SUPPLY DROP (50 CANS)
50 can ($3.98/can)
Contains Citrus Strike and Arctic Mint.







