File: /home/lgooir/public_html/wp-content/themes/woodmart/js/scripts/wc/trackProductViewed.js
/* global woodmart_settings */
woodmartThemeModule.trackProductViewed = function() {
if ('visible' !== document.visibilityState) {
return;
}
var singleProduct = document.querySelector('.single-product-page');
var cookiesName = 'woodmart_recently_viewed_products';
if ( ! singleProduct || 'undefined' === typeof Cookies ) {
return;
}
var singleProductID = singleProduct.id.replace('product-', '');
var recentlyProduct = Cookies.get(cookiesName);
if ( ! recentlyProduct ) {
recentlyProduct = singleProductID;
} else {
recentlyProduct = recentlyProduct.split('|');
var existingIndex = recentlyProduct.indexOf(singleProductID);
if (existingIndex !== -1) {
recentlyProduct.splice(existingIndex, 1);
}
recentlyProduct.unshift(singleProductID);
recentlyProduct = recentlyProduct.join('|');
}
Cookies.set(cookiesName, recentlyProduct, {
expires: 7,
path : woodmart_settings.cookie_path,
secure : woodmart_settings.cookie_secure_param
});
};
window.addEventListener('load',function() {
woodmartThemeModule.trackProductViewed();
});