{ if (!o) onClose(); }} >
Library settings Drive PhotoPrism's library, indexer, importer and server log.
{#each ['library', 'index', 'import', 'logs'] as const as t (t)} {t} {/each} {#if settingsQuery.isPending}

Loading settings…

{:else if settingsQuery.isError}

Could not load settings.

{:else if draft}

Indexer defaults

Importer defaults

Stacks

Downloads

{/if}

Rebuilds the search index by walking the originals folder. Safe to run while users are connected.

Pulls files from the import folder into the library. With "move" enabled, files are deleted from the import folder after a successful import.

Most recent PhotoPrism errors and warnings. Auto-refreshes every 5 seconds.

{#if errorsQuery.isPending}

Loading…

{:else if errorsQuery.isError}

Could not load error log.

{:else if (errorsQuery.data ?? []).length === 0}

No errors logged.

{:else}
    {#each errorsQuery.data ?? [] as entry, i (i)}
  • {entry.Time} [{entry.Level}] {entry.Message}
  • {/each}
{/if}