[PR #1115] [MERGED] feat(web) add user setting page #8909

Closed
opened 2026-02-05 13:55:21 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/1115
Author: @alextran1502
Created: 12/17/2022
Status: Merged
Merged: 12/18/2022
Merged by: @alextran1502

Base: mainHead: feat/add-user-setting-page


📝 Commits (9)

📊 Changes

17 files changed (+190 additions, -70 deletions)

View changed files

📝 web/src/app.d.ts (+1 -0)
📝 web/src/lib/components/shared-components/base-modal.svelte (+1 -1)
📝 web/src/lib/components/shared-components/context-menu/context-menu.svelte (+1 -1)
📝 web/src/lib/components/shared-components/full-screen-modal.svelte (+1 -1)
web/src/lib/components/shared-components/navigation-bar/account-info-panel.svelte (+79 -0)
📝 web/src/lib/components/shared-components/navigation-bar/navigation-bar.svelte (+14 -59)
web/src/lib/components/user-settings-page/user-settings-list.svelte (+27 -0)
📝 web/src/lib/constants.ts (+1 -1)
📝 web/src/lib/utils/click-outside.ts (+1 -1)
📝 web/src/routes/admin/+layout.svelte (+2 -2)
📝 web/src/routes/admin/system-settings/+page.server.ts (+0 -0)
📝 web/src/routes/admin/system-settings/+page.svelte (+1 -1)
📝 web/src/routes/albums/+page.svelte (+1 -1)
📝 web/src/routes/photos/+page.svelte (+1 -1)
📝 web/src/routes/sharing/+page.svelte (+1 -1)
web/src/routes/user-settings/+page.server.ts (+18 -0)
web/src/routes/user-settings/+page.svelte (+40 -0)

📄 Description

  • refactoring
  • refactor
  • fix naming
  • Added animation
  • add user setting page
  • Add skeleton for user setting page

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/immich-app/immich/pull/1115 **Author:** [@alextran1502](https://github.com/alextran1502) **Created:** 12/17/2022 **Status:** ✅ Merged **Merged:** 12/18/2022 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `feat/add-user-setting-page` --- ### 📝 Commits (9) - [`b1ff9b8`](https://github.com/immich-app/immich/commit/b1ff9b8fe2fa536394e5651b80aafe113bd6d8d1) refactoring - [`9679c82`](https://github.com/immich-app/immich/commit/9679c82fedf43fc3be888195c4c5fd33e70f32b0) refactor - [`b4400d8`](https://github.com/immich-app/immich/commit/b4400d8493a054a82a352b9ec84b5c36633d82a2) fix naming - [`4e5a26f`](https://github.com/immich-app/immich/commit/4e5a26f6cd64a53d0eac04b18735e98deaaa0639) Added animation - [`b061d96`](https://github.com/immich-app/immich/commit/b061d96f048b9d62655c04876b59195c8dc57d6b) add user setting page - [`4ee3e6f`](https://github.com/immich-app/immich/commit/4ee3e6f336cf8fdc6393b3dc65e1a6d39b6c232f) Add skeleton for user setting page - [`d102981`](https://github.com/immich-app/immich/commit/d102981692b4ec7443639bb46e39931e7c12a7d4) styling - [`ae1c5bc`](https://github.com/immich-app/immich/commit/ae1c5bcb18a808cd909a23cdff06c74a58d447b4) styling - [`6b802df`](https://github.com/immich-app/immich/commit/6b802df9cf8851c32d735672f465af5c30bb9978) Spelling ### 📊 Changes **17 files changed** (+190 additions, -70 deletions) <details> <summary>View changed files</summary> 📝 `web/src/app.d.ts` (+1 -0) 📝 `web/src/lib/components/shared-components/base-modal.svelte` (+1 -1) 📝 `web/src/lib/components/shared-components/context-menu/context-menu.svelte` (+1 -1) 📝 `web/src/lib/components/shared-components/full-screen-modal.svelte` (+1 -1) ➕ `web/src/lib/components/shared-components/navigation-bar/account-info-panel.svelte` (+79 -0) 📝 `web/src/lib/components/shared-components/navigation-bar/navigation-bar.svelte` (+14 -59) ➕ `web/src/lib/components/user-settings-page/user-settings-list.svelte` (+27 -0) 📝 `web/src/lib/constants.ts` (+1 -1) 📝 `web/src/lib/utils/click-outside.ts` (+1 -1) 📝 `web/src/routes/admin/+layout.svelte` (+2 -2) 📝 `web/src/routes/admin/system-settings/+page.server.ts` (+0 -0) 📝 `web/src/routes/admin/system-settings/+page.svelte` (+1 -1) 📝 `web/src/routes/albums/+page.svelte` (+1 -1) 📝 `web/src/routes/photos/+page.svelte` (+1 -1) 📝 `web/src/routes/sharing/+page.svelte` (+1 -1) ➕ `web/src/routes/user-settings/+page.server.ts` (+18 -0) ➕ `web/src/routes/user-settings/+page.svelte` (+40 -0) </details> ### 📄 Description - refactoring - refactor - fix naming - Added animation - add user setting page - Add skeleton for user setting page --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 13:55:21 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#8909