summaryrefslogtreecommitdiff
path: root/js/app.ui.js
blob: 3b4be960d45cea7f4cdfbe283aa32f4c7ec280f8 (plain)
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
/*jslint devel: true*/
/*global $, TemplateManager */

/**
 * @class Ui
 */
function Ui() {
    'use strict';
}

(function () { // strict mode wrapper
    'use strict';
    Ui.prototype = {

        templateManager: null,

        /**
         * UI module initialisation
         */
        init: function UI_init(app) {
            console.log('Ui.init');
            this.app = app;
            this.templateManager = new TemplateManager();
            $(document).ready(this.domInit.bind(this));

            // init inner objects
            this.home.context = this;
            this.alarm.context = this;
            this.new_event.context = this;
        },

        /**
         * When DOM is ready, initialise it
         */
        domInit: function UI_domInit() {
            console.log("domInit()", this);

            this.templateManager.loadToCache(['home', 'alarm', 'new_event', 'event'], this.initPages.bind(this));

            // immediately load events for today
            //self.app.loadEvents(new Date());

        },

        /**
         * Append pages to body and initialise them
         */
        initPages: function UI_initPages() {
            console.log('initPages');
            var pages = [];

            pages.push(this.templateManager.get('home'));
            pages.push(this.templateManager.get('alarm'));
            pages.push(this.templateManager.get('new_event'));

            $('body').append(pages.join(''));

            this.home.init();
            this.alarm.init();
            this.new_event.init();

            console.log('changePage');
            $.mobile.changePage('#home', 'pop', false, true);
        },


        /**
         * Contains methods related to the #home page
         * @namespace
         */
        home: {
            init: function UI_home_init() {
                var app = this.context.app;

                $('#exit_btn').on('tap', app.exit.bind(app));

//                $('#date_search').bind("date-changed", this.loadEvents.bind(this));

                // buttons in the events list
                $('#events_list').on('tap', '.remove_event_btn', function () {
                    var eventId = $(this).parents('.event').data('eventid');
                    app.model.deleteEvent(eventId);
                });

                $('#newEventBtn').on('tap', function () {
					$('#des').val('');
                });

                this.loadEvents();
            },
            /**
             * Get start date value from the form (#demo-date-1 field)
             *
             * @returns {string}
             */
            getStartDate: function UI_home_getStartDate() {
				var startDate = $('#demo-date-1').attr('data-date');
				console.log('UI_home_getStartDate: ', startDate);
                return startDate;
            },
            /**
             * Get end date value from the form (#demo-date-2 field)
             *
             * @returns {string}
             */
            getEndDate: function UI_home_getEndDate() {
				var endDate = $('#demo-date-2').attr('data-date');
				console.log('UI_home_getEndDate: ', endDate);
                return endDate;
            },
            /**
             * Get the title from the form (#title field)
             *
             * @returns {string}
             */
            getTitle: function UI_home_getTitle() {
                return $('#title').val();
            },
            /**
             * Get the description from the form (#des field)
             *
             * @returns {string}
             */
            getDescription: function UI_home_getDescription() {
                return $('#des').val();
            },
            /**
             * Get the location from the form (#location field)
             *
             * @returns {string}
             */
            getLocation: function UI_home_getLocation() {
                return $('#location').val();
            },
            /**
             * Wrapper for app.loadEvents
             * @param {Object} e event
             * @param {Date} date selected date
             */
            loadEvents: function UI_home_loadEvents(e, date) {
//                date = $(':jqmData(role="datetimepicker")').data('datetimepicker').options.date;
                console.log('Ui.loadEvents', this);
                this.context.app.loadEvents(date);
            },

			/**
			 * Returns text for separating list items with events
			 * Skips repeated values
			 *
			 * @param {Object} event
			 * @returns {string}
			 */
			getSeparatorText: function UI_home_getSeparatorText(event) {
				var previous = '';

				// redefine itself
				this.getSeparatorText = function (event) {
					if (event === undefined) {
						previous = '';
						return undefined;
					}

					var startDate = event.startDate,
						str = this.formatDate(startDate);

					if (previous === str) {
						return ''; // skip it - already returned
					}
					previous = str; // store in the closure for future comparison

					return str;
				};

				return this.getSeparatorText(event);
			},

			formatDate: function UI_home_formatDate(date) {
				var monthNames = [
					"January", "February", "March", "April", "May", "June",
					"July", "August", "September", "October", "November", "December" ];

				this.formatDate = function UI_home_formatDate(date) {
					return date.getDate() + ". " + monthNames[date.getMonth()] + " " + date.getFullYear();
				};
				return this.formatDate(date);
			},

			/**
			 * Format hour
			 * @param {TZDate} date
			 * @returns {string}
			 */
			formatHour: function UI_home_formatHour(date) {
				return date.getHours() + ':' + this.pad(date.getMinutes());
			},

			/**
			 * Zero-pads a positive number to 2 digits
			 */
			pad: function UI_home_pad(number) {
				return number < 10 ? '0' + number : number;
			},

			/**
			 * Creates HTML representing the given array of alarms
			 *
			 * @param {Alarm[]} alarms
			 * @returns {string}
			 */
			getAlarmsHtml: function UI_home_getAlarmsHtml(alarms) {
				var alarm = '', j, len;

				len = alarms.length;

				if (len) {
					alarm += '<p class="ui-li-aside ui-li-desc"><img src="img/clock.png"/>';

					for (j = 0; j < len; j += 1) {
						alarm += alarms[j].before.length;
						alarm += ' ' + alarms[j].before.unit;
					}
					alarm += '</p>';
				}
				return alarm;
			},
            /**
             * Load the events into the #event_popup.
             *
             * Callback function for app.loadEvents.
             * @param {Array} events
             */
            onEventSearchSuccess: function UI_home_onEventSearchSuccess(events) {
                var i = 0, j = 0,
                    str = "",
                    event,
                    alarm = '',
                    dividerText = '',
                    templateParameters = {},
                    endDate = null;


                console.log('Ui.home.onEventSearchSuccess()', events);

                // content
                str = '';

                for (i = 0; i < events.length; i += 1) {
                    event = events[i];

                    dividerText = this.getSeparatorText(event);

                    if (dividerText) {
                        str += '<li data-role="list-divider">' + dividerText + '</li>';
                    }

                    alarm = this.getAlarmsHtml(event.alarms);

                    endDate = event.startDate.addDuration(event.duration);

                    console.log('[Event Loaded] Start Date:' + event.startDate);

                    templateParameters = {
                        uid: event.id.uid,
                        startDate: this.formatHour(event.startDate),
                        endDate: this.formatHour(endDate),
                        summary: event.summary || '[No title]',
                        location: event.location,
                        description: event.description,
                        alarm: alarm
                    };

                    str += this.context.templateManager.get('event', templateParameters);


                }
                this.getSeparatorText(); // clear the separator state

                $('#events_list ul').html(str);
                $('#events_list ul').listview();
                $('#events_list ul').data('listview').refresh();
                $('#events_list ul input.remove_event_btn').button();
            },

            /**
             * Error handler for event search
             */
            onEventSearchError: function UI_home_onEventSearchError() {
                console.error("event search error");
            }
        },

        /**
         * Contains methods related to the #alarm page
         * @namespace
         */
        alarm: {
            init: function UI_alarm_init() {
            },
            /**
             * Read alarm duration from the UI
             *
             * @returns {int} Alarm duration in minutes
             */
            getDuration: function UI_alarm_getDuration() {
                var radioValue = 0,
                    radiobutton = null;

                radiobutton = $('#new_alarm :jqmData(role=controlgroup) input:radio[checked]');

                radioValue = parseInt(radiobutton.val(), 10);

                switch (radioValue) {
                case 1: // no alarm
                    return 0;
                case 2: // 5 minutes before
                    return 5;
                case 3: // 30 minutes before
                    return 30;
                case 4: // 1 hour before
                    return 60;
                default:
                    console.warn('Unexpected value');
                    return 0;
                }
            }
        },

        /**
         * Contains methods related to the new event page
         * @namespace
         */
        new_event: {
            init: function UI_newEvent_init() {
                var app = this.context.app;

				$("#demo-date-1").bind("date-changed", function UI_newEvent_onDateChanged(e, newStartDate) {
					var startOptions = $("#demo-date-1").data('datetimepicker').options,
						endData = $("#demo-date-2").data('datetimepicker'),
						endOptions = typeof endData === 'object' ? endData.options : null,
						oldStartDate,
						diff,
						endDate;
					// get the old date
					oldStartDate = startOptions.oldDate;
					startOptions.oldDate = newStartDate;

					if (!oldStartDate) {
						console.warn('date-changed handler: old date empty');
						return;
					}

					// calculate time difference in minutes
					diff = (newStartDate.getTime() - oldStartDate.getTime()) / 1000 / 60;

					endDate = endOptions.date;

					// move the end date by 'diff'
					endDate.setMinutes(endDate.getMinutes() + diff);

					$("#demo-date-2").datetimepicker('value', endDate);
				});

				$('#new_event').on('pageshow', function UI_newEvent_onPageShow(event) {
					var options = $("#demo-date-1").data('datetimepicker').options,
						tmpDate;
					// get the start date
					tmpDate = new Date(options.date.getTime());

					// store it for future use
					options.oldDate = new Date(options.date.getTime());

					// add 1 hour
					tmpDate.setHours(tmpDate.getHours() + 1);

					if (typeof $("#demo-date-2").datetimepicker === 'function') {
						// set end date
						console.log('pageinit: set default end time' + tmpDate);
						$("#demo-date-2").datetimepicker('value', tmpDate);
					} else {
						console.log('pageinit: cant set end time');
					}
				});

                $('#switch-1').bind('changed', app.switchFullDay.bind(app));

                $('#add-event-btn').bind('tap', app.addEvent.bind(app));

                $('#add-alarm').bind('tap', app.switchAlarm.bind(app));
            }
        }
    };

}());