[PR #2144] [MERGED] feat(server/web): jobs clear button + queue status #9397

Closed
opened 2026-02-05 14:04:00 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/2144
Author: @michelheusschen
Created: 4/1/2023
Status: Merged
Merged: 4/1/2023
Merged by: @alextran1502

Base: mainHead: feat/web-server-jobs-clear


📝 Commits (5)

  • 281f7c1 feat(server/web): jobs clear button + queue status
  • ca298e6 adjust design and colors
  • bbb0b95 Adjust some styling
  • 4320304 show status next to buttons instead of on top
  • 1a5f725 Update rounded corner for badge

📊 Changes

32 files changed (+707 additions, -227 deletions)

View changed files

📝 mobile/openapi/.openapi-generator/FILES (+6 -0)
📝 mobile/openapi/README.md (+2 -0)
📝 mobile/openapi/doc/AllJobStatusResponseDto.md (+8 -8)
📝 mobile/openapi/doc/JobApi.md (+5 -4)
mobile/openapi/doc/JobStatusDto.md (+16 -0)
mobile/openapi/doc/QueueStatusDto.md (+16 -0)
📝 mobile/openapi/lib/api.dart (+2 -0)
📝 mobile/openapi/lib/api/job_api.dart (+9 -1)
📝 mobile/openapi/lib/api_client.dart (+4 -0)
📝 mobile/openapi/lib/model/all_job_status_response_dto.dart (+16 -16)
mobile/openapi/lib/model/job_status_dto.dart (+119 -0)
mobile/openapi/lib/model/queue_status_dto.dart (+119 -0)
📝 mobile/openapi/test/all_job_status_response_dto_test.dart (+8 -8)
📝 mobile/openapi/test/job_api_test.dart (+1 -1)
mobile/openapi/test/job_status_dto_test.dart (+32 -0)
mobile/openapi/test/queue_status_dto_test.dart (+32 -0)
📝 server/apps/immich/src/controllers/job.controller.ts (+4 -3)
📝 server/immich-openapi-specs.json (+46 -9)
📝 server/libs/domain/src/job/job.repository.ts (+6 -1)
📝 server/libs/domain/src/job/job.service.spec.ts (+28 -65)

...and 12 more files

📄 Description

Server:

  • return job status after executing command
  • include queue status in job response

Web:

  • add clear button to job tile
  • add delayed jobs count
  • adjusted styling of badge
  • adjusted button icon size
  • created component for job tile button
  • update status with data from server after sending command

light_paused_all_tags_v2
dark_paused_v2


🔄 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/2144 **Author:** [@michelheusschen](https://github.com/michelheusschen) **Created:** 4/1/2023 **Status:** ✅ Merged **Merged:** 4/1/2023 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `feat/web-server-jobs-clear` --- ### 📝 Commits (5) - [`281f7c1`](https://github.com/immich-app/immich/commit/281f7c1a7092bb1cdf2ce0fa3a70adae266159a8) feat(server/web): jobs clear button + queue status - [`ca298e6`](https://github.com/immich-app/immich/commit/ca298e6f5593f96401d034f22645d59a73b94d8b) adjust design and colors - [`bbb0b95`](https://github.com/immich-app/immich/commit/bbb0b951225db148ca420c3cd4aa87a7f28db5c7) Adjust some styling - [`4320304`](https://github.com/immich-app/immich/commit/4320304355b980b7a8e8c3829049760d7295c40d) show status next to buttons instead of on top - [`1a5f725`](https://github.com/immich-app/immich/commit/1a5f725a42d6241fc67991b1a969526f7ffd5276) Update rounded corner for badge ### 📊 Changes **32 files changed** (+707 additions, -227 deletions) <details> <summary>View changed files</summary> 📝 `mobile/openapi/.openapi-generator/FILES` (+6 -0) 📝 `mobile/openapi/README.md` (+2 -0) 📝 `mobile/openapi/doc/AllJobStatusResponseDto.md` (+8 -8) 📝 `mobile/openapi/doc/JobApi.md` (+5 -4) ➕ `mobile/openapi/doc/JobStatusDto.md` (+16 -0) ➕ `mobile/openapi/doc/QueueStatusDto.md` (+16 -0) 📝 `mobile/openapi/lib/api.dart` (+2 -0) 📝 `mobile/openapi/lib/api/job_api.dart` (+9 -1) 📝 `mobile/openapi/lib/api_client.dart` (+4 -0) 📝 `mobile/openapi/lib/model/all_job_status_response_dto.dart` (+16 -16) ➕ `mobile/openapi/lib/model/job_status_dto.dart` (+119 -0) ➕ `mobile/openapi/lib/model/queue_status_dto.dart` (+119 -0) 📝 `mobile/openapi/test/all_job_status_response_dto_test.dart` (+8 -8) 📝 `mobile/openapi/test/job_api_test.dart` (+1 -1) ➕ `mobile/openapi/test/job_status_dto_test.dart` (+32 -0) ➕ `mobile/openapi/test/queue_status_dto_test.dart` (+32 -0) 📝 `server/apps/immich/src/controllers/job.controller.ts` (+4 -3) 📝 `server/immich-openapi-specs.json` (+46 -9) 📝 `server/libs/domain/src/job/job.repository.ts` (+6 -1) 📝 `server/libs/domain/src/job/job.service.spec.ts` (+28 -65) _...and 12 more files_ </details> ### 📄 Description Server: - return job status after executing command - include queue status in job response Web: - add clear button to job tile - add delayed jobs count - adjusted styling of badge - adjusted button icon size - created component for job tile button - update status with data from server after sending command ![light_paused_all_tags_v2](https://user-images.githubusercontent.com/59014050/229289495-707f8dc9-da74-456f-adfe-f7a694d44f3e.png) ![dark_paused_v2](https://user-images.githubusercontent.com/59014050/229289493-9f6c98fc-1437-423e-ac5f-b535c058e09f.png) --- <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 14:04:00 +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#9397