-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
407 lines (362 loc) · 11.7 KB
/
main.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
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
var count = 0; //작성한 일기 index 확인 용도
$(document).ready(function () {
//session으로 회원의 아이디 저장해놓음.
//값을 가져와서 사용한다. 창을 새로고침해도 값은 유지가됨.
var userID = sessionStorage.getItem('id');
$('#userID').text(userID);
//오늘 날짜('YYYY-MM')를 상단에 표시
var today = new Date();
var year = today.getFullYear();
var month = today.getMonth();
var date = today.getDate();
$('h1').text(year + '년 ' + (month + 1) + '월');
makeCalendar(year, month);
//1개월 단위로 날짜 변경. 단, 12월을 넘어가거나 1월에서 감소할때는 예외 처리.
$('#nextMonth').click(function () {
$('tbody').empty();
month = month + 1;
//12월을 넘어갈 경우
if (Number(month + 1) > 12) {
year = year + 1;
month = 0;
}
$('h1').text(year + '년 ' + Number(month + 1) + '월');
makeCalendar(year, month);
});
$('#prevMonth').click(function () {
$('tbody').empty();
month = month - 1;
//1월보다 값이 작아질 경우
if (month < 1) {
year = year - 1;
month = 11;
}
$('h1').text(year + '년 ' + Number(month + 1) + '월');
makeCalendar(year, month);
});
//일기 작성 버튼 클릭시 일기 작성 페이지(class=".diaryBox")가 나타남
$('#writePlan').click(function () {
var year = today.getFullYear();
var month = today.getMonth();
var date = today.getDate();
if ($('.diaryBox').css('display') == 'none') {
$('#date').text(year + '.' + (month + 1) + '.' + date);
$('.diaryBox').css('display', 'block');
} else {
$('.diaryBox').css('display', 'none');
}
});
//창을 닫는 xbutton, 현재 작성하고 있는 내용도 초기화.
$('#Xbutton').click(function () {
removeContents();
$('.diaryBox').css('display', 'none');
});
//w_가 붙은 id명과 class명은 작성된 일기를 확인하기위한 페이지 용도.
$('#w_Xbutton').click(function () {
removeContents();
$('.w_diaryBox').css('display', 'none');
window.location.reload();
});
//이모지 이모티콘 선택시 여러 이모티콘중 하나 선택이 가능
$('#emojiPicker').click(function () {
if ($('.pick').css('display') == 'none') {
$('.pick').css('display', 'block');
} else {
$('.pick').css('display', 'none');
}
});
$('.pick span').click(function () {
$('#feeling').val($(this).text());
$('.pick').css('display', 'none');
});
$('#wheatherPicker').click(function () {
if ($('.wheatherpick').css('display') == 'none') {
$('.wheatherpick').css('display', 'block');
} else {
$('.wheatherpick').css('display', 'none');
}
});
$('.wheatherpick span').click(function () {
$('#wheather').val($(this).text());
$('.wheatherpick').css('display', 'none');
});
//마찬가지로 w_가 붙은 id, class는 작성된 일기(class="w_diaryBox")에서 사용.
//내용은 거의 동일하며, id명과 class명이 다름.
$('#w_emojiPicker').click(function () {
if ($('.w_pick').css('display') == 'none') {
$('.w_pick').css('display', 'block');
} else {
$('.w_pick').css('display', 'none');
}
});
$('.w_pick span').click(function () {
$('#w_feeling').val($(this).text());
$('.w_pick').css('display', 'none');
});
$('#w_wheatherPicker').click(function () {
if ($('.w_wheatherpick').css('display') == 'none') {
$('.w_wheatherpick').css('display', 'block');
} else {
$('.w_wheatherpick').css('display', 'none');
}
});
$('.w_wheatherpick span').click(function () {
$('#w_wheather').val($(this).text());
$('.w_wheatherpick').css('display', 'none');
});
$('#completeButton').click(function () {
//작성완료 버튼을 누를시 서버로 정보 전달.
var today = $('#date').text();
var title = $('#title').val();
var wheather = $('#wheather').val();
var feeling = $('#feeling').val();
var textPlan = $('#textPlan').val();
if (title == '' || textPlan == '') {
alert('제목과 내용은 필수 입력입니다.');
} else {
$.post(
'php/SaveDiary.php',
{
userID: $('#userID').text(),
today: today,
title: title,
wheather: wheather,
feeling: feeling,
textPlan: textPlan,
},
function (data) {
removeContents();
alert('작성 완료되었습니다.');
window.location.reload();
}
);
}
});
//리스트 화면으로 전환
$('#listIcon').click(function () {
window.location.href = 'list.html';
});
//챌린지 화면으로 전환
$('#user').click(function () {
window.location.href = 'userPage.html';
});
//로그아웃 -> 첫번째 로그인화면으로 넘어가고, session값 삭제
$('#logout').click(function () {
sessionStorage.clear();
window.location.href = 'index.html';
});
//수정버튼-> 작성한 일기내용창에서 수정버튼을 클릭할 수 있음
$('#modifyDiary').click(function () {
var today = $('#w_date').text();
var title = $('#w_title').val();
var wheather = $('#w_wheather').val();
var feeling = $('#w_feeling').val();
var textPlan = $('#w_textPlan').val();
$.post(
'php/modifyDiary.php',
{
index: count,
userID: $('#userID').text(),
today: today,
title: title,
wheather: wheather,
feeling: feeling,
textPlan: textPlan,
},
function (data) {
alert('수정되었습니다.');
removeContents();
window.location.reload();
}
);
});
$('#removeDiary').click(function () {
var today = $('#w_date').text();
$.post(
'php/removeDiary.php',
{
index: count,
userID: $('#userID').text(),
today: today,
},
function (data) {
alert('삭제되었습니다.');
removeContents();
window.location.reload();
}
);
});
});
//달력작성
function makeCalendar(newYear, newMonth) {
var today = new Date();
var year = newYear;
var month = newMonth;
var date = today.getDate();
firstDay = new Date(year, month, 1).getDay(); //시작하는 날짜 요일. 0~6(월~금)
lastDate = new Date(year, month + 1, 0).getDate(); //말일
lastDay = new Date(year, month + 1, 0).getDay();
//1주차
for (var i = 0; i < firstDay; i++) {
$('tbody').append('<td></td>');
}
for (var i = 0; i < 7 - firstDay; i++) {
$('tbody').append('<td>' + (Number(i) + 1) + '</td>');
day = Number(i) + 1;
}
//2주차이상
day++;
while (day <= lastDate) {
$('tbody').append('<tr>');
for (var i = 0; i < 7 && day <= lastDate; i++) {
$('tbody').append('<td id = ' + day + '>' + day + '</td>');
day++;
}
}
//마지막 주 비우기
for (var i = lastDay; i < 6; i++) {
$('tbody').append('<td></td>');
}
todayColor();
$.post(
'php/SearchDiary.php',
{
userID: $('#userID').text(),
year: year,
month: month + 1,
},
function (data) {
var day_array = JSON.parse(data);
console.log(day_array);
for (var key in day_array) {
for (var i = 0; i < $('tbody').find('td').length; i++) {
if ($('tbody').find('td').eq(i).text() == key) {
$('tbody')
.find('td')
.eq(i)
.append(
"<button class='diaryBtn' type='button'>" +
day_array[key] +
'개의 일기' +
'</button>'
);
}
}
}
$('.diaryBtn').click(function () {
// var count = 0;
console.log(count);
var diary = [];
var text = $(this).parent().html();
var afterText = text.split('<');
var num = Number(afterText[0]);
var today = year + '.' + (Number(month) + 1) + '.' + num;
$('#w_date').text(today);
$('.w_diaryBox').css('display', 'block');
$.post(
'php/ReadDiary.php',
{
userID: $('#userID').text(),
today: today,
},
function (data) {
diary = JSON.parse(data);
if (diary.length > 1) {
$('#prevDiary').css('display', 'none');
$('#nextDiary').css('display', 'inline');
} else {
$('#prevDiary').css('display', 'none');
$('#nextDiary').css('display', 'none');
}
$('#w_title').val(diary[0]['title']);
$('#w_wheather').val(diary[0]['wheather']);
$('#w_feeling').val(diary[0]['feeling']);
$('#w_textPlan').text(diary[0]['textPlan']);
$('#nextDiary').click(function () {
diary = JSON.parse(data);
console.log(diary);
count++;
console.log(count);
$('#w_title').val(diary[count]['title']);
$('#w_wheather').val(diary[count]['wheather']);
$('#w_feeling').val(diary[count]['feeling']);
$('#w_textPlan').text(diary[count]['textPlan']);
$('#prevDiary').css('display', 'inline');
if (count == diary.length - 1) {
$('#nextDiary').css('display', 'none');
}
$('#w_Xbutton').click(function () {
removeContents();
$('.w_diaryBox').css('display', 'none');
count = 0;
});
});
$('#prevDiary').click(function () {
count--;
console.log(count);
if (count == 0) {
$('#prevDiary').css('display', 'none');
$('#nextDiary').css('display', 'inline');
}
if (count > 0 && count < diary.length) {
$('#nextDiary').css('display', 'inline');
}
$('#w_title').val(diary[count]['title']);
$('#w_wheather').val(diary[count]['wheather']);
$('#w_feeling').val(diary[count]['feeling']);
$('#w_textPlan').text(diary[count]['textPlan']);
$('#w_Xbutton').click(function () {
removeContents();
$('.w_diaryBox').css('display', 'none');
count = 0;
});
});
}
);
});
}
);
//일기를 작성하고 싶은 날짜를 더블클릭하면 해당 날짜의 일기작성 페이지가 나타남
$('td').dblclick(function () {
if ($(this).text() != '') {
var calendar = $('h1').text();
var pickYear = calendar.substr(0, 4).replace(/[^0-9]/g, '');
var pickMonth = calendar
.substr(4, calendar.length)
.replace(/[^0-9]/g, '');
var pickDate = $(this).html();
var afterText = pickDate.split('<');
var num = Number(afterText[0]);
$('#date').text(pickYear + '.' + pickMonth + '.' + num);
$('.diaryBox').css('display', 'block');
}
});
}
//오늘 날짜에 색표시
function todayColor() {
var today = new Date();
var nowYear = today.getFullYear();
var nowMonth = today.getMonth() + 1;
var nowDate = today.getDate();
//캘린더 위에 적힌 날짜 값 가져오기
var calendar = $('h1').text();
var calendarYear = calendar.substr(0, 4).replace(/[^0-9]/g, '');
var calendarMonth = calendar
.substr(4, calendar.length)
.replace(/[^0-9]/g, '');
for (var i = 0; i < $('tbody').find('td').length; i++) {
if (
$('tbody').find('td').eq(i).text() == nowDate &&
nowMonth == calendarMonth &&
nowYear == calendarYear
) {
$('tbody').find('td').eq(i).css('background-color', 'powderblue');
}
}
}
function removeContents() {
$('#title').val('');
$('#wheather').val('');
$('#feeling').val('');
$('#textPlan').val('');
}