-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path66-anahtar-kelime-kutusu.htm
275 lines (192 loc) · 8.09 KB
/
66-anahtar-kelime-kutusu.htm
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<!DOCTYPE html>
<html>
<head>
<title>Anahtar Kelime Kutusu</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- DIŞARIDAN YÜKLENEN KÜTÜPHANE DOSYALARI -->
<link rel="stylesheet" type="text/css" href="kutuphane/basic.css">
<script src="kutuphane/basic.js" type="text/javascript" charset="utf-8"></script>
<style>
body {
overflow: hidden;
}
</style>
<script>
/*
ANAHTAR KELİME KUTUSU
- Koordinat sistemi, kelimeler için devre dışı bırakılmıştır.
- Her kelime, kendi alanını korur ve üst üste gelemezler.
position = "relative"
display = "inline-block"
- Bu örnekte, fonksiyonların çalışmalarını takip edebilmeniz için,
önemli işlem ve bilgiler, konsola yazdırılmıştır.
- Düzenlenen kelimeler, storage'a kaydedilir.
*/
// DEĞİŞKENLER
var APP_COLOR = "#8FBC8F"
var keywordId = 0
var keywordList = [
{ id: "1", name: "C" },
{ id: "2", name: "C++" },
{ id: "3", name: "Java" },
{ id: "4", name: "C#" },
{ id: "5", name: "Python" },
{ id: "6", name: "Swift" }
]
// Taşıyıcı kutu
var b1
// Kısaltılmış isimler
var boxOfKeywords
var txtNewKeyword
var lblbtnAddNewKeyword
// ÖZEL FONKSİYONLAR
// İlk çalışan fonksiyon.
var start = function() {
page.color = APP_COLOR + "30"
// NESNE: Taşıyıcı kutu.
b1 = cbox(20, 20, 340)
that.color = "white"
that.element.style.boxShadow = "2px 3px 6px rgba(0, 0, 0, 0.05)"
that.borderColor = "lightgray"
that.round = 13
// NESNE: Anahtar kelimeleri taşıyan kutu.
b1.boxOfKeywords = cbox(20, 20, 300, "auto")
that.round = 13
that.color = "whitesmoke"
that.element.style.padding = "10px"
// Nesnenin yüksekliği, içine doldurulan nesnelere göre otomatik olarak ayarlanıyor.
// Hiç nesne doldurulmadığında, 84px olsun.
that.element.style.minHeight = "84px"
that.onResize(refresh_b1)
boxOfKeywords = b1.boxOfKeywords
// NESNE: Yeni anahtar kelime ekleme alanı.
b1.c1 = cbox(0, 0, b1.width, 120)
that.bottom = 0
that.color = "transparent"
// NESNE: Yeni anahtar kelime metin kutusu.
b1.c1.txtNewKeyword = ctxt(20, 50, boxOfKeywords.width - 60)
that.title = "Yeni Kelime:"
that.minimal = 1
that.round = 13
that.color = "whitesmoke"
txtNewKeyword = b1.c1.txtNewKeyword
// NESNE: Yeni anahtar kelime ekleme butonu.
b1.c1.lblbtnAddNewKeyword = clbl(0, 0, 50, 50)
that.text = "+"
that.textAlign = "center"
that.fontSize = 35
that.color = APP_COLOR + "15"
that.border = 1
that.round = 25
that.borderColor = APP_COLOR
that.textColor = APP_COLOR
that.onClick(addNewKeyword)
that.aline(txtNewKeyword, "right", 10)
lblbtnAddNewKeyword = b1.c1.lblbtnAddNewKeyword
// Kaydedilmiş diziyi sıfırlamak için çalıştır:
// storage.save("app66-keywordList", keywordList)
loadSavedKeywords()
// Sayfa boyutu değiştiğinde, b1 kutusunu ortala.
page.onResize(function() {
b1.center()
})
}
var loadSavedKeywords = function() {
// Eğer daha önce kaydedilmiş anahtar kelimeler varsa, onları kullan.
keywordList = storage.load("app66-keywordList") || keywordList
print("loadSavedKeywords: ")
print(keywordList)
// Yüklenen, en son id değerini al.
if (keywordList.length == 0) {
keywordId = 0
} else {
keywordId = num(keywordList[keywordList.length - 1].id)
}
print("current keywordId: " + keywordId)
// Yüklenen anahtar kelimeleri ekle.
for (var i = 0; i < keywordList.length; i++) {
createKeywordInBox(keywordList[i].name, keywordList[i].id)
}
}
var addNewKeyword = function() {
if (txtNewKeyword.text.length > 0) {
var object = createKeywordInBox(txtNewKeyword.text)
keywordList.push({ id: object.id, name: txtNewKeyword.text })
storage.save("app66-keywordList", keywordList)
txtNewKeyword.text = ""
}
}
var refresh_b1 = function() {
b1.height = boxOfKeywords.height + 160
b1.center()
print("refresh height: " + b1.height)
}
// Alanın içinde, bir kelime nesnesi oluştur.
var createKeywordInBox = function(keywordText, id) {
// Parametre ile id gönderilmemiş ise, yenisi oluştur. (|| veya)
id = id || generateNewKeywordId()
boxOfKeywords["lbl" + id] = createKeyword(keywordText)
that.id = id
print("createKeywordInBox: id: " + id + ", text: " + keywordText)
return that
}
// Yeni bir id üret.
var generateNewKeywordId = function() {
keywordId++
print("generateNewKeywordId: " + keywordId)
return keywordId
}
var createKeyword = function(keywordText) {
// NESNE: Anahtar kelimenin yazısı
var lblKeyword = clbl(0, 0, "auto", "auto")
that.text = keywordText
that.spaceX = 10
that.spaceY = 3
that.element.style.margin = "3px"
that.element.style.marginBottom = "-4px"
that.element.style.boxShadow = "1px 1px 1px rgba(0, 0, 0, 0.1)"
that.color = "white"
that.textColor = "gray"
that.border = 0
that.round = 8
that.fontSize = 16
that.element.style.fontFamily = "opensans-bold"
that.onClick(removeKeyword)
// Koordinat sistemini devre dışı bırak:
that.element.style.position = "relative"
// Nesneler, satır dolana kadar; yan yana dizilir:
that.element.style.display = "inline-block"
print("createKeyword: text: " + keywordText)
makeBasicObject(lblKeyword)
return lblKeyword
}
// keyword nesnesini ve dizideki karşılığını sil.
var removeKeyword = function(self) {
var index = getKeywordIndexById(self.id)
if (index >= 0) {
print("removeKeyword: id: " + self.id + ", index: " + index)
keywordList.splice(index, 1)
storage.save("app66-keywordList", keywordList)
self.remove()
} else {
// kelime bulunamadı.
}
}
// keywordList dizisindeki, sıra numarasını verir.
var getKeywordIndexById = function(id) {
for (var i = 0; i < keywordList.length; i++) {
if (keywordList[i].id == id) {
print("getKeywordIndexById: " + i)
return i
}
}
// Kelime bulunamadı.
return -1
}
</script>
</head>
<body>
<!-- HTML içeriği -->
</body>
</html>