Merge branch 'staging' into reminders

pull/1/head
yflory 4 years ago
commit e7d46d6486

@ -114,10 +114,6 @@ Messages.calendar_noNotification = "None";
}); });
}; };
var newEvent = function (data, cb) { var newEvent = function (data, cb) {
var start = data.start;
var end = data.end;
data.start = +new Date(start._date);
data.end = +new Date(end._date);
APP.module.execCommand('CREATE_EVENT', data, function (obj) { APP.module.execCommand('CREATE_EVENT', data, function (obj) {
if (obj && obj.error) { return void cb(obj.error); } if (obj && obj.error) { return void cb(obj.error); }
cb(null, obj); cb(null, obj);
@ -183,6 +179,14 @@ Messages.calendar_noNotification = "None";
var obj = data.content[uid]; var obj = data.content[uid];
obj.title = obj.title || ""; obj.title = obj.title || "";
obj.location = obj.location || ""; obj.location = obj.location || "";
if (obj.isAllDay && obj.startDay) { obj.start = +new Date(obj.startDay); }
if (obj.isAllDay && obj.endDay) {
var endDate = new Date(obj.endDay);
endDate.setHours(23);
endDate.setMinutes(59);
endDate.setSeconds(59);
obj.end = +endDate;
}
if (c.readOnly) { if (c.readOnly) {
obj.isReadOnly = true; obj.isReadOnly = true;
} }
@ -695,16 +699,19 @@ Messages.calendar_noNotification = "None";
// a non technical value // a non technical value
var reminders = APP.notificationsEntries; var reminders = APP.notificationsEntries;
var startDate = event.start._date;
var endDate = event.end._date;
var schedule = { var schedule = {
id: Util.uid(), id: Util.uid(),
calendarId: event.calendarId, calendarId: event.calendarId,
title: Util.fixHTML(event.title), title: Util.fixHTML(event.title),
category: "time", category: "time",
location: Util.fixHTML(event.location), location: Util.fixHTML(event.location),
start: event.start, start: +startDate,
isAllDay: event.isAllDay, isAllDay: event.isAllDay,
end: event.end, end: +endDate,
reminders: reminders reminders: reminders,
}; };
newEvent(schedule, function (err) { newEvent(schedule, function (err) {

@ -690,8 +690,20 @@ define([
var id = data.calendarId; var id = data.calendarId;
var c = ctx.calendars[id]; var c = ctx.calendars[id];
if (!c) { return void cb({error: "ENOENT"}); } if (!c) { return void cb({error: "ENOENT"}); }
var startDate = new Date(data.start);
var endDate = new Date(data.end);
if (data.isAllDay) {
data.startDay = startDate.getFullYear() + '-' + (startDate.getMonth()+1) + '-' + startDate.getDate();
data.endDay = endDate.getFullYear() + '-' + (endDate.getMonth()+1) + '-' + endDate.getDate();
} else {
delete ev.startDay;
delete ev.endDay;
}
c.proxy.content = c.proxy.content || {}; c.proxy.content = c.proxy.content || {};
c.proxy.content[data.id] = data; c.proxy.content[data.id] = data;
Realtime.whenRealtimeSyncs(c.lm.realtime, function () { Realtime.whenRealtimeSyncs(c.lm.realtime, function () {
addReminders(ctx, id, data); addReminders(ctx, id, data);
sendUpdate(ctx, c); sendUpdate(ctx, c);
@ -722,6 +734,15 @@ define([
ev[key] = changes[key]; ev[key] = changes[key];
}); });
var startDate = new Date(ev.start);
var endDate = new Date(ev.end);
if (ev.isAllDay) {
ev.startDay = startDate.getFullYear() + '-' + (startDate.getMonth()+1) + '-' + startDate.getDate();
ev.endDay = endDate.getFullYear() + '-' + (endDate.getMonth()+1) + '-' + endDate.getDate();
} else {
delete ev.startDay;
delete ev.endDay;
}
// Move to a different calendar? // Move to a different calendar?
if (changes.calendarId && newC) { if (changes.calendarId && newC) {

Loading…
Cancel
Save