-
Notifications
You must be signed in to change notification settings - Fork 241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setting for default calendar when creating new events #4310
Changes from all commits
bf3cb56
34c5abf
5549dde
0fbf20a
bec6f73
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,8 +76,9 @@ | |
width: 50%; | ||
} | ||
} | ||
|
||
&--timezone { | ||
|
||
&--timezone, | ||
&--default-calendar { | ||
width: 100%; | ||
|
||
.multiselect { | ||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -89,6 +89,8 @@ public function setConfig(string $key, | |||||||||||||||||||||||||||||||||||||||||||
return $this->setSlotDuration($value); | ||||||||||||||||||||||||||||||||||||||||||||
case 'defaultReminder': | ||||||||||||||||||||||||||||||||||||||||||||
return $this->setDefaultReminder($value); | ||||||||||||||||||||||||||||||||||||||||||||
case 'defaultCalendarId': | ||||||||||||||||||||||||||||||||||||||||||||
return $this->setDefaultCalendarId($value); | ||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+92
to
+93
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Should be moved to the DAV app. |
||||||||||||||||||||||||||||||||||||||||||||
case 'showTasks': | ||||||||||||||||||||||||||||||||||||||||||||
return $this->setShowTasks($value); | ||||||||||||||||||||||||||||||||||||||||||||
default: | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -339,4 +341,25 @@ private function setDefaultReminder(string $value):JSONResponse { | |||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
return new JSONResponse(); | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||||
* sets defaultCalendarId for user | ||||||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||||||
* @param string $value User-selected option for default calendar when creating new events | ||||||||||||||||||||||||||||||||||||||||||||
* @return JSONResponse | ||||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||||
private function setDefaultCalendarId(string $value):JSONResponse { | ||||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||||
$this->config->setUserValue( | ||||||||||||||||||||||||||||||||||||||||||||
$this->userId, | ||||||||||||||||||||||||||||||||||||||||||||
$this->appName, | ||||||||||||||||||||||||||||||||||||||||||||
'defaultCalendarId', | ||||||||||||||||||||||||||||||||||||||||||||
st3iny marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||
$value | ||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||
} catch (\Exception $e) { | ||||||||||||||||||||||||||||||||||||||||||||
return new JSONResponse([], Http::STATUS_INTERNAL_SERVER_ERROR); | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
return new JSONResponse(); | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+344
to
+364
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Should be moved to the DAV app. |
||||||||||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -81,6 +81,7 @@ public function index():TemplateResponse { | |||||
$defaultTimezone = $this->config->getAppValue($this->appName, 'timezone', 'automatic'); | ||||||
$defaultSlotDuration = $this->config->getAppValue($this->appName, 'slotDuration', '00:30:00'); | ||||||
$defaultDefaultReminder = $this->config->getAppValue($this->appName, 'defaultReminder', 'none'); | ||||||
$defaultCalendarIdGlobal = $this->config->getAppValue($this->appName, 'defaultCalendarId', ''); | ||||||
$defaultShowTasks = $this->config->getAppValue($this->appName, 'showTasks', 'yes'); | ||||||
|
||||||
$appVersion = $this->config->getAppValue($this->appName, 'installed_version', null); | ||||||
|
@@ -93,6 +94,7 @@ public function index():TemplateResponse { | |||||
$timezone = $this->config->getUserValue($this->userId, $this->appName, 'timezone', $defaultTimezone); | ||||||
$slotDuration = $this->config->getUserValue($this->userId, $this->appName, 'slotDuration', $defaultSlotDuration); | ||||||
$defaultReminder = $this->config->getUserValue($this->userId, $this->appName, 'defaultReminder', $defaultDefaultReminder); | ||||||
$defaultCalendarIdUser = $this->config->getUserValue($this->userId, $this->appName, 'defaultCalendarId', $defaultCalendarId); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This also needs a reasonable default ($defaultCalendarId) is undefined?! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of using the calendar id, use the calendar uri, then default to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The personal calendar always gets recreated at some point if there's nothing else |
||||||
$showTasks = $this->config->getUserValue($this->userId, $this->appName, 'showTasks', $defaultShowTasks) === 'yes'; | ||||||
$hideEventExport = $this->config->getAppValue($this->appName, 'hideEventExport', 'no') === 'yes'; | ||||||
$disableAppointments = $this->config->getAppValue($this->appName, 'disableAppointments', 'no') === 'yes'; | ||||||
|
@@ -117,6 +119,7 @@ public function index():TemplateResponse { | |||||
$this->initialStateService->provideInitialState('timezone', $timezone); | ||||||
$this->initialStateService->provideInitialState('slot_duration', $slotDuration); | ||||||
$this->initialStateService->provideInitialState('default_reminder', $defaultReminder); | ||||||
$this->initialStateService->provideInitialState($this->appName, 'default_calendar_id', $defaultCalendarIdUser); | ||||||
$this->initialStateService->provideInitialState('show_tasks', $showTasks); | ||||||
$this->initialStateService->provideInitialState('tasks_enabled', $tasksEnabled); | ||||||
$this->initialStateService->provideInitialState('hide_event_export', $hideEventExport); | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to provide this on a public view?