var i = 1;
function Add(evt){
evt.style.display="none";
i ++;
var div = document.createElement('div');
var from_hr = 'from_hr' + i;
var from_min = 'from_min' + i;
var to_hr = 'to_hr' + i;
var to_min = 'to_min' + i;
var id = evt.getAttribute('id');
var len = id.length;
var add = id.split('_')[0] + '_add' + i;
var del = id.split('_')[0] + '_del' + i;
var html = '';
var begin = id.split('_')[0];
if(begin == 'tem' || begin == 'tns' || begin == 'music' || begin == 'v' || begin == 'w'){
if(begin == 'music' || begin == 'w'){
html += '
';
html += '
';
}else{
html += '
';
html += '
';
};
if(begin == 'tem'){
html += '';
}else if(begin == 'tns'){
html += '';
}else if(begin == 'music'){
html += '';
}else if(begin == 'v'){
html += '';
}else if (begin == 'w'){
html += '';
}
html += '
';
}else{
html += '
';
};
html += '
';
html += 'From';
html += '
';
html += '
';
if(id.split('_')[0] == 'tem'){
html += '
';
html += '
';
html += '';
html += '
';
html += '
';
html += '
';
if(begin == 'tem' || begin == 'tns' || begin == 'music' || begin == 'v' || begin == 'w'){
html += '';
}
html += '
';
if(begin == 'music' || begin == 'w'){
html += 'To';
}else{
html += 'To';
};
html += '
';
html += '
';
if(id.split('_')[0] == 'tem'){
html += '';
}else if(id.split('_')[0] == 'led'){
html += '';
}else if(id.split('_')[0] == 'tns'){
html += '';
}else if(id.split('_')[0] == 'music'){
html += '';
}else if(id.split('_')[0] == 'us'){
html += '';
}else if(id.split('_')[0] == 'v'){
html += '';
}else if(id.split('_')[0] == 'w'){
html += '';
}else{
html += '';
};
for(var hr = 0; hr < 24; hr++){
if(hr < 10){
html += '';
}else{
html += '';
};
};
html += '';
if(id.split('_')[0] == 'tem'){
html += ' :';
}else if(id.split('_')[0] == 'led'){
html += ' :';
}else if(id.split('_')[0] == 'tns'){
html += ' :';
}else if(id.split('_')[0] == 'music'){
html += ' :';
}else if(id.split('_')[0] == 'us'){
html += ' :';
}else if(id.split('_')[0] == 'v'){
html += ' :';
}else if(id.split('_')[0] == 'w'){
html += ' :';
}else{
html += ' :';
};
for(var min = 0; min < 60; min++){
if(min < 10){
html += '';
}else{
html += '';
};
};
html += ' ';
html += '';
html += '
';
html += '';
html += '
';
div.innerHTML = html;
div.style.marginTop = '15px';
div.style.zIndex = '100';
evt.parentNode.parentNode.parentNode.parentNode.appendChild(div);
};
function Delete(evt){
var id = evt.getAttribute('id');
console.log(id.split('_')[0]);
var add = id.split('_')[0] + '_' + 'add';
var clo_xs_3 = evt.parentNode;
var from = clo_xs_3.parentNode;
var div = from.parentNode;
var next_div = div.nextElementSibling;
var pre_div = div.previousElementSibling;
var begin = id.split('_')[0];
if(next_div && pre_div == null){
div.parentNode.removeChild(div);
next_div.style.marginTop = '0px';
}else if(next_div && pre_div){
div.parentNode.removeChild(div);
}else if(next_div == null && pre_div == null){
if(id.split('_')[0] == 'us'){
div.parentNode.parentNode.parentNode.children[4].style.display = 'inline-block';
}else{
div.parentNode.parentNode.parentNode.children[1].style.display = 'inline-block';
}
div.parentNode.style.display = 'none';
var name = id.split('_')[0];
var from_hr = name + '_from_hr' + 1;
var from_min = name + '_from_min' + 1;
var to_hr = name + '_to_hr' + 1;
var to_min = name + '_to_min' + 1;
$('select[name=' + from_hr + ']').val('00');
$('select[name=' + from_min + ']').val('00');
$('select[name=' + to_hr + ']').val('00');
$('select[name=' + to_min + ']').val('00');
}else{
div.parentNode.removeChild(div);
i --;
add = add + i;
add = document.getElementById(add);
if(add == null){
if(begin == 'tem' || begin == 'tns' || begin == 'music' || begin == 'v' || begin == 'w'){
add = pre_div.children[1].children[2].children[3];
}else{
add = pre_div.children[1].children[1].children[3];
};
};
add.style.display = 'block';
};
};
$(function(){
var tem = $(".set-schedule")[0];
var tem_div = $("#tem_div");
var led = $(".set-schedule")[1];
var led_div = $("#led_div");
var tem_near_stem = $(".set-schedule")[2];
var tem_near_stem_div = $("#tem-near-stem_div");
var music = $(".set-schedule")[3];
var music_div = $("#music_div");
var ultra_sonic = $(".set-schedule")[4];
var ultra_sonic_div = $("#ultra-sonic_div");
var vibration = $(".set-schedule")[5];
var vibration_div = $("#vibration_div");
var wind_flow = $(".set-schedule")[6];
var wind_flow_div = $("#wind-flow_div");
tem.onclick = function(){
tem.style.display = 'none';
tem_div.css('display','block');
};
led.onclick = function(){
led.style.display = 'none';
led_div.css('display','block');
};
tem_near_stem.onclick = function(){
tem_near_stem.style.display = 'none';
tem_near_stem_div.css('display','block');
};
music.onclick = function(){
music.style.display = 'none';
music_div.css('display','block');
};
ultra_sonic.onclick = function(){
ultra_sonic.style.display = 'none';
ultra_sonic_div.css('display','block');
};
vibration.onclick = function(){
vibration.style.display = 'none';
vibration_div.css('display','block');
};
wind_flow.onclick = function(){
wind_flow.style.display = 'none';
wind_flow_div.css('display','block');
};
var btn_con = $(".btn-configure");
btn_con.click(function(){
$("#configure").css('display','block');
});
$("#list li").click(function(){
$("#list li").removeClass("current_li");
$("#list li a").removeClass("current");
});
$(".js-color").click(function(){
var $this = $(this);
var hex = $this.attr('data-hex');
var rgb = $this.attr('data-rgb');
$(".show_color").css('background-color', hex);
$("input[name=color]").val(rgb);
$(".span_color").text(hex);
});
$(".down-arrow").click(function(){
$(".color-top").css('display','none');
$(".down-arrow").css('display','none');
$(".up-arrow").css('display','inline-block');
$(".color-set").css('display','block');
});
$(".up-arrow").click(function(){
$(".color-top").css('display','block');
$(".down-arrow").css('display','inline-block');
$(".up-arrow").css('display','none');
$(".color-set").css('display','none');
});
$("#brightness").click(function(){
$(".brightness_info").css('display','block');
$(".color_info").css('display','none');
$(".recomendation_info").css('display','none');
});
$("#color").click(function(){
$(".brightness_info").css('display','none');
$(".color_info").css('display','block');
$(".recomendation_info").css('display','none');
});
$("#recomendations").click(function(){
$(".recomendation_info").css('display','block');
$(".color_info").css('display','none');
$(".brightness_info").css('display','none');
});
$(".color-cancel").click(function(){
$("#configure").css('display','none');
});
$(".color-confirm").click(function(){
$("#configure").css('display','none');
});
$(".form-control")[0].onclick = function(){
window.location.href = '/online_fitolab';
};
});