Skip to content
Product Unavailable
The product you are looking for could not be found.
"Our pool is so low maintenance and the odd time we need assistance the customer service has been amazing!"
Rachel Jan
Gold Coast
"The water quality is second to none and is gentle on the most sensitive of skin."
Natalie Finneran
"There aren’t many businesses left that provide after sales services like this anymore. Kudos to the Naked pools team."
Courtland Williams
"I’ve now had this system for over 2 years it’s been amazing - no more chemicals. Had 2 friends also made the switch to the naked system after my recommendation and have never looked back. "
Patt Stelliini
"The best thing we ever done to our pool."
Kit Anderson
Mudgeeraba, QLD
Every Naked Freshwater System includes our Complete Customer Care Plan, to ensure the system and the pool is everything it should be. Find out more .
Add to Cart
{{ sb_cart_feedback_text }}
Description
Specifications
`
})
sb_app.component('product-main-image', {
props: ['image','title','src'],
template:
` `
})
sb_app.component('product-additional-images', {
props: ['images','title','option','fancy','src'],
template:
` `
})
sb_app.component('additional-img', {
props: ['image','title','src'],
template: ` `
})
sb_app.component('product-attribute-images', {
props: ['images','title','option','fancy','src'],
template:
` `
})
sb_app.component('attribute-img', {
props: ['image','attrValId','title','src'],
template: ` `
})
sb_app.component('product-option', {
props: ['product_option', 'product_sba', 'qty', 'qtyStructure'],
data() {
return {
dropdown_val: ''
}
},
methods: {
attrSelection: function(OptVal) {
if(this.qtyStructure) {
var attrResult = sb_process_attr_selections(false,true);
var attrPrice = sb_quantity_price_check(attrResult[1], this.qty, this.qtyStructure);
} else {
var attrResult = sb_process_attr_selections();
var attrPrice = attrResult[1];
}
if(this.product_sba){
var attrIDs = attrResult[2];
var attrQty = '0';
if(this.product_sba[attrIDs]){
attrQty = this.product_sba[attrIDs].qty;
}
// Trigger our global sba stock function
this.$emit('handle-stock-change', attrQty);
}
// Trigger our global attr pricing function
this.$emit('handle-price-change', attrPrice);
}
},
computed: {
// Prevent specific attrs types from being displayed
attrCheck: {
get() {
// 4 = Upload fields - 5 = Read Only fields
if(this.product_option.type == 4 || this.product_option.type == 5) return false;
return true;
}
},
attrClasses: {
get() {
var option_values = this.product_option.value;
var attr_classes_str = '';
var attr_classes = [];
var priceAttr = false;
for(const prop in option_values){
if(option_values[prop].price[sb_app_head_cart.sb_currency].final[sb_shop_vars.tax]) priceAttr = true;
}
if(priceAttr===true) attr_classes.push('attr_price');
/* Set required attr types, below types will be required by default
- 0 = Dropdown
- 1 = Text
- 2 = Radio */
if(this.product_option.type == 0 || this.product_option.type == 1 || this.product_option.type == 2) attr_classes.push('req');
if(attr_classes) attr_classes_str = ' '+attr_classes.join(' ');
return attr_classes_str;
}
},
attrFirstOptionValue: {
get() {
return this.product_option.value[Object.keys(this.product_option.value)[0]].id;
}
},
selectedVal: {
get() {
// Default selection to first available variation
var selectedVal = this.attrFirstOptionValue;
if(this.product_sba){
// SBA - Default selection to first available variation in stock
for(const prop in this.product_option.value){
var attr_id = this.product_option.value[prop].attr_id;
if(this.product_sba[attr_id]){
if(parseFloat(this.product_sba[attr_id].qty) > 0){
selectedVal = this.product_option.value[prop].id;
break;
}
}
}
}
return selectedVal;
}
}
},
mounted () {
this.$nextTick(function () {
// Handle sort order of select options
if(this.product_option.type == 0) {
var options = document.querySelectorAll("#attrib-" + this.product_option.id + " option"),
attr_obj = document.querySelector("#attrib-" + this.product_option.id),
options_array = Array.from(options),
selected = attr_obj.value;
options_array.sort(function(a,b) {
if (a.dataset.attrSortOrder > b.dataset.attrSortOrder) return 1;
if (a.dataset.attrSortOrder < b.dataset.attrSortOrder) return -1;
return 0
})
attr_obj.innerHTML = "";
options_array.forEach(function(option, index) {
attr_obj.append(option);
});
attr_obj.value = selected
}
});
},
template: ``
})
sb_app.component('select-values', {
props: ['product_option_value', 'sba'],
computed: {
optionValueTitle: {
get() {
var title = this.product_option_value.title;
if(this.product_option_value.price[sb_app_head_cart.sb_currency].final[sb_shop_vars.tax]){
title += ' (+'+sb_app_head_cart.sb_formatter.format(this.product_option_value.price[sb_app_head_cart.sb_currency].final[sb_shop_vars.tax].replace(/,/g, ''))+')';
}
if(this.optionDisabled){
title += ' (sold out)';
}
return title;
}
},
optionDisabled: {
get() {
var disabled = false;
if(this.sba){
// SBA - Disable variation when out of stock
if(this.sba[this.product_option_value.attr_id]){
if(parseFloat(this.sba[this.product_option_value.attr_id].qty) <= 0){
disabled = true;
}
}
}
return disabled;
}
}
},
template: `{{ optionValueTitle }} `
})
sb_app.component('radio-values', {
props: ['product_option_id', 'product_option_value', 'selected', 'sba'],
data() {
return {
radio_val: this.selected
}
},
methods: {
attrChange: function(OptVal) {
this.$emit('grab-attr-selection', OptVal)
}
},
computed: {
radioClass: {
get() {
var radioClass = '';
if(this.sba){
if(this.sba[this.product_option_value.attr_id]){
if(parseFloat(this.sba[this.product_option_value.attr_id].qty) <= 0){
radioClass += ' na';
}
}
}
return radioClass;
}
}
},
template: `
{{ product_option_value.title }}
`
})
sb_app.component('checkbox-values', {
props: ['product_option_id', 'product_option_value'],
methods: {
attrChange: function(OptVal) {
this.$emit('grab-attr-selection', OptVal)
}
},
computed: {
optionValueTitle: {
get() {
var title = this.product_option_value.title;
if(this.product_option_value.price[sb_app_head_cart.sb_currency].final[sb_shop_vars.tax]){
title += ' for '+sb_app_head_cart.sb_formatter.format(this.product_option_value.price[sb_app_head_cart.sb_currency].final[sb_shop_vars.tax]);
}
return title;
}
}
},
template: `
{{ optionValueTitle }}
`
})
sb_app.component('specifications', {
props: ['speckey','specvalue'],
template:
`
`
})
-->