Compare commits

...

1 commit

Author SHA1 Message Date
JodliDev a632adcef6 Add dropdown options for each calendar
(cherry picked from commit 4100dadd69)
2021-08-27 11:42:45 +02:00
2 changed files with 22 additions and 15 deletions

View file

@ -3254,20 +3254,28 @@ $("#rcmfd_new_category").keypress(function(event) {
// add "Save to calendar" button into attachment menu // add "Save to calendar" button into attachment menu
if ($has_events) { if ($has_events) {
$calendars = $this->driver->list_calendars(calendar_driver::FILTER_PERSONAL | calendar_driver::FILTER_WRITEABLE);
foreach($calendars as $calendar) {
//TODO inline style tags are a bit ugly, but I cant think of a better way of coloring the icon
$style = html::tag('style', ['type' => 'text/css'], ".icon.cal-$calendar[id]::before {color: #$calendar[color]}");
$this->add_button([ $this->add_button([
'id' => 'attachmentsavecal', 'id' => 'attachmentsavecal-' .$calendar['id'],
'name' => 'attachmentsavecal', 'name' => 'attachmentsavecal',
'type' => 'link', 'type' => 'link',
'wrapper' => 'li', 'wrapper' => 'li',
'command' => 'attachment-save-calendar', 'command' => 'attachment-save-calendar',
'prop' => $calendar['id'],
'class' => 'icon calendarlink disabled', 'class' => 'icon calendarlink disabled',
'classact' => 'icon calendarlink active', 'classact' => "icon calendarlink active cal-$calendar[id]",
'innerclass' => 'icon calendar', 'innerclass' => 'icon calendar',
'label' => 'calendar.savetocalendar', //maybe change the calendar.savetocalendar translation so a calendar can be added and use a label instead?
'content' => $this->gettext('calendar.savetocalendar') ." ($calendar[name]) $style"
], ],
'attachmentmenu' 'attachmentmenu'
); );
} }
}
return $p; return $p;
} }

View file

@ -72,13 +72,12 @@ function rcube_calendar(settings)
// handler for attachment-save-calendar commands // handler for attachment-save-calendar commands
this.save_to_calendar = function(p) this.save_to_calendar = function(p)
{ {
// TODO: show dialog to select the calendar for importing
if (this.selected_attachment && window.rcube_libcalendaring) { if (this.selected_attachment && window.rcube_libcalendaring) {
rcmail.http_post('calendar/mailimportattach', { rcmail.http_post('calendar/mailimportattach', {
_uid: rcmail.env.uid, _uid: rcmail.env.uid,
_mbox: rcmail.env.mailbox, _mbox: rcmail.env.mailbox,
_part: this.selected_attachment _part: this.selected_attachment,
// _calendar: $('#calendar-attachment-saveto').val(), _calendar: p
}, rcmail.set_busy(true, 'itip.savingdata')); }, rcmail.set_busy(true, 'itip.savingdata'));
} }
}; };
@ -93,7 +92,7 @@ window.rcmail && rcmail.addEventListener('init', function(evt) {
// register create-from-mail command to message_commands array // register create-from-mail command to message_commands array
if (rcmail.env.task == 'mail') { if (rcmail.env.task == 'mail') {
rcmail.register_command('calendar-create-from-mail', function() { cal.create_from_mail(); }); rcmail.register_command('calendar-create-from-mail', function() { cal.create_from_mail(); });
rcmail.register_command('attachment-save-calendar', function() { cal.save_to_calendar(); }); rcmail.register_command('attachment-save-calendar', function(p) { cal.save_to_calendar(p); });
if (rcmail.env.action != 'show') { if (rcmail.env.action != 'show') {
rcmail.env.message_commands.push('calendar-create-from-mail'); rcmail.env.message_commands.push('calendar-create-from-mail');