@konfuzio/document-validation-ui 0.1.49-dev.0 → 0.1.49-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/app.css +1 -1
- package/dist/index.html +1 -1
- package/dist/js/app.js +1 -1
- package/dist/js/app.js.map +1 -1
- package/package.json +1 -1
- package/src/api.js +1 -0
- package/src/assets/scss/theme.scss +1 -0
- package/src/assets/scss/variables.scss +1 -1
- package/src/components/App.vue +17 -0
- package/src/components/DocumentAnnotations/AnnotationActionButtons.vue +1 -0
- package/src/components/DocumentAnnotations/AnnotationDetails.vue +1 -0
- package/src/components/DocumentTopBar/DocumentTopBar.cy.js +192 -220
- package/src/components/DocumentTopBar/DocumentTopBar.vue +10 -7
- package/src/components/DocumentTopBar/DocumentTopBarButtons.vue +1 -0
- package/src/store/category.js +13 -21
- package/src/store/display.js +8 -0
- package/src/store/document.js +0 -18
- package/src/store/project.js +31 -22
package/package.json
CHANGED
package/src/api.js
CHANGED
|
@@ -44,7 +44,7 @@ $text-color: #1a1a1a;
|
|
|
44
44
|
|
|
45
45
|
$primary: var(--primary-color);
|
|
46
46
|
$hover-style: brightness(0.8) contrast(160%) grayscale(0.4);
|
|
47
|
-
$font-family:
|
|
47
|
+
$font-family: var(--font-family);
|
|
48
48
|
$background: $white;
|
|
49
49
|
$top-bar-background: var(--top-bar-background);
|
|
50
50
|
$toolbar: $text-color;
|
package/src/components/App.vue
CHANGED
|
@@ -47,6 +47,12 @@ export default {
|
|
|
47
47
|
default: "false",
|
|
48
48
|
},
|
|
49
49
|
// eslint-disable-next-line vue/prop-name-casing
|
|
50
|
+
show_documents_navigation: {
|
|
51
|
+
type: String,
|
|
52
|
+
required: false,
|
|
53
|
+
default: "true",
|
|
54
|
+
},
|
|
55
|
+
// eslint-disable-next-line vue/prop-name-casing
|
|
50
56
|
sentry_dsn: {
|
|
51
57
|
type: String,
|
|
52
58
|
required: false,
|
|
@@ -157,6 +163,13 @@ export default {
|
|
|
157
163
|
return null;
|
|
158
164
|
}
|
|
159
165
|
},
|
|
166
|
+
showDocumentsNavigation() {
|
|
167
|
+
if (process.env.VUE_APP_SHOW_DOCUMENTS_NAVIGATION) {
|
|
168
|
+
return process.env.VUE_APP_SHOW_DOCUMENTS_NAVIGATION === "true";
|
|
169
|
+
} else {
|
|
170
|
+
return this.show_documents_navigation === "true";
|
|
171
|
+
}
|
|
172
|
+
},
|
|
160
173
|
isPublicView() {
|
|
161
174
|
if (
|
|
162
175
|
this.userToken ||
|
|
@@ -296,6 +309,10 @@ export default {
|
|
|
296
309
|
"display/hideEmptyLabelSets",
|
|
297
310
|
this.hideEmptyLabelSets
|
|
298
311
|
),
|
|
312
|
+
this.$store.dispatch(
|
|
313
|
+
"display/showDocumentsNavigation",
|
|
314
|
+
this.showDocumentsNavigation
|
|
315
|
+
),
|
|
299
316
|
this.$store.dispatch("document/setDocId", this.documentId),
|
|
300
317
|
this.$store.dispatch("document/setPublicView", this.isPublicView),
|
|
301
318
|
this.$store.dispatch("document/setAnnotationId", this.annotationId),
|
|
@@ -1,223 +1,195 @@
|
|
|
1
1
|
import DocumentTopBar from "./DocumentTopBar";
|
|
2
2
|
|
|
3
3
|
describe("Document Top Bar", () => {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
cy.get("#document-top-bar-component")
|
|
197
|
-
.find(".right-bar-components")
|
|
198
|
-
.find(".edit-mode-buttons")
|
|
199
|
-
.should("not.exist");
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
});
|
|
203
|
-
|
|
204
|
-
});
|
|
205
|
-
|
|
206
|
-
it("Shows rename and categorize section when clicking 'next' button", () => {
|
|
207
|
-
cy.dispatchAction("edit", "enableEditMode");
|
|
208
|
-
|
|
209
|
-
cy.get("#document-top-bar-component")
|
|
210
|
-
.find(".right-bar-components")
|
|
211
|
-
.find(".edit-mode-buttons")
|
|
212
|
-
.find(".button-next")
|
|
213
|
-
.click();
|
|
214
|
-
|
|
215
|
-
cy.wait(1000);
|
|
216
|
-
|
|
217
|
-
cy.get("#document-top-bar-component")
|
|
218
|
-
.find(".right-bar-components")
|
|
219
|
-
.find(".edit-mode-buttons")
|
|
220
|
-
.find(".submit-btn")
|
|
221
|
-
.should("be.visible");
|
|
222
|
-
});
|
|
223
|
-
});
|
|
4
|
+
let currentDocument;
|
|
5
|
+
|
|
6
|
+
beforeEach(() => {
|
|
7
|
+
cy.fetchDocument().then(() => {
|
|
8
|
+
cy.getStore("document").then(($document) => {
|
|
9
|
+
currentDocument = $document.selectedDocument;
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
cy.getStore("project").then(($project) => {
|
|
13
|
+
cy.fetchCategories($project.projectId);
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
cy.dispatchAction("document", "setPublicView", false);
|
|
17
|
+
cy.dispatchAction("edit", "disableEditMode");
|
|
18
|
+
cy.mount(DocumentTopBar);
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
it("Shows category dropdown if not edit mode or reviewed", () => {
|
|
22
|
+
cy.dispatchAction("edit", "disableEditMode");
|
|
23
|
+
|
|
24
|
+
cy.get("#document-top-bar-component")
|
|
25
|
+
.find(".left-bar-components")
|
|
26
|
+
.find(".category-chooser")
|
|
27
|
+
.should("be.visible");
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
it("Shows correct file name", () => {
|
|
31
|
+
const fileName = currentDocument.data_file_name;
|
|
32
|
+
|
|
33
|
+
cy.get("#document-top-bar-component")
|
|
34
|
+
.find(".center-bar-components")
|
|
35
|
+
.find(".document-name-component")
|
|
36
|
+
.should("be.visible");
|
|
37
|
+
|
|
38
|
+
cy.get("#document-top-bar-component")
|
|
39
|
+
.find(".center-bar-components")
|
|
40
|
+
.find(".document-name-component")
|
|
41
|
+
.find(".document-name")
|
|
42
|
+
.contains(fileName);
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
it("Shows keyboard icon", () => {
|
|
46
|
+
cy.get("#document-top-bar-component")
|
|
47
|
+
.find(".right-bar-components")
|
|
48
|
+
.find(".keyboard-actions-info")
|
|
49
|
+
.should("be.visible");
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
it("Shows disabled finish review button", () => {
|
|
53
|
+
cy.get("#document-top-bar-component")
|
|
54
|
+
.find(".right-bar-components")
|
|
55
|
+
.find(".top-bar-buttons")
|
|
56
|
+
.find(".finish-review-button-container")
|
|
57
|
+
.should("be.visible");
|
|
58
|
+
|
|
59
|
+
cy.get("#document-top-bar-component")
|
|
60
|
+
.find(".right-bar-components")
|
|
61
|
+
.find(".top-bar-buttons")
|
|
62
|
+
.find(".finish-review-button-container")
|
|
63
|
+
.find(".finish-review-btn")
|
|
64
|
+
.should("be.disabled");
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
it("Shows edit mode buttons", () => {
|
|
68
|
+
cy.dispatchAction("edit", "enableEditMode");
|
|
69
|
+
|
|
70
|
+
cy.get("#document-top-bar-component")
|
|
71
|
+
.find(".right-bar-components")
|
|
72
|
+
.find(".top-bar-buttons")
|
|
73
|
+
.find(".finish-review-button-container")
|
|
74
|
+
.should("not.exist");
|
|
75
|
+
|
|
76
|
+
cy.get("#document-top-bar-component")
|
|
77
|
+
.find(".right-bar-components")
|
|
78
|
+
.find(".top-bar-buttons")
|
|
79
|
+
.find(".edit-mode-buttons")
|
|
80
|
+
.should("be.visible");
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
it("Edits file name", () => {
|
|
84
|
+
const newName = "test-name";
|
|
85
|
+
|
|
86
|
+
cy.get("#document-top-bar-component")
|
|
87
|
+
.find(".center-bar-components")
|
|
88
|
+
.find(".document-name-component")
|
|
89
|
+
.find(".edit-btn")
|
|
90
|
+
.click();
|
|
91
|
+
|
|
92
|
+
cy.get("#document-top-bar-component")
|
|
93
|
+
.find(".center-bar-components")
|
|
94
|
+
.find(".document-name-component")
|
|
95
|
+
.find(".document-name")
|
|
96
|
+
.should("have.class", "is-editable");
|
|
97
|
+
|
|
98
|
+
cy.get("#document-top-bar-component")
|
|
99
|
+
.find(".center-bar-components")
|
|
100
|
+
.find(".document-name-component")
|
|
101
|
+
.find(".document-name")
|
|
102
|
+
.type("{selectAll}")
|
|
103
|
+
.type("{backspace}")
|
|
104
|
+
.type(newName);
|
|
105
|
+
|
|
106
|
+
cy.get("#document-top-bar-component")
|
|
107
|
+
.find(".center-bar-components")
|
|
108
|
+
.find(".document-name-component")
|
|
109
|
+
.find(".save-btn")
|
|
110
|
+
.should("be.visible");
|
|
111
|
+
|
|
112
|
+
cy.get("#document-top-bar-component")
|
|
113
|
+
.find(".center-bar-components")
|
|
114
|
+
.find(".document-name-component")
|
|
115
|
+
.find(".save-btn")
|
|
116
|
+
.click();
|
|
117
|
+
|
|
118
|
+
cy.wait(1000);
|
|
119
|
+
|
|
120
|
+
cy.get("#document-top-bar-component")
|
|
121
|
+
.find(".center-bar-components")
|
|
122
|
+
.find(".document-name-component")
|
|
123
|
+
.find(".cloud-icon")
|
|
124
|
+
.should("be.visible");
|
|
125
|
+
|
|
126
|
+
cy.wait(1000);
|
|
127
|
+
|
|
128
|
+
cy.get("#document-top-bar-component")
|
|
129
|
+
.find(".center-bar-components")
|
|
130
|
+
.find(".document-name-component")
|
|
131
|
+
.contains(newName);
|
|
132
|
+
});
|
|
133
|
+
|
|
134
|
+
it("Shows tooltip when hovering over keyboard info", () => {
|
|
135
|
+
cy.get("#document-top-bar-component")
|
|
136
|
+
.find(".right-bar-components")
|
|
137
|
+
.find(".keyboard-actions-info")
|
|
138
|
+
.trigger("mouseenter");
|
|
139
|
+
|
|
140
|
+
cy.get("#document-top-bar-component")
|
|
141
|
+
.find(".right-bar-components")
|
|
142
|
+
.find(".keyboard-actions-info")
|
|
143
|
+
.find(".keyboard-actions-description")
|
|
144
|
+
.should("be.visible");
|
|
145
|
+
|
|
146
|
+
cy.get("#document-top-bar-component")
|
|
147
|
+
.find(".right-bar-components")
|
|
148
|
+
.find(".keyboard-actions-info")
|
|
149
|
+
.trigger("mouseleave");
|
|
150
|
+
});
|
|
151
|
+
|
|
152
|
+
it("Closes edit mode when clicking 'back to annotation view' button", () => {
|
|
153
|
+
cy.dispatchAction("edit", "enableEditMode");
|
|
154
|
+
|
|
155
|
+
cy.get("#document-top-bar-component")
|
|
156
|
+
.find(".right-bar-components")
|
|
157
|
+
.find(".edit-mode-buttons")
|
|
158
|
+
.should("exist");
|
|
159
|
+
|
|
160
|
+
cy.get("#document-top-bar-component")
|
|
161
|
+
.find(".right-bar-components")
|
|
162
|
+
.find(".edit-mode-buttons")
|
|
163
|
+
.find(".button-cancel")
|
|
164
|
+
.then(($button) => {
|
|
165
|
+
if (!$button.is(":disabled")) {
|
|
166
|
+
cy.wrap($button).click();
|
|
167
|
+
|
|
168
|
+
cy.wait(1000);
|
|
169
|
+
|
|
170
|
+
cy.get("#document-top-bar-component")
|
|
171
|
+
.find(".right-bar-components")
|
|
172
|
+
.find(".edit-mode-buttons")
|
|
173
|
+
.should("not.exist");
|
|
174
|
+
}
|
|
175
|
+
});
|
|
176
|
+
});
|
|
177
|
+
|
|
178
|
+
it("Shows rename and categorize section when clicking 'next' button", () => {
|
|
179
|
+
cy.dispatchAction("edit", "enableEditMode");
|
|
180
|
+
|
|
181
|
+
cy.get("#document-top-bar-component")
|
|
182
|
+
.find(".right-bar-components")
|
|
183
|
+
.find(".edit-mode-buttons")
|
|
184
|
+
.find(".button-next")
|
|
185
|
+
.click();
|
|
186
|
+
|
|
187
|
+
cy.wait(1000);
|
|
188
|
+
|
|
189
|
+
cy.get("#document-top-bar-component")
|
|
190
|
+
.find(".right-bar-components")
|
|
191
|
+
.find(".edit-mode-buttons")
|
|
192
|
+
.find(".submit-btn")
|
|
193
|
+
.should("be.visible");
|
|
194
|
+
});
|
|
195
|
+
});
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
</div>
|
|
12
12
|
|
|
13
13
|
<div
|
|
14
|
+
id="document-info"
|
|
14
15
|
:class="[
|
|
15
16
|
'center-bar-components',
|
|
16
17
|
recalculatingAnnotations && 'single-component',
|
|
@@ -123,7 +124,7 @@ export default {
|
|
|
123
124
|
"recalculatingAnnotations",
|
|
124
125
|
]),
|
|
125
126
|
...mapState("edit", ["editMode"]),
|
|
126
|
-
...mapState("
|
|
127
|
+
...mapState("display", ["showDocumentsNavigation"]),
|
|
127
128
|
...mapGetters("document", [
|
|
128
129
|
"isDocumentReviewed",
|
|
129
130
|
"isDocumentReadyToBeReviewed",
|
|
@@ -131,9 +132,13 @@ export default {
|
|
|
131
132
|
]),
|
|
132
133
|
},
|
|
133
134
|
watch: {
|
|
134
|
-
|
|
135
|
-
if (newValue && this.
|
|
136
|
-
this
|
|
135
|
+
loading(newValue) {
|
|
136
|
+
if (!newValue && this.showDocumentsNavigation) {
|
|
137
|
+
this.$store
|
|
138
|
+
.dispatch("project/fetchDocumentListForNavigation")
|
|
139
|
+
.then((results) => {
|
|
140
|
+
this.getPreviousAndNextDocuments(results);
|
|
141
|
+
});
|
|
137
142
|
}
|
|
138
143
|
},
|
|
139
144
|
},
|
|
@@ -157,9 +162,7 @@ export default {
|
|
|
157
162
|
handleResize() {
|
|
158
163
|
this.setComponentWidth(this.$refs.documentTopBar.offsetWidth);
|
|
159
164
|
},
|
|
160
|
-
getPreviousAndNextDocuments() {
|
|
161
|
-
const filteredDocuments = this.documentsInProject;
|
|
162
|
-
|
|
165
|
+
getPreviousAndNextDocuments(filteredDocuments) {
|
|
163
166
|
if (!filteredDocuments) return;
|
|
164
167
|
|
|
165
168
|
const found = filteredDocuments.find(
|
package/src/store/category.js
CHANGED
|
@@ -3,7 +3,6 @@ import myImports from "../api";
|
|
|
3
3
|
const HTTP = myImports.HTTP;
|
|
4
4
|
|
|
5
5
|
const state = {
|
|
6
|
-
createAvailableListOfDocuments: false,
|
|
7
6
|
documentsAvailableToReview: [], // filtered by user
|
|
8
7
|
categories: null,
|
|
9
8
|
};
|
|
@@ -74,10 +73,13 @@ const actions = {
|
|
|
74
73
|
let errors = 0;
|
|
75
74
|
count += 1;
|
|
76
75
|
|
|
77
|
-
return dispatch(
|
|
78
|
-
|
|
76
|
+
return dispatch(
|
|
77
|
+
"project/fetchDocumentListWithParameters",
|
|
78
|
+
parameters
|
|
79
|
+
).then((documents) => {
|
|
80
|
+
for (let i = 0; i < documents.length; i++) {
|
|
79
81
|
const found = state.documentsAvailableToReview.find(
|
|
80
|
-
(doc) => doc.id ===
|
|
82
|
+
(doc) => doc.id === documents[i].id
|
|
81
83
|
);
|
|
82
84
|
|
|
83
85
|
if (found) {
|
|
@@ -85,19 +87,12 @@ const actions = {
|
|
|
85
87
|
// we go to the next item
|
|
86
88
|
continue;
|
|
87
89
|
} else if (
|
|
88
|
-
rootGetters["document/isDocumentReadyToBeReviewed"](
|
|
89
|
-
rootState.project.documentsInProject[i]
|
|
90
|
-
)
|
|
90
|
+
rootGetters["document/isDocumentReadyToBeReviewed"](documents)
|
|
91
91
|
) {
|
|
92
92
|
// add available doc to the end of the array
|
|
93
|
-
commit(
|
|
94
|
-
"ADD_AVAILABLE_DOCUMENT",
|
|
95
|
-
rootState.project.documentsInProject[i]
|
|
96
|
-
);
|
|
93
|
+
commit("ADD_AVAILABLE_DOCUMENT", documents);
|
|
97
94
|
} else if (
|
|
98
|
-
rootGetters["document/documentHadErrorDuringExtraction"](
|
|
99
|
-
rootState.project.documentsInProject[i]
|
|
100
|
-
)
|
|
95
|
+
rootGetters["document/documentHadErrorDuringExtraction"](documents)
|
|
101
96
|
) {
|
|
102
97
|
dispatch("document/setDocumentError", null, { root: true });
|
|
103
98
|
// If error, add 1
|
|
@@ -115,10 +110,8 @@ const actions = {
|
|
|
115
110
|
// And if the difference is due to errors or to docs not ready
|
|
116
111
|
if (
|
|
117
112
|
poll &&
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
state.documentsAvailableToReview.length + errors !==
|
|
121
|
-
rootState.project.documentsInProject.length
|
|
113
|
+
documents.length !== state.documentsAvailableToReview.length &&
|
|
114
|
+
state.documentsAvailableToReview.length + errors !== documents.length
|
|
122
115
|
) {
|
|
123
116
|
if (count >= 10) return true;
|
|
124
117
|
|
|
@@ -134,9 +127,8 @@ const actions = {
|
|
|
134
127
|
|
|
135
128
|
// Poll as long as the lengths are different
|
|
136
129
|
if (
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
state.documentsAvailableToReview.length
|
|
130
|
+
documents.length === 0 ||
|
|
131
|
+
documents.length !== state.documentsAvailableToReview.length
|
|
140
132
|
) {
|
|
141
133
|
let duration;
|
|
142
134
|
if (count <= 5) {
|