Đăng ký đặt hàng iPhone 13 chính hãng VN/A
Đăng ký đặt hàng iPhone 13 chính hãng VN/A
(function () {
// Color Indexes
// 1: Red, 2: Blue, 3: Midnight Black, 4: Pink, 5: Starlight White, 6: Sierra Blue, 7: Silver, 8: Gold, 9: Graphite
var list = [
{
id: 10,
name: ‘iPhone 13 Mini’,
storages: [
{id: 1, name: ‘128GB’, price: 20400000, colors: [1,2,3,4,5]},
{id: 2, name: ‘256GB’, price: 23400000, colors: [1,2,3,4,5]},
{id: 3, name: ‘512GB’, price: 29400000, colors: [1,2,3,4,5]},
],
img: ‘iPhone13Mini’
},
{
id: 20,
name: ‘iPhone 13’,
storages: [
{id: 1, name: ‘128GB’, price: 23400000, colors: [1,2,3,4,5]},
{id: 2, name: ‘256GB’, price: 26400000, colors: [1,2,3,4,5]},
{id: 3, name: ‘512GB’, price: 32400000, colors: [1,2,3,4,5]},
],
img: ‘iPhone13’
},
{
id: 30,
name: ‘iPhone 13 Pro’,
storages: [
{id: 1, name: ‘128GB’, price: 29400000, colors: [6,7,8,9]},
{id: 2, name: ‘256GB’, price: 32400000, colors: [6,7,8,9]},
{id: 3, name: ‘512GB’, price: 38900000, colors: [6,7,8,9]},
{id: 4, name: ‘1TB’ , price: 43900000, colors: [6,7,8,9]},
],
img: ‘iPhone13Pro’
},
{
id: 40,
name: ‘iPhone 13 Pro Max’,
storages: [
{id: 1, name: ‘128GB’, price: 32400000, colors: [6,7,8,9]},
{id: 2, name: ‘256GB’, price: 35400000, colors: [6,7,8,9]},
{id: 3, name: ‘512GB’, price: 42400000, colors: [6,7,8,9]},
{id: 4, name: ‘1TB’ , price: 46900000, colors: [6,7,8,9]},
],
img: ‘iPhone13ProMax’
},
]
list.forEach(function(x) {
x.options = x.storages.map(function(o) { return o.id })
})
var formSelector = ‘.module-form-1617 form’
var priceText = document.getElementById(‘estimated-price’)
var image = document.getElementById(‘feature-image’)
var form = $(formSelector)[0]
var models = Array.from(form[‘item[3]’])
var storages = Array.from(form[‘item[4]’])
var colors = Array.from(form[‘item[5]’])
$(formSelector + ‘ input[type=”radio”]’).click(function(event) {
var modelNode = models.find(function (x) { return x.checked }) || models[0]
var id = (modelNode.dataset.value>>>0)
var model = list.find(function(x) { return x.id == id })
//Storage
storages.forEach(function(storage) {
storage.parentNode.parentNode.style.display = model.options.includes(storage.dataset.value>>>0) ? ” : ‘none’
})
var storageNode = storages.find(function (x) { return x.checked && model.options.includes(x.dataset.value>>>0) })
if (!storageNode) {
storages.find(function(x) { return model.options.includes(x.dataset.value>>>0) }).click()
return
}
var storage = model.storages.find(function(x) { return x.id == storageNode.dataset.value})
//Color
colors.forEach(function(color) {
color.parentNode.parentNode.style.display = storage.colors.includes(color.dataset.value>>>0) ? ” : ‘none’
})
var colorNode = colors.find(function (x) { return x.checked && storage.colors.includes(x.dataset.value>>>0) })
if (!colorNode) {
colors.find(function(color) { return storage.colors.includes(color.dataset.value>>>0) }).click()
return
}
image.src = ‘/image/catalog/blogs/dat-hang-iphone-13/’ + model.img + ‘_’ + colorNode.dataset.value + ‘.jpg’;
priceText.innerText = storage.price.toLocaleString(‘vi-VN’, {style : ‘currency’, currency : ‘VND’})
})
models[0].click()
})()