From 0add5aab0ecb69911a9312f6b1691e37163d9378 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 14 Feb 2025 09:39:37 -0800 Subject: [PATCH] Styling, celery url --- src-ui/messages.xlf | 42 ++-- .../admin/settings/settings.component.spec.ts | 2 + .../system-status-dialog.component.html | 195 +++++++++++------- .../system-status-dialog.component.scss | 3 + .../system-status-dialog.component.spec.ts | 2 + src-ui/src/app/data/system-status.ts | 2 + src-ui/src/theme.scss | 22 +- src/documents/views.py | 13 +- 8 files changed, 179 insertions(+), 102 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 6b2b8ec34..29b0236f0 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -4099,6 +4099,18 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 111 + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 165 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 189 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 213 + src/app/components/common/toast/toast.component.html 30 @@ -5548,7 +5560,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html - 188 + 231 src/app/components/manage/mail/mail.component.html @@ -5943,98 +5955,98 @@ Migration Status src/app/components/common/system-status-dialog/system-status-dialog.component.html - 56 + 65 Up to date src/app/components/common/system-status-dialog/system-status-dialog.component.html - 59 + 69 Latest Migration src/app/components/common/system-status-dialog/system-status-dialog.component.html - 64 + 74 Pending Migrations src/app/components/common/system-status-dialog/system-status-dialog.component.html - 66 + 76 Tasks Queue src/app/components/common/system-status-dialog/system-status-dialog.component.html - 83 + 94 Redis Status src/app/components/common/system-status-dialog/system-status-dialog.component.html - 87 + 98 Celery Status src/app/components/common/system-status-dialog/system-status-dialog.component.html - 96 + 116 Health src/app/components/common/system-status-dialog/system-status-dialog.component.html - 113 + 142 Search Index src/app/components/common/system-status-dialog/system-status-dialog.component.html - 117 + 146 Last Updated src/app/components/common/system-status-dialog/system-status-dialog.component.html - 131 + 163 Classifier src/app/components/common/system-status-dialog/system-status-dialog.component.html - 133 + 168 Last Trained src/app/components/common/system-status-dialog/system-status-dialog.component.html - 151 + 187 Sanity Checker src/app/components/common/system-status-dialog/system-status-dialog.component.html - 153 + 192 Last Run src/app/components/common/system-status-dialog/system-status-dialog.component.html - 171 + 211 diff --git a/src-ui/src/app/components/admin/settings/settings.component.spec.ts b/src-ui/src/app/components/admin/settings/settings.component.spec.ts index 3ab7f250b..7d43d08f9 100644 --- a/src-ui/src/app/components/admin/settings/settings.component.spec.ts +++ b/src-ui/src/app/components/admin/settings/settings.component.spec.ts @@ -303,6 +303,8 @@ describe('SettingsComponent', () => { redis_error: 'Error 61 connecting to localhost:6379. Connection refused.', celery_status: SystemStatusItemStatus.ERROR, + celery_url: 'celery@localhost', + celery_error: 'Error connecting to celery@localhost', index_status: SystemStatusItemStatus.OK, index_last_modified: new Date().toISOString(), index_error: null, diff --git a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html index c7e3e729c..c87f80f43 100644 --- a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html +++ b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -45,33 +45,44 @@
Type
{{status.database.type}}
Status
-
- {{status.database.status}} - @if (status.database.status === 'OK') { - - } @else { - - } -
-
Migration Status
-
- @if (status.database.migration_status.unapplied_migrations.length === 0) { - Up to date - } @else { - {{status.database.migration_status.unapplied_migrations.length}} Pending - } - -
Latest Migration:
{{status.database.migration_status.latest_migration}} - @if (status.database.migration_status.unapplied_migrations.length > 0) { -
Pending Migrations:
-
    - @for (migration of status.database.migration_status.unapplied_migrations; track migration) { -
  • {{migration}}
  • - } -
+
+
+ {{status.database.status}} + @if (status.database.status === 'OK') { + + } @else { + + } +
+ + @if (status.database.status === 'OK') { + {{status.database.url}} + } @else { + {{status.database.url}}: {{status.database.error}} }
+
Migration Status
+
+
+ @if (status.database.migration_status.unapplied_migrations.length === 0) { + Up to date + } @else { + {{status.database.migration_status.unapplied_migrations.length}} Pending + } + +
Latest Migration:
{{status.database.migration_status.latest_migration}} + @if (status.database.migration_status.unapplied_migrations.length > 0) { +
Pending Migrations:
+
    + @for (migration of status.database.migration_status.unapplied_migrations; track migration) { +
  • {{migration}}
  • + } +
+ } +
+
+
@@ -85,22 +96,40 @@
Redis Status
-
- {{status.tasks.redis_status}} - @if (status.tasks.redis_status === 'OK') { - - } @else { - - } +
+
+ {{status.tasks.redis_status}} + @if (status.tasks.redis_status === 'OK') { + + } @else { + + } +
+ + @if (status.tasks.redis_status === 'OK') { + {{status.tasks.redis_url}} + } @else { + {{status.tasks.redis_url}}: {{status.tasks.redis_error}} + } +
Celery Status
-
- {{status.tasks.celery_status}} - @if (status.tasks.celery_status === 'OK') { - - } @else { - - } +
+
+ {{status.tasks.celery_status}} + @if (status.tasks.celery_status === 'OK') { + + } @else { + + } +
+ + @if (status.tasks.celery_status === 'OK') { + {{status.tasks.celery_url}} + } @else { + {{status.tasks.celery_error}} + } +
@@ -115,60 +144,74 @@
Search Index
-
- {{status.tasks.index_status}} - @if (status.tasks.index_status === 'OK') { - @if (isStale(status.tasks.index_last_modified)) { - +
+
+ {{status.tasks.index_status}} + @if (status.tasks.index_status === 'OK') { + @if (isStale(status.tasks.index_last_modified)) { + + } @else { + + } } @else { - + } - } @else { - - } +
-
Last Updated:
{{status.tasks.index_last_modified | customDate:'medium'}} + @if (status.tasks.index_status === 'OK') { +
Last Updated:
{{status.tasks.index_last_modified | customDate:'medium'}} + } @else { +
Error:
{{status.tasks.index_error}} + }
Classifier
-
- {{status.tasks.classifier_status}} - @if (status.tasks.classifier_status === 'OK') { - @if (isStale(status.tasks.classifier_last_trained)) { - +
+
+ {{status.tasks.classifier_status}} + @if (status.tasks.classifier_status === 'OK') { + @if (isStale(status.tasks.classifier_last_trained)) { + + } @else { + + } } @else { - + } - } @else { - - } +
-
Last Trained:
{{status.tasks.classifier_last_trained | customDate:'medium'}} + @if (status.tasks.classifier_status === 'OK') { +
Last Trained:
{{status.tasks.classifier_last_trained | customDate:'medium'}} + } @else { +
Error:
{{status.tasks.classifier_error}} + }
Sanity Checker
-
- {{status.tasks.sanity_check_status}} - @if (status.tasks.sanity_check_status === 'OK') { - @if (isStale(status.tasks.sanity_check_last_run)) { - +
+
+ {{status.tasks.sanity_check_status}} + @if (status.tasks.sanity_check_status === 'OK') { + @if (isStale(status.tasks.sanity_check_last_run)) { + + } @else { + + } } @else { - + } - } @else { - - } +
-
Last Run:
{{status.tasks.sanity_check_last_run | customDate:'medium'}} + @if (status.tasks.sanity_check_status === 'OK') { +
Last Run:
{{status.tasks.sanity_check_last_run | customDate:'medium'}} + } @else { +
Error:
{{status.tasks.sanity_check_error}} + }
diff --git a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.scss b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.scss index e69de29bb..bce9204a5 100644 --- a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.scss +++ b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.scss @@ -0,0 +1,3 @@ +.border-primary { + --bs-border-color: var(--bs-primary); +} diff --git a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts index af76a53f5..0dd08c732 100644 --- a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts @@ -36,6 +36,8 @@ const status: SystemStatus = { redis_status: SystemStatusItemStatus.ERROR, redis_error: 'Error 61 connecting to localhost:6379. Connection refused.', celery_status: SystemStatusItemStatus.ERROR, + celery_url: 'celery@localhost', + celery_error: 'Error connecting to celery@localhost', index_status: SystemStatusItemStatus.OK, index_last_modified: new Date().toISOString(), index_error: null, diff --git a/src-ui/src/app/data/system-status.ts b/src-ui/src/app/data/system-status.ts index 146208bad..698382154 100644 --- a/src-ui/src/app/data/system-status.ts +++ b/src-ui/src/app/data/system-status.ts @@ -32,6 +32,8 @@ export interface SystemStatus { redis_status: SystemStatusItemStatus redis_error: string celery_status: SystemStatusItemStatus + celery_url: string + celery_error: string index_status: SystemStatusItemStatus index_last_modified: string // ISO date string index_error: string diff --git a/src-ui/src/theme.scss b/src-ui/src/theme.scss index fc8c13d3b..cfceb5602 100644 --- a/src-ui/src/theme.scss +++ b/src-ui/src/theme.scss @@ -21,10 +21,12 @@ --pngx-success-darken-10: hsl(152, 69%, 11%); // based on success #198754 --pngx-bg-alt: #fff; --pngx-bg-darker: var(--bs-gray-100); - --pngx-bg-alt2: var(--bs-gray-200); + --pngx-bg-alt2: var(--bs-gray-200); // #e9ecef --pngx-bg-disabled: #f7f7f7; --pngx-focus-alpha: 0.3; --pngx-toast-max-width: 360px; + --bs-info: var(--pngx-bg-alt2); + --bs-info-rgb: 233, 236, 239; @media screen and (min-width: 1024px) { --pngx-toast-max-width: 450px; } @@ -71,8 +73,15 @@ $form-check-radio-checked-bg-image-dark: url("data:image/svg+xml,