forked from seagullua/JS-BuyList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
154 lines (142 loc) · 4.43 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
var INPUT_FORM = $('.main-input');
var INPUT_BUTTON = $('.add-button');
var LIST = $('.list-of-items');
var LIST_NOT_BAUGHT = $('.not-baught');
var LIST_BAUGHT = $('.baught');
var ITEM_TEMPLATE = $('#item_temp').html();
var ITEM_LABEL_TEMPLATE = $('#item_label_temp').html();
var TIME_SHORT = 250;
var TIME_LONG = 700;
INPUT_BUTTON.click(function () {
if(INPUT_FORM.val()){
addItem(INPUT_FORM.val());
INPUT_FORM.val("");
}
INPUT_FORM.focus();
});
INPUT_FORM.keypress(function (e) {
if(e.which == 13){
if(INPUT_FORM.val()){
addItem(INPUT_FORM.val());
INPUT_FORM.val("");
}
}
INPUT_FORM.focus();
})
function addItem(title) {
var node = $(ITEM_TEMPLATE);
var first = node.find(".first");
var item_name = first.find("span");
var edit = first.find(".edit");
var del = node.find(".delete");
var buy = node.find(".buy");
var plus = node.find(".plus");
var minus = node.find(".minus");
var unbuy = node.find(".unbuy");
var number_label = node.find(".number-label");
var number = 1;
node.height(0);
item_name.text(title);
item_name.click(function () {
if(edit.focus());
item_name.css("display","none");
edit.css("display","inline-block");
edit.attr("value",item_name.text());
edit.focus();
edit.focusout(function () {
edit.css("display","none");
if(edit.val()) {
title = edit.val();
item_name.text(title);
updateLabels();
}
item_name.css("display", "inline-block");
})
});
minus.click(function(){
if(number_label.css("opacity") == 1) {
number_label.fadeOut(TIME_SHORT, function () {
number--;
number_label.text(number);
number_label.fadeIn(TIME_SHORT);
checkNumber();
updateLabels();
});
}
});
plus.click(function(){
if(number_label.css("opacity") == 1) {
number_label.fadeOut(TIME_SHORT, function () {
number++;
number_label.text(number);
number_label.fadeIn(TIME_SHORT);
checkNumber();
updateLabels();
});
}
});
buy.click(function(){
node.fadeOut(TIME_SHORT, function(){
first.css("text-decoration","line-through");
del.css("display","none");
buy.css("display","none");
plus.attr("disabled","true");
minus.attr("disabled","true");
unbuy.css("display","inline-block");
node.fadeIn(TIME_SHORT);
updateLabels();
});
});
unbuy.click(function(){
node.fadeOut(TIME_SHORT, function(){
first.css("text-decoration","none");
del.css("display","inline-block");
buy.css("display","inline-block");
plus.removeAttr("disabled");
minus.removeAttr("disabled");
unbuy.css("display","none");
node.fadeIn(TIME_SHORT);
updateLabels();
})
});
del.click(function(){
node.find("button").removeClass("tooltip");
node.stop().animate({height:0},TIME_SHORT,function () {
node.remove();
updateLabels();
});
});
LIST.append(node);
node.stop().animate({height:50},TIME_LONG,function () {
node.removeAttr("style");
});
function checkNumber() {
if(number<2){
minus.attr("disabled","true");
}else{
minus.removeAttr("disabled")
}
}
function updateLabels(){
LIST_NOT_BAUGHT.html("");
LIST_BAUGHT.html("");
LIST.children(".item").each(function (index) {
var label = $(ITEM_LABEL_TEMPLATE);
var round_label = label.find(".round-label");
var name_of_item = label.find(".name-of-item");
round_label.text($(this).find(".number-label").text());
name_of_item.html($(this).find("#item_name").text());
var display = $(this).find(".unbuy").css("display");
if(display == "none"){
LIST_NOT_BAUGHT.append(label);
}else{
LIST_BAUGHT.append(label);
}
});
}
updateLabels();
checkNumber();
}
addItem("Помідори");
addItem("Сир");
addItem("Печиво");