Skip to content

Commit

Permalink
Merge branch 'Murena-SAS-dev/default-timeline'
Browse files Browse the repository at this point in the history
  • Loading branch information
pulsejet committed Sep 29, 2023
2 parents 2bb0f30 + 630a435 commit d773f36
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/Controller/OtherController.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function getUserConfig(): Http\Response
'preview_generator_enabled' => Util::previewGeneratorIsEnabled(),

// general settings
'timeline_path' => $getAppConfig('timelinePath', 'EMPTY'),
'timeline_path' => $getAppConfig('timelinePath', Util::getSystemConfig('memories.timeline.default_path')),
'enable_top_memories' => 'true' === $getAppConfig('enableTopMemories', 'true'),

// viewer settings
Expand Down
4 changes: 4 additions & 0 deletions lib/SystemConfigDefault.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
// Places database type identifier
'memories.gis_type' => -1,

// Default timeline path for all users
// If set to '_empty_', the user is prompted to select a path on first open (default)
'memories.timeline.default_path' => '_empty_',

// Default viewer high resolution image loading condition
// Valid values: 'always' | 'zoom' | 'never'
'memories.viewer.high_res_cond_default' => 'zoom',
Expand Down
3 changes: 2 additions & 1 deletion lib/Util.php
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,8 @@ public static function placesGISType(): int
public static function getTimelinePaths(string $uid): array
{
$config = \OC::$server->get(IConfig::class);
$paths = $config->getUserValue($uid, Application::APPNAME, 'timelinePath', null) ?? 'Photos/';
$paths = $config->getUserValue($uid, Application::APPNAME, 'timelinePath', null)
?? self::getSystemConfig('memories.timeline.default_path');

return array_map(static fn ($p) => self::sanitizePath(trim($p)), explode(';', $paths));
}
Expand Down
8 changes: 6 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<NcContent
app-name="memories"
v-else
v-else-if="!isConfigUnknown"
:class="{
'remove-gap': removeOuterGap,
'has-nav': showNavigation,
Expand Down Expand Up @@ -187,7 +187,11 @@ export default defineComponent({
},
isFirstStart(): boolean {
return this.config.timeline_path === 'EMPTY' && !this.routeIsPublic && !this.$route.query.noinit;
return this.config.timeline_path === '_empty_' && !this.routeIsPublic && !this.$route.query.noinit;
},
isConfigUnknown(): boolean {
return this.config.timeline_path === '_unknown_';
},
showAlbums(): boolean {
Expand Down
2 changes: 1 addition & 1 deletion src/services/static-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class StaticConfig {
preview_generator_enabled: false,

// general settings
timeline_path: '',
timeline_path: '_unknown_',
enable_top_memories: true,

// viewer settings
Expand Down

0 comments on commit d773f36

Please sign in to comment.