1 }">
- @if (loading && reveal) {
+ @if (loading && show) {
+
diff --git a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.scss b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.scss
index 521a97c6b..4efdb0876 100644
--- a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.scss
+++ b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.scss
@@ -1,12 +1,3 @@
i-bs {
cursor: move;
}
-
-.card {
- opacity: 0;
- transition: opacity .2s;
-}
-
-.reveal {
- opacity: 1;
-}
diff --git a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.spec.ts b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.spec.ts
index cfd7edb3d..b6e8d8515 100644
--- a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.spec.ts
+++ b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.spec.ts
@@ -53,9 +53,9 @@ describe('WidgetFrameComponent', () => {
expect(fixture.debugElement.query(By.css('.spinner-border'))).not.toBeNull()
})
- it('should reveal', () => {
- expect(component.reveal).toBeFalsy()
+ it('should show', () => {
+ expect(component.show).toBeFalsy()
jest.advanceTimersByTime(100)
- expect(component.reveal).toBeTruthy()
+ expect(component.show).toBeTruthy()
})
})
diff --git a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts
index 0ebe3b5ea..dbef53da8 100644
--- a/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts
+++ b/src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.ts
@@ -25,7 +25,7 @@ export class WidgetFrameComponent
ngAfterViewInit(): void {
setTimeout(() => {
- this.reveal = true
+ this.show = true
}, 100)
}
}
diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html
index 810fea029..46399aa32 100644
--- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html
+++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html
@@ -1,4 +1,4 @@
-
+
@if (document) {
diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.spec.ts b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.spec.ts
index 8905d3ff2..9fca1140d 100644
--- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.spec.ts
+++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.spec.ts
@@ -71,6 +71,14 @@ describe('DocumentCardLargeComponent', () => {
component = fixture.componentInstance
component.document = doc
fixture.detectChanges()
+ jest.useFakeTimers()
+ })
+
+ it('should show the card', () => {
+ expect(component.show).toBeFalsy()
+ component.ngAfterViewInit()
+ jest.advanceTimersByTime(100)
+ expect(component.show).toBeTruthy()
})
it('should display a document', () => {
diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts
index d33cef9f3..de655ec2e 100644
--- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts
+++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts
@@ -1,4 +1,5 @@
import {
+ AfterViewInit,
Component,
EventEmitter,
Input,
@@ -13,7 +14,7 @@ import {
import { DocumentService } from 'src/app/services/rest/document.service'
import { SettingsService } from 'src/app/services/settings.service'
import { SETTINGS_KEYS } from 'src/app/data/ui-settings'
-import { ComponentWithPermissions } from '../../with-permissions/with-permissions.component'
+import { LoadingComponentWithPermissions } from '../../loading-component/loading.component'
import { PreviewPopupComponent } from '../../common/preview-popup/preview-popup.component'
@Component({
@@ -21,7 +22,10 @@ import { PreviewPopupComponent } from '../../common/preview-popup/preview-popup.
templateUrl: './document-card-large.component.html',
styleUrls: ['./document-card-large.component.scss'],
})
-export class DocumentCardLargeComponent extends ComponentWithPermissions {
+export class DocumentCardLargeComponent
+ extends LoadingComponentWithPermissions
+ implements AfterViewInit
+{
DisplayField = DisplayField
constructor(
@@ -70,6 +74,12 @@ export class DocumentCardLargeComponent extends ComponentWithPermissions {
mouseOnPreview = false
popoverHidden = true
+ ngAfterViewInit(): void {
+ setInterval(() => {
+ this.show = true
+ }, 100)
+ }
+
get searchScoreClass() {
if (this.document.__search_hit__) {
if (this.document.__search_hit__.score > 0.7) {
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html
index 7b1b9bc93..cde273dfe 100644
--- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html
+++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html
@@ -1,4 +1,4 @@
-
+
@if (document) {
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.spec.ts b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.spec.ts
index 7bdb0c3f8..c9a232c5c 100644
--- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.spec.ts
+++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.spec.ts
@@ -85,6 +85,14 @@ describe('DocumentCardSmallComponent', () => {
component = fixture.componentInstance
component.document = Object.assign({}, doc)
fixture.detectChanges()
+ jest.useFakeTimers()
+ })
+
+ it('should show the card', () => {
+ expect(component.show).toBeFalsy()
+ component.ngAfterViewInit()
+ jest.advanceTimersByTime(100)
+ expect(component.show).toBeTruthy()
})
it('should display page count', () => {
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts
index f8705fa8e..44f7e69cb 100644
--- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts
+++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts
@@ -1,4 +1,5 @@
import {
+ AfterViewInit,
Component,
EventEmitter,
Input,
@@ -14,7 +15,7 @@ import {
import { DocumentService } from 'src/app/services/rest/document.service'
import { SettingsService } from 'src/app/services/settings.service'
import { SETTINGS_KEYS } from 'src/app/data/ui-settings'
-import { ComponentWithPermissions } from '../../with-permissions/with-permissions.component'
+import { LoadingComponentWithPermissions } from '../../loading-component/loading.component'
import { PreviewPopupComponent } from '../../common/preview-popup/preview-popup.component'
@Component({
@@ -22,7 +23,10 @@ import { PreviewPopupComponent } from '../../common/preview-popup/preview-popup.
templateUrl: './document-card-small.component.html',
styleUrls: ['./document-card-small.component.scss'],
})
-export class DocumentCardSmallComponent extends ComponentWithPermissions {
+export class DocumentCardSmallComponent
+ extends LoadingComponentWithPermissions
+ implements AfterViewInit
+{
DisplayField = DisplayField
constructor(
@@ -63,6 +67,12 @@ export class DocumentCardSmallComponent extends ComponentWithPermissions {
@ViewChild('popupPreview') popupPreview: PreviewPopupComponent
+ ngAfterViewInit(): void {
+ setInterval(() => {
+ this.show = true
+ }, 50)
+ }
+
getIsThumbInverted() {
return this.settingsService.get(SETTINGS_KEYS.DARK_MODE_THUMB_INVERTED)
}
diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
index ae7c1f5f0..32c2a1908 100644
--- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
+++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
@@ -1,6 +1,6 @@
-
+
@@ -36,7 +36,7 @@
@if (permissionsService.currentUserCan(PermissionAction.View, PermissionType.Tag) && tags.length > 0) {
-
|
diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.scss b/src-ui/src/app/components/manage/management-list/management-list.component.scss
index 79db7e74f..aa2871d68 100644
--- a/src-ui/src/app/components/manage/management-list/management-list.component.scss
+++ b/src-ui/src/app/components/manage/management-list/management-list.component.scss
@@ -10,12 +10,3 @@ tbody tr:last-child td {
.form-check {
min-height: 0;
}
-
-.data-row {
- opacity: 0;
- transition: opacity .2s;
-}
-
-.reveal {
- opacity: 1;
-}
diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.ts b/src-ui/src/app/components/manage/management-list/management-list.component.ts
index 164b2fa52..75af9f94c 100644
--- a/src-ui/src/app/components/manage/management-list/management-list.component.ts
+++ b/src-ui/src/app/components/manage/management-list/management-list.component.ts
@@ -153,7 +153,7 @@ export abstract class ManagementListComponent
|