@hmcts/ccd-case-ui-toolkit 7.0.57 → 7.0.58-exui-2220-rc2
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/esm2022/lib/app.config.mjs +1 -1
- package/esm2022/lib/shared/components/case-editor/case-edit/case-edit.component.mjs +3 -3
- package/esm2022/lib/shared/components/case-editor/services/work-allocation.service.mjs +12 -7
- package/esm2022/lib/shared/components/case-viewer/case-full-access-view/case-full-access-view.component.mjs +34 -28
- package/esm2022/lib/shared/components/palette/base-field/field-read.component.mjs +4 -3
- package/esm2022/lib/shared/components/palette/collection/read-collection-field.component.mjs +6 -4
- package/esm2022/lib/shared/components/palette/complex/read-complex-field-table.component.mjs +21 -15
- package/esm2022/lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.mjs +25 -18
- package/esm2022/lib/shared/components/search-result/search-result.component.mjs +64 -59
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +161 -129
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/lib/app.config.d.ts +1 -0
- package/lib/app.config.d.ts.map +1 -1
- package/lib/shared/components/case-editor/services/work-allocation.service.d.ts +3 -2
- package/lib/shared/components/case-editor/services/work-allocation.service.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -8945,6 +8945,9 @@ class WorkAllocationService {
|
|
|
8945
8945
|
}
|
|
8946
8946
|
}));
|
|
8947
8947
|
}
|
|
8948
|
+
isWAEnabled1(jurisdiction, caseType) {
|
|
8949
|
+
return false;
|
|
8950
|
+
}
|
|
8948
8951
|
isWAEnabled(jurisdiction, caseType) {
|
|
8949
8952
|
this.features = this.appConfig.getWAServiceConfig();
|
|
8950
8953
|
const ftstr = JSON.stringify(this.features);
|
|
@@ -8988,14 +8991,14 @@ class WorkAllocationService {
|
|
|
8988
8991
|
* Call the API to complete a task.
|
|
8989
8992
|
* @param taskId specifies which task should be completed.
|
|
8990
8993
|
*/
|
|
8991
|
-
completeTask(taskId) {
|
|
8994
|
+
completeTask(taskId, eventName) {
|
|
8992
8995
|
if (!this.isWAEnabled()) {
|
|
8993
8996
|
return of(null);
|
|
8994
8997
|
}
|
|
8995
8998
|
console.log(`completeTask: completing ${taskId}`);
|
|
8996
8999
|
const url = `${this.appConfig.getWorkAllocationApiUrl()}/task/${taskId}/complete`;
|
|
8997
9000
|
return this.http
|
|
8998
|
-
.post(url, { actionByEvent: true })
|
|
9001
|
+
.post(url, { actionByEvent: true, eventName: eventName })
|
|
8999
9002
|
.pipe(catchError(error => {
|
|
9000
9003
|
this.errorService.setError(error);
|
|
9001
9004
|
// this will subscribe to get the user details and decide whether to display an error message
|
|
@@ -9009,7 +9012,7 @@ class WorkAllocationService {
|
|
|
9009
9012
|
* Call the API to assign and complete a task.
|
|
9010
9013
|
* @param taskId specifies which task should be completed.
|
|
9011
9014
|
*/
|
|
9012
|
-
assignAndCompleteTask(taskId) {
|
|
9015
|
+
assignAndCompleteTask(taskId, eventName) {
|
|
9013
9016
|
if (!this.isWAEnabled()) {
|
|
9014
9017
|
return of(null);
|
|
9015
9018
|
}
|
|
@@ -9019,7 +9022,8 @@ class WorkAllocationService {
|
|
|
9019
9022
|
completion_options: {
|
|
9020
9023
|
assign_and_complete: true
|
|
9021
9024
|
},
|
|
9022
|
-
actionByEvent: true
|
|
9025
|
+
actionByEvent: true,
|
|
9026
|
+
eventName: eventName
|
|
9023
9027
|
})
|
|
9024
9028
|
.pipe(catchError(error => {
|
|
9025
9029
|
this.errorService.setError(error);
|
|
@@ -9077,7 +9081,7 @@ class WorkAllocationService {
|
|
|
9077
9081
|
const tasks = response.tasks;
|
|
9078
9082
|
if (tasks && tasks.length > 0) {
|
|
9079
9083
|
if (tasks.length === 1) {
|
|
9080
|
-
this.completeTask(tasks[0].id).subscribe();
|
|
9084
|
+
this.completeTask(tasks[0].id, eventId).subscribe();
|
|
9081
9085
|
}
|
|
9082
9086
|
else {
|
|
9083
9087
|
// This is a problem. Throw an appropriate error.
|
|
@@ -9098,7 +9102,8 @@ class WorkAllocationService {
|
|
|
9098
9102
|
task_required_for_event: false,
|
|
9099
9103
|
tasks: []
|
|
9100
9104
|
};
|
|
9101
|
-
if (!this.
|
|
9105
|
+
if (!this.isWAEnabled1()) {
|
|
9106
|
+
this.appConfig.logMessage('search for completable call missing.');
|
|
9102
9107
|
return of(defaultPayload);
|
|
9103
9108
|
}
|
|
9104
9109
|
return this.http.get(`${this.appConfig.getWorkAllocationApiUrl()}/case/tasks/${caseId}/event/${eventId}/caseType/${caseType}/jurisdiction/${jurisdiction}`);
|
|
@@ -9544,11 +9549,11 @@ class CaseEditComponent {
|
|
|
9544
9549
|
const assignNeeded = this.sessionStorageService.getItem('assignNeeded') === 'true';
|
|
9545
9550
|
if (taskStr && assignNeeded) {
|
|
9546
9551
|
const task = JSON.parse(taskStr);
|
|
9547
|
-
return this.workAllocationService.assignAndCompleteTask(task.id);
|
|
9552
|
+
return this.workAllocationService.assignAndCompleteTask(task.id, this.eventTrigger.name);
|
|
9548
9553
|
}
|
|
9549
9554
|
else if (taskStr) {
|
|
9550
9555
|
const task = JSON.parse(taskStr);
|
|
9551
|
-
return this.workAllocationService.completeTask(task.id);
|
|
9556
|
+
return this.workAllocationService.completeTask(task.id, this.eventTrigger.name);
|
|
9552
9557
|
}
|
|
9553
9558
|
return of(true);
|
|
9554
9559
|
}
|
|
@@ -13210,6 +13215,8 @@ function ReadCollectionFieldComponent_table_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
13210
13215
|
i0.ɵɵelementEnd();
|
|
13211
13216
|
} if (rf & 2) {
|
|
13212
13217
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
13218
|
+
i0.ɵɵpropertyInterpolate("id", ctx_r0.caseField.id);
|
|
13219
|
+
i0.ɵɵattribute("aria-describedby", ctx_r0.caseField.id);
|
|
13213
13220
|
i0.ɵɵadvance();
|
|
13214
13221
|
i0.ɵɵproperty("ngSwitch", ctx_r0.isDisplayContextParameterAvailable);
|
|
13215
13222
|
i0.ɵɵadvance();
|
|
@@ -13232,15 +13239,15 @@ class ReadCollectionFieldComponent extends AbstractFieldReadComponent {
|
|
|
13232
13239
|
return prefix;
|
|
13233
13240
|
}
|
|
13234
13241
|
static ɵfac = /*@__PURE__*/ (() => { let ɵReadCollectionFieldComponent_BaseFactory; return function ReadCollectionFieldComponent_Factory(t) { return (ɵReadCollectionFieldComponent_BaseFactory || (ɵReadCollectionFieldComponent_BaseFactory = i0.ɵɵgetInheritedFactory(ReadCollectionFieldComponent)))(t || ReadCollectionFieldComponent); }; })();
|
|
13235
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadCollectionFieldComponent, selectors: [["ccd-read-collection-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [["class", "collection-field-table",
|
|
13236
|
-
i0.ɵɵtemplate(0, ReadCollectionFieldComponent_table_0_Template, 4,
|
|
13242
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadCollectionFieldComponent, selectors: [["ccd-read-collection-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [["class", "collection-field-table", 3, "id", 4, "ngIf"], [1, "collection-field-table", 3, "id"], [3, "ngSwitch"], [4, "ngSwitchCase"], ["id", "hiddenHeader", 2, "display", "none"], [3, "caseField", "context", "topLevelFormGroup"], [4, "ngFor", "ngForOf"], [3, "caseField", "context", "topLevelFormGroup", "idPrefix"]], template: function ReadCollectionFieldComponent_Template(rf, ctx) { if (rf & 1) {
|
|
13243
|
+
i0.ɵɵtemplate(0, ReadCollectionFieldComponent_table_0_Template, 4, 5, "table", 0);
|
|
13237
13244
|
} if (rf & 2) {
|
|
13238
13245
|
i0.ɵɵproperty("ngIf", ctx.caseField.value && ctx.caseField.value.length);
|
|
13239
13246
|
} }, styles: [".collection-field-table[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:first-child > td[_ngcontent-%COMP%]{padding-top:0}.collection-field-table[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:last-child > td[_ngcontent-%COMP%]{border-bottom:none}.collection-field-table[_ngcontent-%COMP%] td.collection-actions[_ngcontent-%COMP%]{width:1px;white-space:nowrap}.error-spacing[_ngcontent-%COMP%]{margin-top:10px}.collection-title[_ngcontent-%COMP%]{height:51px}.float-left[_ngcontent-%COMP%]{float:left;padding-top:8px}.float-right[_ngcontent-%COMP%]{float:right}.complex-panel[_ngcontent-%COMP%]{margin:13px 0;border:1px solid #bfc1c3}.complex-panel[_ngcontent-%COMP%] .complex-panel-title[_ngcontent-%COMP%]{background-color:#dee0e2;padding:5px 5px 2px;border-bottom:1px solid #bfc1c3;display:block;color:#0b0c0c;font-family:nta,Arial,sans-serif;font-weight:700;text-transform:none;font-size:16px;line-height:1.25}@media (min-width: 641px){.complex-panel[_ngcontent-%COMP%] .complex-panel-title[_ngcontent-%COMP%]{font-size:19px;line-height:1.3157894737}}.complex-panel[_ngcontent-%COMP%] .complex-panel-table[_ngcontent-%COMP%] > tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%] > th[_ngcontent-%COMP%]{vertical-align:top}.complex-panel[_ngcontent-%COMP%] .complex-panel-table[_ngcontent-%COMP%] > tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%]:last-child > th[_ngcontent-%COMP%], .complex-panel[_ngcontent-%COMP%] .complex-panel-table[_ngcontent-%COMP%] > tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%]:last-child > td[_ngcontent-%COMP%]{border-bottom:none}.complex-panel[_ngcontent-%COMP%] .complex-panel-simple-field[_ngcontent-%COMP%] th[_ngcontent-%COMP%]{padding-left:5px;width:295px}.complex-panel[_ngcontent-%COMP%] .complex-panel-compound-field[_ngcontent-%COMP%] td[_ngcontent-%COMP%]{padding:5px}.collection-indicator[_ngcontent-%COMP%]{border-left:solid 5px #b1b4b6}"] });
|
|
13240
13247
|
}
|
|
13241
13248
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadCollectionFieldComponent, [{
|
|
13242
13249
|
type: Component,
|
|
13243
|
-
args: [{ selector: 'ccd-read-collection-field', template: "<table *ngIf=\"caseField.value && caseField.value.length \" class=\"collection-field-table\" aria-describedby=\"
|
|
13250
|
+
args: [{ selector: 'ccd-read-collection-field', template: "<table *ngIf=\"caseField.value && caseField.value.length \" class=\"collection-field-table\" id=\"{{caseField.id}}\" [attr.aria-describedby]=\"caseField.id\">\n <ng-container [ngSwitch]=\"isDisplayContextParameterAvailable\">\n <tbody *ngSwitchCase=\"true\">\n <tr>\n <th id=\"hiddenHeader\" style=\"display: none;\"></th>\n <td>\n <ccd-field-read\n [caseField]=\"{\n id: caseField.label,\n label: caseField.label,\n field_type: caseField.field_type.collection_field_type,\n display_context_parameter: caseField.display_context_parameter,\n value: caseField.value,\n hidden: caseField.hidden\n }\"\n [context]=\"context\"\n [topLevelFormGroup]=\"topLevelFormGroup\">\n </ccd-field-read>\n </td>\n </tr>\n </tbody>\n <tbody *ngSwitchCase=\"false\">\n <tr *ngFor=\"let item of caseField.value; let i = index\">\n <td>\n <ccd-field-read\n [caseField]=\"{\n id: i,\n label: caseField.label + ' ' + (i + 1),\n field_type: caseField.field_type.collection_field_type,\n value: item.value,\n hidden: caseField.hidden\n }\"\n [context]=\"context\"\n [topLevelFormGroup]=\"topLevelFormGroup\"\n [idPrefix]=\"buildIdPrefix(i)\">\n </ccd-field-read>\n </td>\n </tr>\n </tbody>\n </ng-container>\n</table>\n", styles: [".collection-field-table tr:first-child>td{padding-top:0}.collection-field-table tr:last-child>td{border-bottom:none}.collection-field-table td.collection-actions{width:1px;white-space:nowrap}.error-spacing{margin-top:10px}.collection-title{height:51px}.float-left{float:left;padding-top:8px}.float-right{float:right}.complex-panel{margin:13px 0;border:1px solid #bfc1c3}.complex-panel .complex-panel-title{background-color:#dee0e2;padding:5px 5px 2px;border-bottom:1px solid #bfc1c3;display:block;color:#0b0c0c;font-family:nta,Arial,sans-serif;font-weight:700;text-transform:none;font-size:16px;line-height:1.25}@media (min-width: 641px){.complex-panel .complex-panel-title{font-size:19px;line-height:1.3157894737}}.complex-panel .complex-panel-table>tbody>tr>th{vertical-align:top}.complex-panel .complex-panel-table>tbody>tr:last-child>th,.complex-panel .complex-panel-table>tbody>tr:last-child>td{border-bottom:none}.complex-panel .complex-panel-simple-field th{padding-left:5px;width:295px}.complex-panel .complex-panel-compound-field td{padding:5px}.collection-indicator{border-left:solid 5px #b1b4b6}\n"] }]
|
|
13244
13251
|
}], null, null); })();
|
|
13245
13252
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ReadCollectionFieldComponent, { className: "ReadCollectionFieldComponent", filePath: "lib/shared/components/palette/collection/read-collection-field.component.ts", lineNumber: 10 }); })();
|
|
13246
13253
|
|
|
@@ -18186,43 +18193,50 @@ class WriteMoneyGbpFieldComponent extends AbstractFieldWriteComponent {
|
|
|
18186
18193
|
}], null, null); })();
|
|
18187
18194
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(WriteMoneyGbpFieldComponent, { className: "WriteMoneyGbpFieldComponent", filePath: "lib/shared/components/palette/money-gbp/write-money-gbp-field.component.ts", lineNumber: 9 }); })();
|
|
18188
18195
|
|
|
18189
|
-
function
|
|
18190
|
-
i0.ɵɵelementStart(0, "tr");
|
|
18191
|
-
i0.ɵɵ
|
|
18192
|
-
i0.ɵɵ
|
|
18193
|
-
i0.ɵɵ
|
|
18194
|
-
i0.ɵɵ
|
|
18195
|
-
i0.ɵɵpipe(6, "
|
|
18196
|
+
function ReadMultiSelectListFieldComponent_table_2_tr_3_Template(rf, ctx) { if (rf & 1) {
|
|
18197
|
+
i0.ɵɵelementStart(0, "tr")(1, "th", 4);
|
|
18198
|
+
i0.ɵɵtext(2, "\u200B");
|
|
18199
|
+
i0.ɵɵelementEnd();
|
|
18200
|
+
i0.ɵɵelementStart(3, "td")(4, "span", 5);
|
|
18201
|
+
i0.ɵɵtext(5);
|
|
18202
|
+
i0.ɵɵpipe(6, "ccdFixedList");
|
|
18203
|
+
i0.ɵɵpipe(7, "rpxTranslate");
|
|
18196
18204
|
i0.ɵɵelementEnd()()();
|
|
18197
18205
|
} if (rf & 2) {
|
|
18198
18206
|
const value_r1 = ctx.$implicit;
|
|
18199
18207
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
18200
|
-
i0.ɵɵadvance(
|
|
18201
|
-
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(
|
|
18208
|
+
i0.ɵɵadvance(5);
|
|
18209
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 4, i0.ɵɵpipeBind2(6, 1, value_r1, ctx_r1.caseField.field_type.fixed_list_items)));
|
|
18202
18210
|
} }
|
|
18203
|
-
function
|
|
18204
|
-
i0.ɵɵelementStart(0, "table",
|
|
18211
|
+
function ReadMultiSelectListFieldComponent_table_2_Template(rf, ctx) { if (rf & 1) {
|
|
18212
|
+
i0.ɵɵelementStart(0, "table", 2);
|
|
18205
18213
|
i0.ɵɵpipe(1, "rpxTranslate");
|
|
18206
18214
|
i0.ɵɵelementStart(2, "tbody");
|
|
18207
|
-
i0.ɵɵtemplate(3,
|
|
18215
|
+
i0.ɵɵtemplate(3, ReadMultiSelectListFieldComponent_table_2_tr_3_Template, 8, 6, "tr", 3);
|
|
18208
18216
|
i0.ɵɵelementEnd()();
|
|
18209
18217
|
} if (rf & 2) {
|
|
18210
18218
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
18211
|
-
i0.ɵɵattribute("aria-describedby", i0.ɵɵpipeBind1(1, 2, "multi
|
|
18219
|
+
i0.ɵɵattribute("aria-describedby", i0.ɵɵpipeBind1(1, 2, "multi-select-list"));
|
|
18212
18220
|
i0.ɵɵadvance(3);
|
|
18213
18221
|
i0.ɵɵproperty("ngForOf", ctx_r1.caseField.value);
|
|
18214
18222
|
} }
|
|
18215
18223
|
class ReadMultiSelectListFieldComponent extends AbstractFieldReadComponent {
|
|
18216
18224
|
static ɵfac = /*@__PURE__*/ (() => { let ɵReadMultiSelectListFieldComponent_BaseFactory; return function ReadMultiSelectListFieldComponent_Factory(t) { return (ɵReadMultiSelectListFieldComponent_BaseFactory || (ɵReadMultiSelectListFieldComponent_BaseFactory = i0.ɵɵgetInheritedFactory(ReadMultiSelectListFieldComponent)))(t || ReadMultiSelectListFieldComponent); }; })();
|
|
18217
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadMultiSelectListFieldComponent, selectors: [["ccd-read-multi-select-list-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls:
|
|
18218
|
-
i0.ɵɵ
|
|
18225
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadMultiSelectListFieldComponent, selectors: [["ccd-read-multi-select-list-field"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 3, vars: 2, consts: [["id", "multi-select-list", 1, "hide-table-caption"], ["class", "multi-select-list-field-table", 4, "ngIf"], [1, "multi-select-list-field-table"], [4, "ngFor", "ngForOf"], [2, "display", "none"], [1, "text-16"]], template: function ReadMultiSelectListFieldComponent_Template(rf, ctx) { if (rf & 1) {
|
|
18226
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
18227
|
+
i0.ɵɵtext(1);
|
|
18228
|
+
i0.ɵɵelementEnd();
|
|
18229
|
+
i0.ɵɵtemplate(2, ReadMultiSelectListFieldComponent_table_2_Template, 4, 4, "table", 1);
|
|
18219
18230
|
} if (rf & 2) {
|
|
18231
|
+
i0.ɵɵadvance();
|
|
18232
|
+
i0.ɵɵtextInterpolate(ctx.caseField.value[0]);
|
|
18233
|
+
i0.ɵɵadvance();
|
|
18220
18234
|
i0.ɵɵproperty("ngIf", ctx.caseField.value && ctx.caseField.value.length);
|
|
18221
|
-
} }, dependencies: [i5.NgForOf, i5.NgIf, i1.RpxTranslatePipe, FixedListPipe], styles: [".multi-select-list-field-table[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] > td[_ngcontent-%COMP%]{padding:5px 0}.multi-select-list-field-table[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:last-child > td[_ngcontent-%COMP%]{border-bottom:none}.multi-select-list-field-table[_ngcontent-%COMP%] td.collection-actions[_ngcontent-%COMP%]{width:1px;white-space:nowrap}"] });
|
|
18235
|
+
} }, dependencies: [i5.NgForOf, i5.NgIf, i1.RpxTranslatePipe, FixedListPipe], styles: [".multi-select-list-field-table[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] > td[_ngcontent-%COMP%]{padding:5px 0}.multi-select-list-field-table[_ngcontent-%COMP%] tr[_ngcontent-%COMP%]:last-child > td[_ngcontent-%COMP%]{border-bottom:none}.multi-select-list-field-table[_ngcontent-%COMP%] td.collection-actions[_ngcontent-%COMP%]{width:1px;white-space:nowrap}.hide-table-caption[_ngcontent-%COMP%]{position:absolute;visibility:hidden}"] });
|
|
18222
18236
|
}
|
|
18223
18237
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadMultiSelectListFieldComponent, [{
|
|
18224
18238
|
type: Component,
|
|
18225
|
-
args: [{ selector: 'ccd-read-multi-select-list-field', template: "<table *ngIf=\"caseField.value && caseField.value.length\" class=\"multi-select-list-field-table\"\n [attr.aria-describedby]=\"'multi
|
|
18239
|
+
args: [{ selector: 'ccd-read-multi-select-list-field', template: "<div class=\"hide-table-caption\" id=\"multi-select-list\">{{caseField.value[0]}}</div>\n<table *ngIf=\"caseField.value && caseField.value.length\" class=\"multi-select-list-field-table\"\n [attr.aria-describedby]=\"'multi-select-list' | rpxTranslate\">\n <tbody>\n <tr *ngFor=\"let value of caseField.value\">\n <th style=\"display: none;\">​</th>\n <td><span class=\"text-16\">{{ value | ccdFixedList:caseField.field_type.fixed_list_items | rpxTranslate}}</span></td>\n </tr>\n </tbody>\n</table>\n", styles: [".multi-select-list-field-table tr>td{padding:5px 0}.multi-select-list-field-table tr:last-child>td{border-bottom:none}.multi-select-list-field-table td.collection-actions{width:1px;white-space:nowrap}.hide-table-caption{position:absolute;visibility:hidden}\n"] }]
|
|
18226
18240
|
}], null, null); })();
|
|
18227
18241
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ReadMultiSelectListFieldComponent, { className: "ReadMultiSelectListFieldComponent", filePath: "lib/shared/components/palette/multi-select-list/read-multi-select-list-field.component.ts", lineNumber: 9 }); })();
|
|
18228
18242
|
|
|
@@ -21692,11 +21706,12 @@ class FieldReadComponent extends AbstractFieldReadComponent {
|
|
|
21692
21706
|
} if (rf & 2) {
|
|
21693
21707
|
let _t;
|
|
21694
21708
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.fieldContainer = _t.first);
|
|
21695
|
-
} }, inputs: { withLabel: "withLabel", formGroup: "formGroup", caseFields: "caseFields", markdownUseHrefAsRouterLink: "markdownUseHrefAsRouterLink" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 4, vars:
|
|
21709
|
+
} }, inputs: { withLabel: "withLabel", formGroup: "formGroup", caseFields: "caseFields", markdownUseHrefAsRouterLink: "markdownUseHrefAsRouterLink" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 4, vars: 7, consts: [["fieldContainer", ""], [3, "id", "hidden"], [3, "formGroup", "topLevelFormGroup", "caseField", "withLabel", "markdownUseHrefAsRouterLink"]], template: function FieldReadComponent_Template(rf, ctx) { if (rf & 1) {
|
|
21696
21710
|
i0.ɵɵelementStart(0, "div", 1)(1, "ccd-field-read-label", 2);
|
|
21697
21711
|
i0.ɵɵelementContainer(2, null, 0);
|
|
21698
21712
|
i0.ɵɵelementEnd()();
|
|
21699
21713
|
} if (rf & 2) {
|
|
21714
|
+
i0.ɵɵpropertyInterpolate("id", ctx.caseField.id);
|
|
21700
21715
|
i0.ɵɵproperty("hidden", ctx.caseField.hidden);
|
|
21701
21716
|
i0.ɵɵadvance();
|
|
21702
21717
|
i0.ɵɵproperty("formGroup", ctx.formGroup)("topLevelFormGroup", ctx.topLevelFormGroup)("caseField", ctx.caseField)("withLabel", ctx.withLabel)("markdownUseHrefAsRouterLink", ctx.markdownUseHrefAsRouterLink);
|
|
@@ -21704,7 +21719,7 @@ class FieldReadComponent extends AbstractFieldReadComponent {
|
|
|
21704
21719
|
}
|
|
21705
21720
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FieldReadComponent, [{
|
|
21706
21721
|
type: Component,
|
|
21707
|
-
args: [{ selector: 'ccd-field-read', template: "<div [hidden]=\"caseField.hidden\">\n <ccd-field-read-label [formGroup]=\"formGroup\" [topLevelFormGroup]=\"topLevelFormGroup\" [caseField]=\"caseField\" [withLabel]=\"withLabel\" [markdownUseHrefAsRouterLink]=\"markdownUseHrefAsRouterLink\">\n <ng-container #fieldContainer></ng-container>\n </ccd-field-read-label>\n</div>\n" }]
|
|
21722
|
+
args: [{ selector: 'ccd-field-read', template: "<div id=\"{{caseField.id}}\" [hidden]=\"caseField.hidden\">\n <ccd-field-read-label [formGroup]=\"formGroup\" [topLevelFormGroup]=\"topLevelFormGroup\" [caseField]=\"caseField\" [withLabel]=\"withLabel\" [markdownUseHrefAsRouterLink]=\"markdownUseHrefAsRouterLink\">\n <ng-container #fieldContainer></ng-container>\n </ccd-field-read-label>\n</div>\n" }]
|
|
21708
21723
|
}], () => [{ type: i0.ComponentFactoryResolver }, { type: PaletteService }], { withLabel: [{
|
|
21709
21724
|
type: Input
|
|
21710
21725
|
}], formGroup: [{
|
|
@@ -25729,8 +25744,8 @@ class ReadComplexFieldRawComponent extends AbstractFieldReadComponent {
|
|
|
25729
25744
|
const _c0$j = (a0, a1, a2) => [a0, false, undefined, true, a1, undefined, a2];
|
|
25730
25745
|
function ReadComplexFieldTableComponent_ng_container_9_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
25731
25746
|
i0.ɵɵelementContainerStart(0);
|
|
25732
|
-
i0.ɵɵelementStart(1, "tr", 7)(2, "td", 8)(3, "span",
|
|
25733
|
-
i0.ɵɵelement(4, "ccd-field-read",
|
|
25747
|
+
i0.ɵɵelementStart(1, "tr", 7)(2, "td", 8)(3, "span", 9);
|
|
25748
|
+
i0.ɵɵelement(4, "ccd-field-read", 10);
|
|
25734
25749
|
i0.ɵɵelementEnd()()();
|
|
25735
25750
|
i0.ɵɵelementContainerEnd();
|
|
25736
25751
|
} if (rf & 2) {
|
|
@@ -25742,12 +25757,14 @@ function ReadComplexFieldTableComponent_ng_container_9_ng_container_1_Template(r
|
|
|
25742
25757
|
i0.ɵɵproperty("topLevelFormGroup", ctx_r1.topLevelFormGroup)("caseField", field_r1)("context", ctx_r1.context);
|
|
25743
25758
|
} }
|
|
25744
25759
|
function ReadComplexFieldTableComponent_ng_container_9_ng_template_3_Template(rf, ctx) { if (rf & 1) {
|
|
25745
|
-
i0.ɵɵelementStart(0, "tr",
|
|
25760
|
+
i0.ɵɵelementStart(0, "tr", 11)(1, "th", 12)(2, "span", 9);
|
|
25746
25761
|
i0.ɵɵtext(3);
|
|
25747
25762
|
i0.ɵɵpipe(4, "rpxTranslate");
|
|
25748
|
-
i0.ɵɵelementEnd()
|
|
25749
|
-
i0.ɵɵ
|
|
25750
|
-
i0.ɵɵ
|
|
25763
|
+
i0.ɵɵelementEnd();
|
|
25764
|
+
i0.ɵɵtext(5, "\u200B");
|
|
25765
|
+
i0.ɵɵelementEnd();
|
|
25766
|
+
i0.ɵɵelementStart(6, "td")(7, "span", 9);
|
|
25767
|
+
i0.ɵɵelement(8, "ccd-field-read", 10);
|
|
25751
25768
|
i0.ɵɵelementEnd()()();
|
|
25752
25769
|
} if (rf & 2) {
|
|
25753
25770
|
const field_r1 = i0.ɵɵnextContext().$implicit;
|
|
@@ -25755,14 +25772,14 @@ function ReadComplexFieldTableComponent_ng_container_9_ng_template_3_Template(rf
|
|
|
25755
25772
|
i0.ɵɵproperty("hidden", field_r1.hidden);
|
|
25756
25773
|
i0.ɵɵadvance(3);
|
|
25757
25774
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(4, 5, field_r1.label));
|
|
25758
|
-
i0.ɵɵadvance(
|
|
25775
|
+
i0.ɵɵadvance(5);
|
|
25759
25776
|
i0.ɵɵproperty("topLevelFormGroup", ctx_r1.topLevelFormGroup)("caseField", field_r1)("context", ctx_r1.context);
|
|
25760
25777
|
} }
|
|
25761
25778
|
function ReadComplexFieldTableComponent_ng_container_9_Template(rf, ctx) { if (rf & 1) {
|
|
25762
25779
|
i0.ɵɵelementContainerStart(0);
|
|
25763
25780
|
i0.ɵɵtemplate(1, ReadComplexFieldTableComponent_ng_container_9_ng_container_1_Template, 5, 4, "ng-container", 6);
|
|
25764
25781
|
i0.ɵɵpipe(2, "ccdIsCompound");
|
|
25765
|
-
i0.ɵɵtemplate(3, ReadComplexFieldTableComponent_ng_container_9_ng_template_3_Template,
|
|
25782
|
+
i0.ɵɵtemplate(3, ReadComplexFieldTableComponent_ng_container_9_ng_template_3_Template, 9, 7, "ng-template", null, 0, i0.ɵɵtemplateRefExtractor);
|
|
25766
25783
|
i0.ɵɵelementContainerEnd();
|
|
25767
25784
|
} if (rf & 2) {
|
|
25768
25785
|
const field_r1 = ctx.$implicit;
|
|
@@ -25773,7 +25790,7 @@ function ReadComplexFieldTableComponent_ng_container_9_Template(rf, ctx) { if (r
|
|
|
25773
25790
|
class ReadComplexFieldTableComponent extends AbstractFieldReadComponent {
|
|
25774
25791
|
caseFields = [];
|
|
25775
25792
|
static ɵfac = /*@__PURE__*/ (() => { let ɵReadComplexFieldTableComponent_BaseFactory; return function ReadComplexFieldTableComponent_Factory(t) { return (ɵReadComplexFieldTableComponent_BaseFactory || (ɵReadComplexFieldTableComponent_BaseFactory = i0.ɵɵgetInheritedFactory(ReadComplexFieldTableComponent)))(t || ReadComplexFieldTableComponent); }; })();
|
|
25776
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadComplexFieldTableComponent, selectors: [["ccd-read-complex-field-table"]], inputs: { caseFields: "caseFields" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 11, vars:
|
|
25793
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReadComplexFieldTableComponent, selectors: [["ccd-read-complex-field-table"]], inputs: { caseFields: "caseFields" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 11, vars: 18, consts: [["SimpleRow", ""], [1, "complex-panel"], [1, "complex-panel-title"], [1, "text-16", 3, "id"], [1, "complex-panel-table"], [4, "ngFor", "ngForOf"], [4, "ngIf", "ngIfElse"], [1, "complex-panel-compound-field", 3, "hidden"], ["colspan", "2"], [1, "text-16"], [3, "topLevelFormGroup", "caseField", "context"], [1, "complex-panel-simple-field", 3, "hidden"], ["id", "complex-panel-simple-field-label"]], template: function ReadComplexFieldTableComponent_Template(rf, ctx) { if (rf & 1) {
|
|
25777
25794
|
i0.ɵɵelementStart(0, "div", 1)(1, "dl", 2)(2, "dt")(3, "span", 3);
|
|
25778
25795
|
i0.ɵɵtext(4);
|
|
25779
25796
|
i0.ɵɵpipe(5, "rpxTranslate");
|
|
@@ -25785,15 +25802,19 @@ class ReadComplexFieldTableComponent extends AbstractFieldReadComponent {
|
|
|
25785
25802
|
i0.ɵɵpipe(10, "ccdReadFieldsFilter");
|
|
25786
25803
|
i0.ɵɵelementEnd()()();
|
|
25787
25804
|
} if (rf & 2) {
|
|
25788
|
-
i0.ɵɵadvance(
|
|
25789
|
-
i0.ɵɵ
|
|
25790
|
-
i0.ɵɵadvance(
|
|
25791
|
-
i0.ɵɵ
|
|
25805
|
+
i0.ɵɵadvance(3);
|
|
25806
|
+
i0.ɵɵpropertyInterpolate("id", ctx.caseField.id);
|
|
25807
|
+
i0.ɵɵadvance();
|
|
25808
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 4, ctx.caseField.label));
|
|
25809
|
+
i0.ɵɵadvance(3);
|
|
25810
|
+
i0.ɵɵattribute("aria-describedby", ctx.caseField.id);
|
|
25811
|
+
i0.ɵɵadvance(2);
|
|
25812
|
+
i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBindV(10, 6, i0.ɵɵpureFunction3(14, _c0$j, ctx.caseField, ctx.topLevelFormGroup, ctx.idPrefix)));
|
|
25792
25813
|
} }, styles: [".complex-panel[_ngcontent-%COMP%]{margin:13px 0;border:1px solid #bfc1c3}.complex-panel[_ngcontent-%COMP%] .complex-panel-title[_ngcontent-%COMP%]{background-color:#dee0e2;padding:5px 5px 2px;border-bottom:1px solid #bfc1c3;display:block;color:#0b0c0c;font-family:nta,Arial,sans-serif;font-weight:700;text-transform:none;font-size:16px;line-height:1.25}@media (min-width: 641px){.complex-panel[_ngcontent-%COMP%] .complex-panel-title[_ngcontent-%COMP%]{font-size:19px;line-height:1.3157894737}}.complex-panel[_ngcontent-%COMP%] .complex-panel-table[_ngcontent-%COMP%] > tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%] > th[_ngcontent-%COMP%]{vertical-align:top}.complex-panel[_ngcontent-%COMP%] .complex-panel-table[_ngcontent-%COMP%] > tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%]:last-child > th[_ngcontent-%COMP%], .complex-panel[_ngcontent-%COMP%] .complex-panel-table[_ngcontent-%COMP%] > tbody[_ngcontent-%COMP%] > tr[_ngcontent-%COMP%]:last-child > td[_ngcontent-%COMP%]{border-bottom:none}.complex-panel[_ngcontent-%COMP%] .complex-panel-simple-field[_ngcontent-%COMP%] th[_ngcontent-%COMP%]{padding-left:5px;width:295px}.complex-panel[_ngcontent-%COMP%] .complex-panel-compound-field[_ngcontent-%COMP%] td[_ngcontent-%COMP%]{padding:5px}"] });
|
|
25793
25814
|
}
|
|
25794
25815
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReadComplexFieldTableComponent, [{
|
|
25795
25816
|
type: Component,
|
|
25796
|
-
args: [{ selector: 'ccd-read-complex-field-table', template: "<div class=\"complex-panel\">\n <dl class=\"complex-panel-title\"><dt><span class=\"text-16\">{{caseField.label | rpxTranslate}}</span></dt><dd></dd></dl>\n <table class=\"complex-panel-table\" aria-describedby=\"
|
|
25817
|
+
args: [{ selector: 'ccd-read-complex-field-table', template: "<div class=\"complex-panel\">\n <dl class=\"complex-panel-title\"><dt><span id=\"{{caseField.id}}\" class=\"text-16\">{{caseField.label | rpxTranslate}}</span></dt><dd></dd></dl>\n <table class=\"complex-panel-table\" [attr.aria-describedby]=\"caseField.id\">\n <tbody>\n <ng-container *ngFor=\"let field of caseField | ccdReadFieldsFilter:false :undefined :true :topLevelFormGroup: undefined :idPrefix\">\n <ng-container *ngIf=\"(field | ccdIsCompound); else SimpleRow\">\n <tr class=\"complex-panel-compound-field\" [hidden]=\"field.hidden\">\n <td colspan=\"2\">\n <span class=\"text-16\">\n <ccd-field-read [topLevelFormGroup]=\"topLevelFormGroup\"\n [caseField]=\"field\" [context]=\"context\"></ccd-field-read>\n </span>\n </td>\n </tr>\n </ng-container>\n <ng-template #SimpleRow>\n <tr class=\"complex-panel-simple-field\" [hidden]=\"field.hidden\">\n <th id=\"complex-panel-simple-field-label\"><span class=\"text-16\">{{field.label | rpxTranslate}}</span>​</th>\n <td>\n <span class=\"text-16\">\n <ccd-field-read [topLevelFormGroup]=\"topLevelFormGroup\"\n [caseField]=\"field\" [context]=\"context\"></ccd-field-read>\n </span>\n </td>\n </tr>\n </ng-template>\n </ng-container>\n </tbody>\n </table>\n</div>\n", styles: [".complex-panel{margin:13px 0;border:1px solid #bfc1c3}.complex-panel .complex-panel-title{background-color:#dee0e2;padding:5px 5px 2px;border-bottom:1px solid #bfc1c3;display:block;color:#0b0c0c;font-family:nta,Arial,sans-serif;font-weight:700;text-transform:none;font-size:16px;line-height:1.25}@media (min-width: 641px){.complex-panel .complex-panel-title{font-size:19px;line-height:1.3157894737}}.complex-panel .complex-panel-table>tbody>tr>th{vertical-align:top}.complex-panel .complex-panel-table>tbody>tr:last-child>th,.complex-panel .complex-panel-table>tbody>tr:last-child>td{border-bottom:none}.complex-panel .complex-panel-simple-field th{padding-left:5px;width:295px}.complex-panel .complex-panel-compound-field td{padding:5px}\n"] }]
|
|
25797
25818
|
}], null, { caseFields: [{
|
|
25798
25819
|
type: Input
|
|
25799
25820
|
}] }); })();
|
|
@@ -32221,21 +32242,21 @@ function CaseFullAccessViewComponent_ng_container_12_mat_tab_3_Template(rf, ctx)
|
|
|
32221
32242
|
const tab_r6 = ctx.$implicit;
|
|
32222
32243
|
i0.ɵɵproperty("id", tab_r6.id)("label", i0.ɵɵpipeBind1(1, 2, tab_r6.label));
|
|
32223
32244
|
} }
|
|
32224
|
-
function
|
|
32225
|
-
i0.ɵɵelementStart(0, "th",
|
|
32245
|
+
function CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_ng_container_5_tr_4_th_1_Template(rf, ctx) { if (rf & 1) {
|
|
32246
|
+
i0.ɵɵelementStart(0, "th", 38)(1, "div", 39);
|
|
32226
32247
|
i0.ɵɵtext(2);
|
|
32227
32248
|
i0.ɵɵpipe(3, "rpxTranslate");
|
|
32228
32249
|
i0.ɵɵelementEnd()();
|
|
32229
32250
|
} if (rf & 2) {
|
|
32230
32251
|
const field_r7 = i0.ɵɵnextContext(2).$implicit;
|
|
32231
32252
|
i0.ɵɵadvance(2);
|
|
32232
|
-
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 1, field_r7.label), "");
|
|
32253
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 1, field_r7.label), "\u200B");
|
|
32233
32254
|
} }
|
|
32234
|
-
function
|
|
32255
|
+
function CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_ng_container_5_tr_4_Template(rf, ctx) { if (rf & 1) {
|
|
32235
32256
|
i0.ɵɵelementStart(0, "tr");
|
|
32236
|
-
i0.ɵɵtemplate(1,
|
|
32237
|
-
i0.ɵɵelementStart(2, "td",
|
|
32238
|
-
i0.ɵɵelement(4, "ccd-field-read",
|
|
32257
|
+
i0.ɵɵtemplate(1, CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_ng_container_5_tr_4_th_1_Template, 4, 3, "th", 34);
|
|
32258
|
+
i0.ɵɵelementStart(2, "td", 35)(3, "span", 36);
|
|
32259
|
+
i0.ɵɵelement(4, "ccd-field-read", 37);
|
|
32239
32260
|
i0.ɵɵelementEnd()()();
|
|
32240
32261
|
} if (rf & 2) {
|
|
32241
32262
|
const field_r7 = i0.ɵɵnextContext().$implicit;
|
|
@@ -32247,10 +32268,12 @@ function CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_ng_
|
|
|
32247
32268
|
i0.ɵɵadvance(2);
|
|
32248
32269
|
i0.ɵɵproperty("topLevelFormGroup", ctx_r1.formGroup == null ? null : ctx_r1.formGroup.controls["data"])("caseField", field_r7)("caseReference", ctx_r1.caseDetails.case_id)("markdownUseHrefAsRouterLink", ctx_r1.markdownUseHrefAsRouterLink);
|
|
32249
32270
|
} }
|
|
32250
|
-
function
|
|
32251
|
-
i0.ɵɵelementStart(0, "tr",
|
|
32252
|
-
i0.ɵɵelement(3, "ccd-field-read",
|
|
32253
|
-
i0.ɵɵelementEnd()
|
|
32271
|
+
function CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_ng_container_5_tr_5_Template(rf, ctx) { if (rf & 1) {
|
|
32272
|
+
i0.ɵɵelementStart(0, "tr", 40)(1, "th", 35)(2, "span", 36);
|
|
32273
|
+
i0.ɵɵelement(3, "ccd-field-read", 37);
|
|
32274
|
+
i0.ɵɵelementEnd();
|
|
32275
|
+
i0.ɵɵtext(4, "\u200B ");
|
|
32276
|
+
i0.ɵɵelementEnd()();
|
|
32254
32277
|
} if (rf & 2) {
|
|
32255
32278
|
const field_r7 = i0.ɵɵnextContext().$implicit;
|
|
32256
32279
|
const ctx_r1 = i0.ɵɵnextContext(4);
|
|
@@ -32259,12 +32282,12 @@ function CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_ng_
|
|
|
32259
32282
|
i0.ɵɵadvance(2);
|
|
32260
32283
|
i0.ɵɵproperty("topLevelFormGroup", ctx_r1.formGroup.controls["data"])("caseField", field_r7)("caseReference", ctx_r1.caseDetails.case_id)("markdownUseHrefAsRouterLink", ctx_r1.markdownUseHrefAsRouterLink);
|
|
32261
32284
|
} }
|
|
32262
|
-
function
|
|
32285
|
+
function CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_ng_container_5_Template(rf, ctx) { if (rf & 1) {
|
|
32263
32286
|
i0.ɵɵelementContainerStart(0);
|
|
32264
|
-
i0.ɵɵelementStart(1, "div",
|
|
32265
|
-
i0.ɵɵelementContainerStart(2,
|
|
32287
|
+
i0.ɵɵelementStart(1, "div", 30);
|
|
32288
|
+
i0.ɵɵelementContainerStart(2, 31);
|
|
32266
32289
|
i0.ɵɵpipe(3, "ccdIsCompound");
|
|
32267
|
-
i0.ɵɵtemplate(4,
|
|
32290
|
+
i0.ɵɵtemplate(4, CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_ng_container_5_tr_4_Template, 5, 6, "tr", 32)(5, CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_ng_container_5_tr_5_Template, 5, 5, "tr", 33);
|
|
32268
32291
|
i0.ɵɵelementContainerEnd();
|
|
32269
32292
|
i0.ɵɵelementEnd();
|
|
32270
32293
|
i0.ɵɵelementContainerEnd();
|
|
@@ -32281,25 +32304,29 @@ function CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_ng_
|
|
|
32281
32304
|
i0.ɵɵproperty("ngSwitchCase", false);
|
|
32282
32305
|
} }
|
|
32283
32306
|
function CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_Template(rf, ctx) { if (rf & 1) {
|
|
32284
|
-
i0.ɵɵelementStart(0, "
|
|
32285
|
-
i0.ɵɵ
|
|
32286
|
-
i0.ɵɵ
|
|
32287
|
-
i0.ɵɵ
|
|
32288
|
-
i0.ɵɵ
|
|
32289
|
-
i0.ɵɵ
|
|
32307
|
+
i0.ɵɵelementStart(0, "div", 28);
|
|
32308
|
+
i0.ɵɵtext(1);
|
|
32309
|
+
i0.ɵɵpipe(2, "rpxTranslate");
|
|
32310
|
+
i0.ɵɵelementEnd();
|
|
32311
|
+
i0.ɵɵelementStart(3, "table", 29)(4, "tbody");
|
|
32312
|
+
i0.ɵɵtemplate(5, CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_ng_container_5_Template, 6, 8, "ng-container", 19);
|
|
32313
|
+
i0.ɵɵpipe(6, "ccdTabFields");
|
|
32314
|
+
i0.ɵɵpipe(7, "ccdReadFieldsFilter");
|
|
32290
32315
|
i0.ɵɵelementEnd()();
|
|
32291
32316
|
} if (rf & 2) {
|
|
32292
32317
|
const tab_r8 = i0.ɵɵnextContext().$implicit;
|
|
32293
32318
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
32319
|
+
i0.ɵɵadvance();
|
|
32320
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 4, tab_r8.label));
|
|
32321
|
+
i0.ɵɵadvance(2);
|
|
32294
32322
|
i0.ɵɵclassMap(tab_r8.id);
|
|
32295
|
-
i0.ɵɵ
|
|
32296
|
-
i0.ɵɵ
|
|
32297
|
-
i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBindV(5, 8, i0.ɵɵpureFunction2(14, _c1$3, i0.ɵɵpipeBind1(4, 6, tab_r8), ctx_r1.formGroup == null ? null : ctx_r1.formGroup.controls["data"])));
|
|
32323
|
+
i0.ɵɵadvance(2);
|
|
32324
|
+
i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBindV(7, 8, i0.ɵɵpureFunction2(14, _c1$3, i0.ɵɵpipeBind1(6, 6, tab_r8), ctx_r1.formGroup.controls["data"])));
|
|
32298
32325
|
} }
|
|
32299
32326
|
function CaseFullAccessViewComponent_ng_container_12_mat_tab_4_Template(rf, ctx) { if (rf & 1) {
|
|
32300
32327
|
i0.ɵɵelementStart(0, "mat-tab", 26);
|
|
32301
32328
|
i0.ɵɵpipe(1, "rpxTranslate");
|
|
32302
|
-
i0.ɵɵtemplate(2, CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_Template,
|
|
32329
|
+
i0.ɵɵtemplate(2, CaseFullAccessViewComponent_ng_container_12_mat_tab_4_ng_template_2_Template, 8, 17, "ng-template", 27);
|
|
32303
32330
|
i0.ɵɵelementEnd();
|
|
32304
32331
|
} if (rf & 2) {
|
|
32305
32332
|
const tab_r8 = ctx.$implicit;
|
|
@@ -32742,7 +32769,7 @@ class CaseFullAccessViewComponent {
|
|
|
32742
32769
|
} if (rf & 2) {
|
|
32743
32770
|
let _t;
|
|
32744
32771
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.tabGroup = _t.first);
|
|
32745
|
-
} }, inputs: { hasPrint: "hasPrint", hasEventSelector: "hasEventSelector", caseDetails: "caseDetails", prependedTabs: "prependedTabs", appendedTabs: "appendedTabs" }, features: [i0.ɵɵNgOnChangesFeature], decls: 13, vars: 12, consts: [["tabGroup", ""], ["class", "error-summary", "role", "group", "aria-labelledby", "edit-case-event_error-summary-heading", "tabindex", "-1", 4, "ngIf"], [3, "callbackErrorsContext", "triggerTextContinue", "triggerTextIgnore", "callbackErrorsSubject"], [3, "caseId", "displayMode"], [1, "grid-row"], [1, "column-one-half"], [3, "caseDetails"], ["class", "case-viewer-controls", 4, "ngIf"], ["class", "column-one-half", 4, "ngIf"], ["class", "grid-row", 4, "ngIf"], [1, "column-full"], [4, "ngIf"], ["role", "group", "aria-labelledby", "edit-case-event_error-summary-heading", "tabindex", "-1", 1, "error-summary"], ["id", "edit-case-event_error-summary-heading", 1, "heading-h1", "error-summary-heading"], ["id", "edit-case-event_error-summary-body", 1, "govuk-error-summary__body"], ["href", "get-help", "target", "_blank"], ["id", "edit-case-event_error-summary-heading", 1, "heading-h2", "error-summary-heading"], ["class", "error-summary-list", 4, "ngIf"], [1, "error-summary-list"], [4, "ngFor", "ngForOf"], [1, "case-viewer-controls"], ["id", "case-viewer-control-print", "routerLink", "print", 1, "button", "button-secondary"], [3, "onTriggerChange", "onTriggerSubmit", "isDisabled", "triggers", "triggerText", "eventId"], [3, "linkClicked", "notificationBannerConfig"], ["animationDuration", "0ms", 3, "selectedIndexChange", "disableRipple", "selectedIndex"], [3, "id", "label", 4, "ngFor", "ngForOf"], [3, "id", "label"], ["matTabContent", ""], ["ccdLabelSubstitutor", "", 3, "caseField", "contextFields", "hidden"], [3, "ngSwitch"], [4, "ngSwitchCase"], ["class", "compound-field", 4, "ngSwitchCase"], ["id", "case-viewer-field-label", 4, "ngIf"], ["scope", "col", 3, "id"], [1, "text-16"], [3, "topLevelFormGroup", "caseField", "caseReference", "markdownUseHrefAsRouterLink"], ["id", "case-viewer-field-label"], [1, "case-viewer-label", "text-16"], [1, "compound-field"]], template: function CaseFullAccessViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
32772
|
+
} }, inputs: { hasPrint: "hasPrint", hasEventSelector: "hasEventSelector", caseDetails: "caseDetails", prependedTabs: "prependedTabs", appendedTabs: "appendedTabs" }, features: [i0.ɵɵNgOnChangesFeature], decls: 13, vars: 12, consts: [["tabGroup", ""], ["class", "error-summary", "role", "group", "aria-labelledby", "edit-case-event_error-summary-heading", "tabindex", "-1", 4, "ngIf"], [3, "callbackErrorsContext", "triggerTextContinue", "triggerTextIgnore", "callbackErrorsSubject"], [3, "caseId", "displayMode"], [1, "grid-row"], [1, "column-one-half"], [3, "caseDetails"], ["class", "case-viewer-controls", 4, "ngIf"], ["class", "column-one-half", 4, "ngIf"], ["class", "grid-row", 4, "ngIf"], [1, "column-full"], [4, "ngIf"], ["role", "group", "aria-labelledby", "edit-case-event_error-summary-heading", "tabindex", "-1", 1, "error-summary"], ["id", "edit-case-event_error-summary-heading", 1, "heading-h1", "error-summary-heading"], ["id", "edit-case-event_error-summary-body", 1, "govuk-error-summary__body"], ["href", "get-help", "target", "_blank"], ["id", "edit-case-event_error-summary-heading", 1, "heading-h2", "error-summary-heading"], ["class", "error-summary-list", 4, "ngIf"], [1, "error-summary-list"], [4, "ngFor", "ngForOf"], [1, "case-viewer-controls"], ["id", "case-viewer-control-print", "routerLink", "print", 1, "button", "button-secondary"], [3, "onTriggerChange", "onTriggerSubmit", "isDisabled", "triggers", "triggerText", "eventId"], [3, "linkClicked", "notificationBannerConfig"], ["animationDuration", "0ms", 3, "selectedIndexChange", "disableRipple", "selectedIndex"], [3, "id", "label", 4, "ngFor", "ngForOf"], [3, "id", "label"], ["matTabContent", ""], ["id", "table_caption", 1, "hide-table-capion"], ["aria-labelledby", "table_caption"], ["ccdLabelSubstitutor", "", 3, "caseField", "contextFields", "hidden"], [3, "ngSwitch"], [4, "ngSwitchCase"], ["class", "compound-field", 4, "ngSwitchCase"], ["id", "case-viewer-field-label", 4, "ngIf"], ["scope", "col", 3, "id"], [1, "text-16"], [3, "topLevelFormGroup", "caseField", "caseReference", "markdownUseHrefAsRouterLink"], ["id", "case-viewer-field-label"], [1, "case-viewer-label", "text-16"], [1, "compound-field"]], template: function CaseFullAccessViewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
32746
32773
|
i0.ɵɵtemplate(0, CaseFullAccessViewComponent_div_0_Template, 14, 12, "div", 1)(1, CaseFullAccessViewComponent_div_1_Template, 8, 7, "div", 1);
|
|
32747
32774
|
i0.ɵɵelementStart(2, "ccd-callback-errors", 2);
|
|
32748
32775
|
i0.ɵɵlistener("callbackErrorsContext", function CaseFullAccessViewComponent_Template_ccd_callback_errors_callbackErrorsContext_2_listener($event) { return ctx.callbackErrorsNotify($event); });
|
|
@@ -32780,7 +32807,7 @@ class CaseFullAccessViewComponent {
|
|
|
32780
32807
|
}
|
|
32781
32808
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CaseFullAccessViewComponent, [{
|
|
32782
32809
|
type: Component,
|
|
32783
|
-
args: [{ selector: 'ccd-case-full-access-view', template: "<!-- Generic error heading and error message to be displayed only if there are no specific callback errors or warnings, or no error details -->\n<div *ngIf=\"error && !(error.callbackErrors || error.callbackWarnings || error.details)\" class=\"error-summary\"\n
|
|
32810
|
+
args: [{ selector: 'ccd-case-full-access-view', template: "<!-- Generic error heading and error message to be displayed only if there are no specific callback errors or warnings, or no error details -->\n<div *ngIf=\"error && !(error.callbackErrors || error.callbackWarnings || error.details)\" class=\"error-summary\"\n role=\"group\" aria-labelledby=\"edit-case-event_error-summary-heading\" tabindex=\"-1\">\n <h1 class=\"heading-h1 error-summary-heading\" id=\"edit-case-event_error-summary-heading\">\n {{'Something went wrong' | rpxTranslate}}\n </h1>\n <div class=\"govuk-error-summary__body\" id=\"edit-case-event_error-summary-body\">\n <p>{{\"We're working to fix the problem. Try again shortly.\" | rpxTranslate}}</p>\n <p>\n <a href=\"get-help\" target=\"_blank\">\n {{\"Contact us\" | rpxTranslate}}</a> {{\"if you're still having problems.\" | rpxTranslate}}\n </p>\n </div>\n</div>\n<!-- Callback error heading and error message to be displayed if there are specific error details -->\n<div *ngIf=\"error && error.details\" class=\"error-summary\" role=\"group\"\n aria-labelledby=\"edit-case-event_error-summary-heading\" tabindex=\"-1\">\n <h2 class=\"heading-h2 error-summary-heading\" id=\"edit-case-event_error-summary-heading\">\n {{'The callback data failed validation' | rpxTranslate}}\n </h2>\n <p>{{error.message | rpxTranslate}}</p>\n <ul *ngIf=\"error.details?.field_errors\" class=\"error-summary-list\">\n <li *ngFor=\"let fieldError of error.details.field_errors\">\n {{fieldError.message | rpxTranslate}}\n </li>\n </ul>\n</div>\n<ccd-callback-errors [triggerTextContinue]=\"triggerTextStart\" [triggerTextIgnore]=\"triggerTextIgnoreWarnings\"\n [callbackErrorsSubject]=\"callbackErrorsSubject\" (callbackErrorsContext)=\"callbackErrorsNotify($event)\">\n</ccd-callback-errors>\n<ccd-activity [caseId]=\"caseDetails.case_id\" [displayMode]=\"BANNER\"></ccd-activity>\n<div class=\"grid-row\">\n <div class=\"column-one-half\">\n <ccd-case-header [caseDetails]=\"caseDetails\"></ccd-case-header>\n <div class=\"case-viewer-controls\" *ngIf=\"hasPrint && !isDraft() && isPrintEnabled()\">\n <a id=\"case-viewer-control-print\" routerLink=\"print\" class=\"button button-secondary\">{{'Print' |\n rpxTranslate}}</a>\n </div>\n </div>\n <div *ngIf=\"hasEventSelector\" class=\"column-one-half\">\n <ccd-event-trigger [isDisabled]=\"isTriggerButtonDisabled()\" [triggers]=\"caseDetails.triggers\"\n [triggerText]=\"triggerText\" [eventId]=\"eventId\" (onTriggerChange)=\"clearErrorsAndWarnings()\"\n (onTriggerSubmit)=\"applyTrigger($event)\"></ccd-event-trigger>\n </div>\n</div>\n<div class=\"grid-row\" *ngIf=\"activeCaseFlags && !caseFlagsExternalUser\">\n <div class=\"column-full\">\n <ccd-notification-banner [notificationBannerConfig]=\"notificationBannerConfig\"\n (linkClicked)=\"onLinkClicked($event)\">\n </ccd-notification-banner>\n </div>\n</div>\n<div class=\"grid-row\">\n <div class=\"column-full\">\n <ng-container *ngIf=\"hasTabsPresent()\">\n <mat-tab-group #tabGroup animationDuration=\"0ms\" (selectedIndexChange)=\"tabChanged($event)\" [disableRipple]=\"true\"\n [selectedIndex]=\"selectedTabIndex\">\n <mat-tab *ngFor=\"let tab of prependedTabs\" [id]=\"tab.id\" [label]=\"tab.label | rpxTranslate\">\n </mat-tab>\n <mat-tab *ngFor=\"let tab of sortedTabs; let curIdx=index\" [id]=\"tab.id\" [label]=\"tab.label | rpxTranslate\">\n <ng-template matTabContent>\n <div class=\"hide-table-capion\" id=\"table_caption\">{{tab.label | rpxTranslate}}</div>\n <table [class]=\"tab.id\" aria-labelledby=\"table_caption\">\n <tbody>\n\n <ng-container\n *ngFor=\"let field of tab | ccdTabFields | ccdReadFieldsFilter:false :undefined :true : formGroup.controls['data']\">\n <div ccdLabelSubstitutor [caseField]=\"field\" [contextFields]=\"caseFields\" [hidden]=\"field.hidden\">\n <ng-container [ngSwitch]=\"!(field | ccdIsCompound)\">\n <tr *ngSwitchCase=\"true\">\n <th id=\"case-viewer-field-label\" *ngIf=\"!isFieldToHaveNoLabel(field)\">\n <div class=\"case-viewer-label text-16\">\n {{field.label | rpxTranslate}}​</div>\n </th>\n <td [id]=\"'case-viewer-field-read--' + field.id\" scope=\"col\">\n <span class=\"text-16\">\n <ccd-field-read [topLevelFormGroup]=\"formGroup?.controls['data']\" [caseField]=\"field\"\n [caseReference]=\"caseDetails.case_id\"\n [markdownUseHrefAsRouterLink]=\"markdownUseHrefAsRouterLink\">\n </ccd-field-read>\n </span>\n </td>\n </tr>\n <tr *ngSwitchCase=\"false\" class=\"compound-field\">\n <th [id]=\"'case-viewer-field-read--' + field.id\" scope=\"col\">\n <span class=\"text-16\">\n <ccd-field-read [topLevelFormGroup]=\"formGroup.controls['data']\" [caseField]=\"field\"\n [caseReference]=\"caseDetails.case_id\"\n [markdownUseHrefAsRouterLink]=\"markdownUseHrefAsRouterLink\">\n </ccd-field-read>\n </span>​\n </th>\n </tr>\n </ng-container>\n </div>\n </ng-container>\n </tbody>\n </table>\n </ng-template>\n </mat-tab>\n <mat-tab *ngFor=\"let tab of appendedTabs\" [id]=\"tab.id\" [label]=\"tab.label | rpxTranslate\">\n </mat-tab>\n </mat-tab-group>\n <router-outlet\n *ngIf=\"(prependedTabs && prependedTabs.length) || (appendedTabs && appendedTabs.length)\"></router-outlet>\n </ng-container>\n </div>\n</div>", styles: ["th{width:1%;white-space:nowrap;vertical-align:top}.compound-field th{padding:0}.case-viewer-controls{margin-top:47px;margin-bottom:20px}ccd-case-header{float:left;margin-right:10px}ccd-event-trigger{float:right}.case-viewer-label{min-width:300px;white-space:normal}.markdown h3{margin-bottom:0}.hide-table-capion{position:absolute;visibility:hidden}\n"] }]
|
|
32784
32811
|
}], () => [{ type: i0.NgZone }, { type: i1$1.ActivatedRoute }, { type: i1$1.Router }, { type: NavigationNotifierService }, { type: OrderService }, { type: ActivityPollingService }, { type: i1$3.MatLegacyDialog }, { type: AlertService }, { type: DraftService }, { type: ErrorNotifierService }, { type: ConvertHrefToRouterService }, { type: i5.Location }, { type: i0.ChangeDetectorRef }, { type: SessionStorageService }, { type: i1.RpxTranslatePipe }], { hasPrint: [{
|
|
32785
32812
|
type: Input
|
|
32786
32813
|
}], hasEventSelector: [{
|
|
@@ -36096,10 +36123,10 @@ i0.ɵɵsetComponentScope(SearchFiltersWrapperComponent, function () { return [i5
|
|
|
36096
36123
|
const _c0 = (a0, a1, a2) => ({ itemsPerPage: a0, currentPage: a1, totalItems: a2 });
|
|
36097
36124
|
const _c1 = () => ["value"];
|
|
36098
36125
|
function SearchResultComponent_table_0_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
36099
|
-
i0.ɵɵelementStart(0, "div",
|
|
36126
|
+
i0.ɵɵelementStart(0, "div", 13)(1, "span", 14);
|
|
36100
36127
|
i0.ɵɵtext(2, "!");
|
|
36101
36128
|
i0.ɵɵelementEnd();
|
|
36102
|
-
i0.ɵɵelementStart(3, "strong",
|
|
36129
|
+
i0.ɵɵelementStart(3, "strong", 15)(4, "span", 16);
|
|
36103
36130
|
i0.ɵɵtext(5);
|
|
36104
36131
|
i0.ɵɵpipe(6, "rpxTranslate");
|
|
36105
36132
|
i0.ɵɵelementEnd();
|
|
@@ -36116,23 +36143,23 @@ function SearchResultComponent_table_0_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
|
36116
36143
|
i0.ɵɵtextInterpolate3(" ", i0.ɵɵpipeBind1(8, 6, "The total size of the result set is"), " ", i0.ɵɵpipeBind1(9, 8, ctx_r0.paginationMetadata.totalResultsCount), ". ", i0.ɵɵpipeBind1(10, 10, "Only the first 10,000 records are available for display."), " ");
|
|
36117
36144
|
} }
|
|
36118
36145
|
function SearchResultComponent_table_0_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
36119
|
-
i0.ɵɵelementStart(0, "div",
|
|
36146
|
+
i0.ɵɵelementStart(0, "div", 17);
|
|
36120
36147
|
i0.ɵɵelement(1, "output");
|
|
36121
36148
|
i0.ɵɵpipe(2, "rpxTranslate");
|
|
36122
|
-
i0.ɵɵelementStart(3, "span",
|
|
36149
|
+
i0.ɵɵelementStart(3, "span", 18);
|
|
36123
36150
|
i0.ɵɵtext(4);
|
|
36124
36151
|
i0.ɵɵpipe(5, "rpxTranslate");
|
|
36125
|
-
i0.ɵɵelementStart(6, "span",
|
|
36152
|
+
i0.ɵɵelementStart(6, "span", 19);
|
|
36126
36153
|
i0.ɵɵtext(7);
|
|
36127
36154
|
i0.ɵɵelementEnd();
|
|
36128
36155
|
i0.ɵɵtext(8);
|
|
36129
36156
|
i0.ɵɵpipe(9, "rpxTranslate");
|
|
36130
|
-
i0.ɵɵelementStart(10, "span",
|
|
36157
|
+
i0.ɵɵelementStart(10, "span", 19);
|
|
36131
36158
|
i0.ɵɵtext(11);
|
|
36132
36159
|
i0.ɵɵelementEnd();
|
|
36133
36160
|
i0.ɵɵtext(12);
|
|
36134
36161
|
i0.ɵɵpipe(13, "rpxTranslate");
|
|
36135
|
-
i0.ɵɵelementStart(14, "span",
|
|
36162
|
+
i0.ɵɵelementStart(14, "span", 19);
|
|
36136
36163
|
i0.ɵɵtext(15);
|
|
36137
36164
|
i0.ɵɵelementEnd();
|
|
36138
36165
|
i0.ɵɵtext(16);
|
|
@@ -36159,9 +36186,9 @@ function SearchResultComponent_table_0_div_6_Template(rf, ctx) { if (rf & 1) {
|
|
|
36159
36186
|
} }
|
|
36160
36187
|
function SearchResultComponent_table_0_div_7_Template(rf, ctx) { if (rf & 1) {
|
|
36161
36188
|
const _r2 = i0.ɵɵgetCurrentView();
|
|
36162
|
-
i0.ɵɵelementStart(0, "div",
|
|
36189
|
+
i0.ɵɵelementStart(0, "div", 20);
|
|
36163
36190
|
i0.ɵɵpipe(1, "rpxTranslate");
|
|
36164
|
-
i0.ɵɵelementStart(2, "span")(3, "a",
|
|
36191
|
+
i0.ɵɵelementStart(2, "span")(3, "a", 21);
|
|
36165
36192
|
i0.ɵɵlistener("click", function SearchResultComponent_table_0_div_7_Template_a_click_3_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.clearSelection()); });
|
|
36166
36193
|
i0.ɵɵtext(4);
|
|
36167
36194
|
i0.ɵɵpipe(5, "rpxTranslate");
|
|
@@ -36173,10 +36200,10 @@ function SearchResultComponent_table_0_div_7_Template(rf, ctx) { if (rf & 1) {
|
|
|
36173
36200
|
} }
|
|
36174
36201
|
function SearchResultComponent_table_0_th_10_Template(rf, ctx) { if (rf & 1) {
|
|
36175
36202
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
36176
|
-
i0.ɵɵelementStart(0, "th",
|
|
36203
|
+
i0.ɵɵelementStart(0, "th", 22)(1, "div", 23)(2, "input", 24);
|
|
36177
36204
|
i0.ɵɵlistener("change", function SearchResultComponent_table_0_th_10_Template_input_change_2_listener() { i0.ɵɵrestoreView(_r3); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.selectAll()); });
|
|
36178
36205
|
i0.ɵɵelementEnd();
|
|
36179
|
-
i0.ɵɵelement(3, "label",
|
|
36206
|
+
i0.ɵɵelement(3, "label", 25);
|
|
36180
36207
|
i0.ɵɵelementEnd()();
|
|
36181
36208
|
} if (rf & 2) {
|
|
36182
36209
|
const ctx_r0 = i0.ɵɵnextContext(2);
|
|
@@ -36185,7 +36212,7 @@ function SearchResultComponent_table_0_th_10_Template(rf, ctx) { if (rf & 1) {
|
|
|
36185
36212
|
} }
|
|
36186
36213
|
function SearchResultComponent_table_0_th_11_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
36187
36214
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
36188
|
-
i0.ɵɵelementStart(0, "div",
|
|
36215
|
+
i0.ɵɵelementStart(0, "div", 29)(1, "a", 30);
|
|
36189
36216
|
i0.ɵɵlistener("click", function SearchResultComponent_table_0_th_11_div_5_Template_a_click_1_listener() { i0.ɵɵrestoreView(_r6); const col_r5 = i0.ɵɵnextContext().$implicit; const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.sort(col_r5)); });
|
|
36190
36217
|
i0.ɵɵelementEnd()();
|
|
36191
36218
|
} if (rf & 2) {
|
|
@@ -36196,12 +36223,12 @@ function SearchResultComponent_table_0_th_11_div_5_Template(rf, ctx) { if (rf &
|
|
|
36196
36223
|
} }
|
|
36197
36224
|
function SearchResultComponent_table_0_th_11_Template(rf, ctx) { if (rf & 1) {
|
|
36198
36225
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
36199
|
-
i0.ɵɵelementStart(0, "th",
|
|
36226
|
+
i0.ɵɵelementStart(0, "th", 26)(1, "div")(2, "div", 27);
|
|
36200
36227
|
i0.ɵɵlistener("click", function SearchResultComponent_table_0_th_11_Template_div_click_2_listener() { const col_r5 = i0.ɵɵrestoreView(_r4).$implicit; const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.sort(col_r5)); })("keyup", function SearchResultComponent_table_0_th_11_Template_div_keyup_2_listener() { i0.ɵɵrestoreView(_r4); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.noop()); });
|
|
36201
36228
|
i0.ɵɵtext(3);
|
|
36202
36229
|
i0.ɵɵpipe(4, "rpxTranslate");
|
|
36203
36230
|
i0.ɵɵelementEnd();
|
|
36204
|
-
i0.ɵɵtemplate(5, SearchResultComponent_table_0_th_11_div_5_Template, 2, 1, "div",
|
|
36231
|
+
i0.ɵɵtemplate(5, SearchResultComponent_table_0_th_11_div_5_Template, 2, 1, "div", 28);
|
|
36205
36232
|
i0.ɵɵelementEnd()();
|
|
36206
36233
|
} if (rf & 2) {
|
|
36207
36234
|
const col_r5 = ctx.$implicit;
|
|
@@ -36213,16 +36240,16 @@ function SearchResultComponent_table_0_th_11_Template(rf, ctx) { if (rf & 1) {
|
|
|
36213
36240
|
i0.ɵɵproperty("ngIf", ctx_r0.comparator(col_r5));
|
|
36214
36241
|
} }
|
|
36215
36242
|
function SearchResultComponent_table_0_th_12_Template(rf, ctx) { if (rf & 1) {
|
|
36216
|
-
i0.ɵɵelementStart(0, "th",
|
|
36243
|
+
i0.ɵɵelementStart(0, "th", 31);
|
|
36217
36244
|
i0.ɵɵtext(1, "\u200B");
|
|
36218
36245
|
i0.ɵɵelementEnd();
|
|
36219
36246
|
} }
|
|
36220
36247
|
function SearchResultComponent_table_0_ng_container_14_tr_1_td_1_Template(rf, ctx) { if (rf & 1) {
|
|
36221
36248
|
const _r7 = i0.ɵɵgetCurrentView();
|
|
36222
|
-
i0.ɵɵelementStart(0, "td",
|
|
36249
|
+
i0.ɵɵelementStart(0, "td", 22)(1, "div", 23)(2, "input", 34);
|
|
36223
36250
|
i0.ɵɵlistener("change", function SearchResultComponent_table_0_ng_container_14_tr_1_td_1_Template_input_change_2_listener() { i0.ɵɵrestoreView(_r7); const result_r8 = i0.ɵɵnextContext().$implicit; const ctx_r0 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r0.changeSelection(result_r8)); });
|
|
36224
36251
|
i0.ɵɵelementEnd();
|
|
36225
|
-
i0.ɵɵelement(3, "label",
|
|
36252
|
+
i0.ɵɵelement(3, "label", 35);
|
|
36226
36253
|
i0.ɵɵelementEnd()();
|
|
36227
36254
|
} if (rf & 2) {
|
|
36228
36255
|
const result_r8 = i0.ɵɵnextContext().$implicit;
|
|
@@ -36235,7 +36262,7 @@ function SearchResultComponent_table_0_ng_container_14_tr_1_td_1_Template(rf, ct
|
|
|
36235
36262
|
i0.ɵɵpropertyInterpolate1("for", "select-", result_r8.case_id, "");
|
|
36236
36263
|
} }
|
|
36237
36264
|
function SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_ng_container_2_ccd_field_read_1_Template(rf, ctx) { if (rf & 1) {
|
|
36238
|
-
i0.ɵɵelement(0, "ccd-field-read",
|
|
36265
|
+
i0.ɵɵelement(0, "ccd-field-read", 43);
|
|
36239
36266
|
} if (rf & 2) {
|
|
36240
36267
|
const col_r9 = i0.ɵɵnextContext(3).$implicit;
|
|
36241
36268
|
const result_r8 = i0.ɵɵnextContext().$implicit;
|
|
@@ -36250,8 +36277,8 @@ function SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_ng_containe
|
|
|
36250
36277
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(1, 1, result_r8.case_id));
|
|
36251
36278
|
} }
|
|
36252
36279
|
function SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
36253
|
-
i0.ɵɵelementContainerStart(0,
|
|
36254
|
-
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_ng_container_2_ccd_field_read_1_Template, 1, 4, "ccd-field-read",
|
|
36280
|
+
i0.ɵɵelementContainerStart(0, 41);
|
|
36281
|
+
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_ng_container_2_ccd_field_read_1_Template, 1, 4, "ccd-field-read", 42)(2, SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_ng_container_2_ng_template_2_Template, 2, 3, "ng-template", null, 0, i0.ɵɵtemplateRefExtractor);
|
|
36255
36282
|
i0.ɵɵelementContainerEnd();
|
|
36256
36283
|
} if (rf & 2) {
|
|
36257
36284
|
const case_reference_r10 = i0.ɵɵreference(3);
|
|
@@ -36262,9 +36289,9 @@ function SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_ng_containe
|
|
|
36262
36289
|
i0.ɵɵproperty("ngIf", ctx_r0.draftPrefixOrGet(col_r9, result_r8))("ngIfElse", case_reference_r10);
|
|
36263
36290
|
} }
|
|
36264
36291
|
function SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_Template(rf, ctx) { if (rf & 1) {
|
|
36265
|
-
i0.ɵɵelementStart(0, "a",
|
|
36292
|
+
i0.ɵɵelementStart(0, "a", 39);
|
|
36266
36293
|
i0.ɵɵpipe(1, "ccdCaseReference");
|
|
36267
|
-
i0.ɵɵtemplate(2, SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_ng_container_2_Template, 4, 2, "ng-container",
|
|
36294
|
+
i0.ɵɵtemplate(2, SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_ng_container_2_Template, 4, 2, "ng-container", 40);
|
|
36268
36295
|
i0.ɵɵelementEnd();
|
|
36269
36296
|
} if (rf & 2) {
|
|
36270
36297
|
const result_r8 = i0.ɵɵnextContext(2).$implicit;
|
|
@@ -36275,8 +36302,8 @@ function SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_Template(rf
|
|
|
36275
36302
|
i0.ɵɵproperty("ngIf", !ctx_r0.hideRows);
|
|
36276
36303
|
} }
|
|
36277
36304
|
function SearchResultComponent_table_0_ng_container_14_tr_1_td_2_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
36278
|
-
i0.ɵɵelementStart(0, "div",
|
|
36279
|
-
i0.ɵɵelement(1, "ccd-field-read",
|
|
36305
|
+
i0.ɵɵelementStart(0, "div", 41);
|
|
36306
|
+
i0.ɵɵelement(1, "ccd-field-read", 43);
|
|
36280
36307
|
i0.ɵɵelementEnd();
|
|
36281
36308
|
} if (rf & 2) {
|
|
36282
36309
|
const col_r9 = i0.ɵɵnextContext().$implicit;
|
|
@@ -36287,8 +36314,8 @@ function SearchResultComponent_table_0_ng_container_14_tr_1_td_2_div_2_Template(
|
|
|
36287
36314
|
i0.ɵɵproperty("caseField", result_r8.columns[col_r9.case_field_id])("contextFields", result_r8.hydrated_case_fields)("elementsToSubstitute", i0.ɵɵpureFunction0(5, _c1));
|
|
36288
36315
|
} }
|
|
36289
36316
|
function SearchResultComponent_table_0_ng_container_14_tr_1_td_2_Template(rf, ctx) { if (rf & 1) {
|
|
36290
|
-
i0.ɵɵelementStart(0, "td",
|
|
36291
|
-
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_Template, 3, 6, "a",
|
|
36317
|
+
i0.ɵɵelementStart(0, "td", 36);
|
|
36318
|
+
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_14_tr_1_td_2_a_1_Template, 3, 6, "a", 37)(2, SearchResultComponent_table_0_ng_container_14_tr_1_td_2_div_2_Template, 2, 6, "div", 38);
|
|
36292
36319
|
i0.ɵɵelementEnd();
|
|
36293
36320
|
} if (rf & 2) {
|
|
36294
36321
|
const colIndex_r11 = ctx.index;
|
|
@@ -36299,7 +36326,7 @@ function SearchResultComponent_table_0_ng_container_14_tr_1_td_2_Template(rf, ct
|
|
|
36299
36326
|
} }
|
|
36300
36327
|
function SearchResultComponent_table_0_ng_container_14_tr_1_td_3_Template(rf, ctx) { if (rf & 1) {
|
|
36301
36328
|
i0.ɵɵelementStart(0, "td")(1, "div");
|
|
36302
|
-
i0.ɵɵelement(2, "ccd-activity",
|
|
36329
|
+
i0.ɵɵelement(2, "ccd-activity", 44);
|
|
36303
36330
|
i0.ɵɵelementEnd()();
|
|
36304
36331
|
} if (rf & 2) {
|
|
36305
36332
|
const result_r8 = i0.ɵɵnextContext().$implicit;
|
|
@@ -36311,7 +36338,7 @@ function SearchResultComponent_table_0_ng_container_14_tr_1_td_3_Template(rf, ct
|
|
|
36311
36338
|
} }
|
|
36312
36339
|
function SearchResultComponent_table_0_ng_container_14_tr_1_Template(rf, ctx) { if (rf & 1) {
|
|
36313
36340
|
i0.ɵɵelementStart(0, "tr");
|
|
36314
|
-
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_14_tr_1_td_1_Template, 4, 8, "td",
|
|
36341
|
+
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_14_tr_1_td_1_Template, 4, 8, "td", 10)(2, SearchResultComponent_table_0_ng_container_14_tr_1_td_2_Template, 3, 2, "td", 33)(3, SearchResultComponent_table_0_ng_container_14_tr_1_td_3_Template, 3, 4, "td", 1);
|
|
36315
36342
|
i0.ɵɵelementEnd();
|
|
36316
36343
|
} if (rf & 2) {
|
|
36317
36344
|
const ctx_r0 = i0.ɵɵnextContext(3);
|
|
@@ -36324,7 +36351,7 @@ function SearchResultComponent_table_0_ng_container_14_tr_1_Template(rf, ctx) {
|
|
|
36324
36351
|
} }
|
|
36325
36352
|
function SearchResultComponent_table_0_ng_container_14_Template(rf, ctx) { if (rf & 1) {
|
|
36326
36353
|
i0.ɵɵelementContainerStart(0);
|
|
36327
|
-
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_14_tr_1_Template, 4, 3, "tr",
|
|
36354
|
+
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_14_tr_1_Template, 4, 3, "tr", 32);
|
|
36328
36355
|
i0.ɵɵpipe(2, "paginate");
|
|
36329
36356
|
i0.ɵɵelementContainerEnd();
|
|
36330
36357
|
} if (rf & 2) {
|
|
@@ -36334,10 +36361,10 @@ function SearchResultComponent_table_0_ng_container_14_Template(rf, ctx) { if (r
|
|
|
36334
36361
|
} }
|
|
36335
36362
|
function SearchResultComponent_table_0_ng_container_15_tr_1_td_1_Template(rf, ctx) { if (rf & 1) {
|
|
36336
36363
|
const _r12 = i0.ɵɵgetCurrentView();
|
|
36337
|
-
i0.ɵɵelementStart(0, "td",
|
|
36364
|
+
i0.ɵɵelementStart(0, "td", 22)(1, "div", 23)(2, "input", 45);
|
|
36338
36365
|
i0.ɵɵlistener("change", function SearchResultComponent_table_0_ng_container_15_tr_1_td_1_Template_input_change_2_listener() { i0.ɵɵrestoreView(_r12); const result_r13 = i0.ɵɵnextContext().$implicit; const ctx_r0 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r0.changeSelection(result_r13)); })("keyup", function SearchResultComponent_table_0_ng_container_15_tr_1_td_1_Template_input_keyup_2_listener($event) { i0.ɵɵrestoreView(_r12); const result_r13 = i0.ɵɵnextContext().$implicit; const ctx_r0 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r0.onKeyUp($event, result_r13)); });
|
|
36339
36366
|
i0.ɵɵelementEnd();
|
|
36340
|
-
i0.ɵɵelement(3, "label",
|
|
36367
|
+
i0.ɵɵelement(3, "label", 35);
|
|
36341
36368
|
i0.ɵɵelementEnd()();
|
|
36342
36369
|
} if (rf & 2) {
|
|
36343
36370
|
const result_r13 = i0.ɵɵnextContext().$implicit;
|
|
@@ -36350,7 +36377,7 @@ function SearchResultComponent_table_0_ng_container_15_tr_1_td_1_Template(rf, ct
|
|
|
36350
36377
|
i0.ɵɵpropertyInterpolate1("for", "select-", result_r13.case_id, "");
|
|
36351
36378
|
} }
|
|
36352
36379
|
function SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_ng_container_2_ccd_field_read_1_Template(rf, ctx) { if (rf & 1) {
|
|
36353
|
-
i0.ɵɵelement(0, "ccd-field-read",
|
|
36380
|
+
i0.ɵɵelement(0, "ccd-field-read", 43);
|
|
36354
36381
|
} if (rf & 2) {
|
|
36355
36382
|
const col_r14 = i0.ɵɵnextContext(3).$implicit;
|
|
36356
36383
|
const result_r13 = i0.ɵɵnextContext().$implicit;
|
|
@@ -36365,8 +36392,8 @@ function SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_ng_containe
|
|
|
36365
36392
|
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(1, 1, result_r13.case_id));
|
|
36366
36393
|
} }
|
|
36367
36394
|
function SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
36368
|
-
i0.ɵɵelementContainerStart(0,
|
|
36369
|
-
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_ng_container_2_ccd_field_read_1_Template, 1, 4, "ccd-field-read",
|
|
36395
|
+
i0.ɵɵelementContainerStart(0, 41);
|
|
36396
|
+
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_ng_container_2_ccd_field_read_1_Template, 1, 4, "ccd-field-read", 42)(2, SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_ng_container_2_ng_template_2_Template, 2, 3, "ng-template", null, 0, i0.ɵɵtemplateRefExtractor);
|
|
36370
36397
|
i0.ɵɵelementContainerEnd();
|
|
36371
36398
|
} if (rf & 2) {
|
|
36372
36399
|
const case_reference_r15 = i0.ɵɵreference(3);
|
|
@@ -36377,9 +36404,9 @@ function SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_ng_containe
|
|
|
36377
36404
|
i0.ɵɵproperty("ngIf", ctx_r0.draftPrefixOrGet(col_r14, result_r13))("ngIfElse", case_reference_r15);
|
|
36378
36405
|
} }
|
|
36379
36406
|
function SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_Template(rf, ctx) { if (rf & 1) {
|
|
36380
|
-
i0.ɵɵelementStart(0, "a",
|
|
36407
|
+
i0.ɵɵelementStart(0, "a", 39);
|
|
36381
36408
|
i0.ɵɵpipe(1, "ccdCaseReference");
|
|
36382
|
-
i0.ɵɵtemplate(2, SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_ng_container_2_Template, 4, 2, "ng-container",
|
|
36409
|
+
i0.ɵɵtemplate(2, SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_ng_container_2_Template, 4, 2, "ng-container", 40);
|
|
36383
36410
|
i0.ɵɵelementEnd();
|
|
36384
36411
|
} if (rf & 2) {
|
|
36385
36412
|
const result_r13 = i0.ɵɵnextContext(2).$implicit;
|
|
@@ -36390,8 +36417,8 @@ function SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_Template(rf
|
|
|
36390
36417
|
i0.ɵɵproperty("ngIf", !ctx_r0.hideRows);
|
|
36391
36418
|
} }
|
|
36392
36419
|
function SearchResultComponent_table_0_ng_container_15_tr_1_td_2_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
36393
|
-
i0.ɵɵelementStart(0, "div",
|
|
36394
|
-
i0.ɵɵelement(1, "ccd-field-read",
|
|
36420
|
+
i0.ɵɵelementStart(0, "div", 41);
|
|
36421
|
+
i0.ɵɵelement(1, "ccd-field-read", 43);
|
|
36395
36422
|
i0.ɵɵelementEnd();
|
|
36396
36423
|
} if (rf & 2) {
|
|
36397
36424
|
const col_r14 = i0.ɵɵnextContext().$implicit;
|
|
@@ -36402,8 +36429,8 @@ function SearchResultComponent_table_0_ng_container_15_tr_1_td_2_div_2_Template(
|
|
|
36402
36429
|
i0.ɵɵproperty("caseField", result_r13.columns[col_r14.case_field_id])("contextFields", result_r13.hydrated_case_fields)("elementsToSubstitute", i0.ɵɵpureFunction0(5, _c1));
|
|
36403
36430
|
} }
|
|
36404
36431
|
function SearchResultComponent_table_0_ng_container_15_tr_1_td_2_Template(rf, ctx) { if (rf & 1) {
|
|
36405
|
-
i0.ɵɵelementStart(0, "td",
|
|
36406
|
-
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_Template, 3, 6, "a",
|
|
36432
|
+
i0.ɵɵelementStart(0, "td", 36);
|
|
36433
|
+
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_15_tr_1_td_2_a_1_Template, 3, 6, "a", 37)(2, SearchResultComponent_table_0_ng_container_15_tr_1_td_2_div_2_Template, 2, 6, "div", 38);
|
|
36407
36434
|
i0.ɵɵelementEnd();
|
|
36408
36435
|
} if (rf & 2) {
|
|
36409
36436
|
const colIndex_r16 = ctx.index;
|
|
@@ -36414,7 +36441,7 @@ function SearchResultComponent_table_0_ng_container_15_tr_1_td_2_Template(rf, ct
|
|
|
36414
36441
|
} }
|
|
36415
36442
|
function SearchResultComponent_table_0_ng_container_15_tr_1_td_3_Template(rf, ctx) { if (rf & 1) {
|
|
36416
36443
|
i0.ɵɵelementStart(0, "td")(1, "div");
|
|
36417
|
-
i0.ɵɵelement(2, "ccd-activity",
|
|
36444
|
+
i0.ɵɵelement(2, "ccd-activity", 44);
|
|
36418
36445
|
i0.ɵɵelementEnd()();
|
|
36419
36446
|
} if (rf & 2) {
|
|
36420
36447
|
const result_r13 = i0.ɵɵnextContext().$implicit;
|
|
@@ -36426,7 +36453,7 @@ function SearchResultComponent_table_0_ng_container_15_tr_1_td_3_Template(rf, ct
|
|
|
36426
36453
|
} }
|
|
36427
36454
|
function SearchResultComponent_table_0_ng_container_15_tr_1_Template(rf, ctx) { if (rf & 1) {
|
|
36428
36455
|
i0.ɵɵelementStart(0, "tr");
|
|
36429
|
-
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_15_tr_1_td_1_Template, 4, 8, "td",
|
|
36456
|
+
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_15_tr_1_td_1_Template, 4, 8, "td", 10)(2, SearchResultComponent_table_0_ng_container_15_tr_1_td_2_Template, 3, 2, "td", 33)(3, SearchResultComponent_table_0_ng_container_15_tr_1_td_3_Template, 3, 4, "td", 1);
|
|
36430
36457
|
i0.ɵɵelementEnd();
|
|
36431
36458
|
} if (rf & 2) {
|
|
36432
36459
|
const ctx_r0 = i0.ɵɵnextContext(3);
|
|
@@ -36439,7 +36466,7 @@ function SearchResultComponent_table_0_ng_container_15_tr_1_Template(rf, ctx) {
|
|
|
36439
36466
|
} }
|
|
36440
36467
|
function SearchResultComponent_table_0_ng_container_15_Template(rf, ctx) { if (rf & 1) {
|
|
36441
36468
|
i0.ɵɵelementContainerStart(0);
|
|
36442
|
-
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_15_tr_1_Template, 4, 3, "tr",
|
|
36469
|
+
i0.ɵɵtemplate(1, SearchResultComponent_table_0_ng_container_15_tr_1_Template, 4, 3, "tr", 32);
|
|
36443
36470
|
i0.ɵɵpipe(2, "ccdSortSearchResult");
|
|
36444
36471
|
i0.ɵɵpipe(3, "paginate");
|
|
36445
36472
|
i0.ɵɵelementContainerEnd();
|
|
@@ -36449,14 +36476,14 @@ function SearchResultComponent_table_0_ng_container_15_Template(rf, ctx) { if (r
|
|
|
36449
36476
|
i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind2(3, 4, i0.ɵɵpipeBind2(2, 1, ctx_r0.resultView.results, ctx_r0.sortParameters), i0.ɵɵpureFunction3(7, _c0, ctx_r0.paginationPageSize, ctx_r0.selected.page, ctx_r0.resultTotal)));
|
|
36450
36477
|
} }
|
|
36451
36478
|
function SearchResultComponent_table_0_Template(rf, ctx) { if (rf & 1) {
|
|
36452
|
-
i0.ɵɵelementStart(0, "table")(1, "caption")(2, "h2",
|
|
36479
|
+
i0.ɵɵelementStart(0, "table")(1, "caption")(2, "h2", 5);
|
|
36453
36480
|
i0.ɵɵtext(3);
|
|
36454
36481
|
i0.ɵɵpipe(4, "rpxTranslate");
|
|
36455
36482
|
i0.ɵɵelementEnd();
|
|
36456
|
-
i0.ɵɵtemplate(5, SearchResultComponent_table_0_div_5_Template, 11, 12, "div",
|
|
36483
|
+
i0.ɵɵtemplate(5, SearchResultComponent_table_0_div_5_Template, 11, 12, "div", 6)(6, SearchResultComponent_table_0_div_6_Template, 18, 18, "div", 7)(7, SearchResultComponent_table_0_div_7_Template, 6, 6, "div", 8);
|
|
36457
36484
|
i0.ɵɵelementEnd();
|
|
36458
|
-
i0.ɵɵelementStart(8, "thead")(9, "tr",
|
|
36459
|
-
i0.ɵɵtemplate(10, SearchResultComponent_table_0_th_10_Template, 4, 2, "th",
|
|
36485
|
+
i0.ɵɵelementStart(8, "thead")(9, "tr", 9);
|
|
36486
|
+
i0.ɵɵtemplate(10, SearchResultComponent_table_0_th_10_Template, 4, 2, "th", 10)(11, SearchResultComponent_table_0_th_11_Template, 6, 5, "th", 11)(12, SearchResultComponent_table_0_th_12_Template, 2, 0, "th", 12);
|
|
36460
36487
|
i0.ɵɵelementEnd()();
|
|
36461
36488
|
i0.ɵɵelementStart(13, "tbody");
|
|
36462
36489
|
i0.ɵɵtemplate(14, SearchResultComponent_table_0_ng_container_14_Template, 3, 8, "ng-container", 1)(15, SearchResultComponent_table_0_ng_container_15_Template, 4, 11, "ng-container", 1);
|
|
@@ -36484,7 +36511,7 @@ function SearchResultComponent_table_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
36484
36511
|
} }
|
|
36485
36512
|
function SearchResultComponent_ccd_pagination_1_Template(rf, ctx) { if (rf & 1) {
|
|
36486
36513
|
const _r17 = i0.ɵɵgetCurrentView();
|
|
36487
|
-
i0.ɵɵelementStart(0, "ccd-pagination",
|
|
36514
|
+
i0.ɵɵelementStart(0, "ccd-pagination", 46);
|
|
36488
36515
|
i0.ɵɵlistener("pageChange", function SearchResultComponent_ccd_pagination_1_Template_ccd_pagination_pageChange_0_listener($event) { i0.ɵɵrestoreView(_r17); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.goToPage($event)); });
|
|
36489
36516
|
i0.ɵɵelementEnd();
|
|
36490
36517
|
} if (rf & 2) {
|
|
@@ -36492,15 +36519,18 @@ function SearchResultComponent_ccd_pagination_1_Template(rf, ctx) { if (rf & 1)
|
|
|
36492
36519
|
i0.ɵɵproperty("visibilityLabel", ctx_r0.hideRows ? "hidden" : "visible")("autoHide", true)("maxSize", 8)("screenReaderPaginationLabel", "Pagination")("screenReaderPageLabel", ctx_r0.page)("screenReaderCurrentLabel", "You're on page");
|
|
36493
36520
|
} }
|
|
36494
36521
|
function SearchResultComponent_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
36495
|
-
i0.ɵɵelementStart(0, "div",
|
|
36496
|
-
i0.ɵɵ
|
|
36497
|
-
i0.ɵɵ
|
|
36498
|
-
i0.ɵɵpipe(3, "rpxTranslate");
|
|
36522
|
+
i0.ɵɵelementStart(0, "div", 47);
|
|
36523
|
+
i0.ɵɵtext(1);
|
|
36524
|
+
i0.ɵɵpipe(2, "rpxTranslate");
|
|
36499
36525
|
i0.ɵɵelementEnd();
|
|
36500
36526
|
} if (rf & 2) {
|
|
36501
|
-
i0.ɵɵ
|
|
36502
|
-
i0.ɵɵ
|
|
36503
|
-
|
|
36527
|
+
i0.ɵɵadvance();
|
|
36528
|
+
i0.ɵɵtextInterpolate1("\n", i0.ɵɵpipeBind1(2, 1, "No cases found. Try using different filters."), "\n");
|
|
36529
|
+
} }
|
|
36530
|
+
function SearchResultComponent_span_3_Template(rf, ctx) { if (rf & 1) {
|
|
36531
|
+
i0.ɵɵelementStart(0, "span", 48);
|
|
36532
|
+
i0.ɵɵtext(1, "\u200B");
|
|
36533
|
+
i0.ɵɵelementEnd();
|
|
36504
36534
|
} }
|
|
36505
36535
|
class SearchResultComponent {
|
|
36506
36536
|
activityService;
|
|
@@ -36843,19 +36873,21 @@ class SearchResultComponent {
|
|
|
36843
36873
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
36844
36874
|
noop() { }
|
|
36845
36875
|
static ɵfac = function SearchResultComponent_Factory(t) { return new (t || SearchResultComponent)(i0.ɵɵdirectiveInject(SearchResultViewItemComparatorFactory), i0.ɵɵdirectiveInject(AbstractAppConfig), i0.ɵɵdirectiveInject(ActivityService), i0.ɵɵdirectiveInject(CaseReferencePipe), i0.ɵɵdirectiveInject(PlaceholderService), i0.ɵɵdirectiveInject(BrowserService), i0.ɵɵdirectiveInject(SessionStorageService)); };
|
|
36846
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SearchResultComponent, selectors: [["ccd-search-result"]], inputs: { caseLinkUrlTemplate: "caseLinkUrlTemplate", jurisdiction: "jurisdiction", caseType: "caseType", caseState: "caseState", caseFilterFG: "caseFilterFG", resultView: "resultView", page: "page", paginationMetadata: "paginationMetadata", metadataFields: "metadataFields", selectionEnabled: "selectionEnabled", showOnlySelected: "showOnlySelected", preSelectedCases: "preSelectedCases", consumerSortingEnabled: "consumerSortingEnabled" }, outputs: { selection: "selection", changePage: "changePage", clickCase: "clickCase", sortHandler: "sortHandler" }, features: [i0.ɵɵNgOnChangesFeature], decls:
|
|
36847
|
-
i0.ɵɵtemplate(0, SearchResultComponent_table_0_Template, 16, 11, "table", 1)(1, SearchResultComponent_ccd_pagination_1_Template, 1, 6, "ccd-pagination", 2)(2, SearchResultComponent_div_2_Template,
|
|
36876
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SearchResultComponent, selectors: [["ccd-search-result"]], inputs: { caseLinkUrlTemplate: "caseLinkUrlTemplate", jurisdiction: "jurisdiction", caseType: "caseType", caseState: "caseState", caseFilterFG: "caseFilterFG", resultView: "resultView", page: "page", paginationMetadata: "paginationMetadata", metadataFields: "metadataFields", selectionEnabled: "selectionEnabled", showOnlySelected: "showOnlySelected", preSelectedCases: "preSelectedCases", consumerSortingEnabled: "consumerSortingEnabled" }, outputs: { selection: "selection", changePage: "changePage", clickCase: "clickCase", sortHandler: "sortHandler" }, features: [i0.ɵɵNgOnChangesFeature], decls: 4, vars: 4, consts: [["case_reference", ""], [4, "ngIf"], [3, "visibilityLabel", "autoHide", "maxSize", "screenReaderPaginationLabel", "screenReaderPageLabel", "screenReaderCurrentLabel", "pageChange", 4, "ngIf"], ["id", "no_case_found", "class", "notification", 4, "ngIf"], ["aria-describedby", "no_case_found", 4, "ngIf"], ["id", "search-result-heading__text", "tabindex", "-1", 1, "heading-h2"], ["class", "govuk-warning-text pagination-limit-warning", 4, "ngIf"], ["class", "pagination-top", 4, "ngIf"], ["class", "reset-selection", 4, "ngIf"], ["scope", "row"], ["class", "govuk-table__checkbox", "scope", "col", 4, "ngIf"], ["class", "search-result-column-header", 4, "ngFor", "ngForOf"], ["style", "width: 110px;", 4, "ngIf"], [1, "govuk-warning-text", "pagination-limit-warning"], ["aria-hidden", "true", 1, "govuk-warning-text__icon"], [1, "govuk-warning-text__text"], [1, "govuk-warning-text__assistive"], [1, "pagination-top"], ["id", "search-result-summary__text", 1, "text-16"], [1, "govuk-!-font-weight-bold"], [1, "reset-selection"], ["href", "javascript:void(0)", 1, "search-result-reset-link", 3, "click"], ["scope", "col", 1, "govuk-table__checkbox"], [1, "govuk-checkboxes__item"], ["id", "select-all", "name", "select-all", "type", "checkbox", 1, "govuk-checkboxes__input", 3, "change", "checked", "disabled"], ["for", "select-all", 1, "govuk-label", "govuk-checkboxes__label"], [1, "search-result-column-header"], [1, "search-result-column-label", 3, "click", "keyup"], ["class", "search-result-column-sort", 4, "ngIf"], [1, "search-result-column-sort"], ["href", "javascript:void(0)", 1, "sort-widget", 3, "click", "innerHTML"], [2, "width", "110px"], [4, "ngFor", "ngForOf"], ["class", "search-result-column-cell", "scope", "row", 4, "ngFor", "ngForOf"], ["type", "checkbox", 1, "govuk-checkboxes__input", 3, "change", "id", "name", "checked", "disabled"], [1, "govuk-label", "govuk-checkboxes__label", 3, "for"], ["scope", "row", 1, "search-result-column-cell"], ["class", "govuk-link", 3, "routerLink", 4, "ngIf"], ["class", "text-16", 3, "visibility", 4, "ngIf"], [1, "govuk-link", 3, "routerLink"], ["class", "text-16", 4, "ngIf"], [1, "text-16"], ["ccdLabelSubstitutor", "", 3, "caseField", "contextFields", "elementsToSubstitute", 4, "ngIf", "ngIfElse"], ["ccdLabelSubstitutor", "", 3, "caseField", "contextFields", "elementsToSubstitute"], [3, "caseId", "displayMode"], ["type", "checkbox", 1, "govuk-checkboxes__input", 3, "change", "keyup", "id", "name", "checked", "disabled"], [3, "pageChange", "visibilityLabel", "autoHide", "maxSize", "screenReaderPaginationLabel", "screenReaderPageLabel", "screenReaderCurrentLabel"], ["id", "no_case_found", 1, "notification"], ["aria-describedby", "no_case_found"]], template: function SearchResultComponent_Template(rf, ctx) { if (rf & 1) {
|
|
36877
|
+
i0.ɵɵtemplate(0, SearchResultComponent_table_0_Template, 16, 11, "table", 1)(1, SearchResultComponent_ccd_pagination_1_Template, 1, 6, "ccd-pagination", 2)(2, SearchResultComponent_div_2_Template, 3, 3, "div", 3)(3, SearchResultComponent_span_3_Template, 2, 0, "span", 4);
|
|
36848
36878
|
} if (rf & 2) {
|
|
36849
36879
|
i0.ɵɵproperty("ngIf", ctx.hasResults() || ctx.hasDrafts());
|
|
36850
36880
|
i0.ɵɵadvance();
|
|
36851
36881
|
i0.ɵɵproperty("ngIf", ctx.hasResults());
|
|
36852
36882
|
i0.ɵɵadvance();
|
|
36853
36883
|
i0.ɵɵproperty("ngIf", !(ctx.hasResults() || ctx.hasDrafts()));
|
|
36884
|
+
i0.ɵɵadvance();
|
|
36885
|
+
i0.ɵɵproperty("ngIf", !(ctx.hasResults() || ctx.hasDrafts()));
|
|
36854
36886
|
} }, styles: ["table[_ngcontent-%COMP%] thead[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] th[_ngcontent-%COMP%]{vertical-align:top}table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%]{font-size:16px;word-wrap:break-word}table[_ngcontent-%COMP%] tbody[_ngcontent-%COMP%] tr[_ngcontent-%COMP%] td[_ngcontent-%COMP%] a[_ngcontent-%COMP%]{float:left}table[_ngcontent-%COMP%] .caseid-col[_ngcontent-%COMP%]{white-space:nowrap}.notification[_ngcontent-%COMP%]{text-align:center;padding:30px 0;margin-top:75px}a[_ngcontent-%COMP%]:hover{color:#005ea5}.search-result-reset-link[_ngcontent-%COMP%]{padding-right:15px;padding-left:15px}.search-result-column-header[_ngcontent-%COMP%]{width:unset;table-layout:normal}.search-result-column-header[_ngcontent-%COMP%] div[_ngcontent-%COMP%]{display:table-cell;width:auto}@media screen and (max-width: 379px){.search-result-column-header[_ngcontent-%COMP%] div[_ngcontent-%COMP%]{display:block;float:right}}.search-result-column-label[_ngcontent-%COMP%]{font-size:16px;font-weight:700;word-wrap:break-word;cursor:pointer;padding-right:15px}.search-result-column-sort[_ngcontent-%COMP%]{font-size:16px}.sort-widget[_ngcontent-%COMP%]{cursor:pointer;text-decoration:none;color:#231f20}span.heading-medium[_ngcontent-%COMP%]{margin-top:-20px}.govuk-table__checkbox[_ngcontent-%COMP%]{vertical-align:middle;padding-left:3px}#search-result-heading__text[_ngcontent-%COMP%]:focus{outline:none}"] });
|
|
36855
36887
|
}
|
|
36856
36888
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SearchResultComponent, [{
|
|
36857
36889
|
type: Component,
|
|
36858
|
-
args: [{ selector: 'ccd-search-result', template: "<table *ngIf=\"hasResults() || hasDrafts()\">\n <caption>\n <h2 class=\"heading-h2\" id=\"search-result-heading__text\" tabindex=\"-1\">{{ (caseState ? 'Your cases' : 'Search result') | rpxTranslate}}</h2>\n\n <div class=\"govuk-warning-text pagination-limit-warning\" *ngIf=\"paginationLimitEnforced\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">{{'Warning' | rpxTranslate}}</span>\n {{'The total size of the result set is' | rpxTranslate}} {{paginationMetadata.totalResultsCount | number}}. {{'Only the first 10,000 records are available for display.' | rpxTranslate}}\n </strong>\n </div>\n\n <div *ngIf=\"(hasResults() || hasDrafts())\" class=\"pagination-top\">\n <output [attr.aria-label]=\"getTotalResults() + ' results have been found' | rpxTranslate\"></output>\n <span class=\"text-16\" id=\"search-result-summary__text\">{{'Showing' | rpxTranslate}}\n <span class=\"govuk-!-font-weight-bold\">{{ getFirstResult() }}</span>\n {{'to' | rpxTranslate}}\n <span class=\"govuk-!-font-weight-bold\">{{ getLastResult() }}</span>\n {{'of' | rpxTranslate}}\n <span class=\"govuk-!-font-weight-bold\">{{ getTotalResults() }}</span> {{'results' | rpxTranslate}}</span>\n </div>\n <div *ngIf=\"(hasResults() || hasDrafts()) && selectionEnabled\" class=\"reset-selection\"\n [attr.aria-label]=\"'Reset selection' | rpxTranslate\">\n <span><a class=\"search-result-reset-link\" href=\"javascript:void(0)\" (click)=\"clearSelection()\">{{'Reset case selection' | rpxTranslate}}</a></span>\n </div>\n </caption>\n <thead>\n <tr scope=\"row\">\n <th *ngIf=\"selectionEnabled\" class=\"govuk-table__checkbox\" scope=\"col\">\n <div class=\"govuk-checkboxes__item\">\n <input class=\"govuk-checkboxes__input\" id=\"select-all\" name=\"select-all\" type=\"checkbox\" (change)=\"selectAll()\" [checked]=\"allOnPageSelected()\" [disabled]=\"!canAnyBeShared()\" />\n <label class=\"govuk-label govuk-checkboxes__label\" for=\"select-all\">\n </label>\n </div>\n </th>\n <th *ngFor=\"let col of resultView.columns\" class=\"search-result-column-header\"\n [attr.aria-sort]=\"isSortAscending(col) === null ? null : (isSortAscending(col) ? 'ascending' : 'descending')\">\n <div>\n <div class=\"search-result-column-label\" (click)=\"sort(col)\" (keyup)=\"noop()\">\n {{col.label | rpxTranslate}}\n </div>\n <div *ngIf=\"comparator(col)\" class=\"search-result-column-sort\">\n <a (click)=\"sort(col)\" class=\"sort-widget\" [innerHTML]=\"sortWidget(col)\" href=\"javascript:void(0)\"></a>\n </div>\n </div>\n </th>\n <th *ngIf=\"activityEnabled()\" style=\"width: 110px;\">​</th>\n </tr>\n </thead>\n\n <tbody>\n <!-- sorted by consumer -->\n <ng-container *ngIf=\"consumerSortingEnabled\">\n <tr *ngFor=\"let result of resultView.results | paginate: { itemsPerPage: paginationPageSize, currentPage: selected.page, totalItems: resultTotal }\">\n <td *ngIf=\"selectionEnabled\" class=\"govuk-table__checkbox\" scope=\"col\">\n <div class=\"govuk-checkboxes__item\">\n <input class=\"govuk-checkboxes__input\" id=\"select-{{ result.case_id }}\" name=\"select-{{ result.case_id }}\"\n type=\"checkbox\" (change)=\"changeSelection(result)\" [checked]=\"isSelected(result)\" [disabled]=\"!canBeShared(result)\" />\n <label class=\"govuk-label govuk-checkboxes__label\" for=\"select-{{ result.case_id }}\">\n </label>\n </div>\n </td>\n <td class=\"search-result-column-cell\" *ngFor=\"let col of resultView.columns; let colIndex = index\" scope=\"row\">\n <a *ngIf=\"colIndex == 0\" [routerLink]=\"prepareCaseLinkUrl(result.case_id)\"\n attr.aria-label=\"go to case with Case reference:{{ result.case_id | ccdCaseReference }}\" class=\"govuk-link\">\n <ng-container class=\"text-16\" *ngIf=\"!hideRows\">\n <ccd-field-read *ngIf=\"draftPrefixOrGet(col, result); else case_reference\"\n ccdLabelSubstitutor [caseField]=\"getColumnsWithPrefix(result.columns[col.case_field_id], result)\"\n [contextFields]=\"result.hydrated_case_fields\"\n [elementsToSubstitute]=\"['value']\"></ccd-field-read>\n <ng-template #case_reference>{{result.case_id | ccdCaseReference}}</ng-template>\n </ng-container>\n </a>\n <div *ngIf=\"colIndex != 0\" class=\"text-16\" [style.visibility]=\"hideRows ? 'hidden' : 'visible'\">\n <ccd-field-read ccdLabelSubstitutor\n [caseField]=\"result.columns[col.case_field_id]\"\n [contextFields]=\"result.hydrated_case_fields\"\n [elementsToSubstitute]=\"['value']\"></ccd-field-read>\n </div>\n </td>\n <td *ngIf=\"activityEnabled()\">\n <div [style.visibility]=\"hideRows ? 'hidden' : 'visible'\">\n <ccd-activity [caseId]=\"result.case_id\" [displayMode]=\"ICON\"></ccd-activity>\n </div>\n </td>\n </tr>\n </ng-container>\n <!-- sorted by toolkit -->\n <ng-container *ngIf=\"!consumerSortingEnabled\">\n <tr *ngFor=\"let result of resultView.results | ccdSortSearchResult : sortParameters | paginate: { itemsPerPage: paginationPageSize, currentPage: selected.page, totalItems: resultTotal }\">\n <td *ngIf=\"selectionEnabled\" class=\"govuk-table__checkbox\" scope=\"col\">\n <div class=\"govuk-checkboxes__item\">\n <input class=\"govuk-checkboxes__input\" id=\"select-{{ result.case_id }}\" name=\"select-{{ result.case_id }}\"\n type=\"checkbox\" (change)=\"changeSelection(result)\" [checked]=\"isSelected(result)\" [disabled]=\"!canBeShared(result)\" (keyup)=\"onKeyUp($event, result)\" />\n <label class=\"govuk-label govuk-checkboxes__label\" for=\"select-{{ result.case_id }}\">\n </label>\n </div>\n </td>\n <td class=\"search-result-column-cell\" *ngFor=\"let col of resultView.columns; let colIndex = index\" scope=\"row\">\n\n <a *ngIf=\"colIndex == 0\" [routerLink]=\"prepareCaseLinkUrl(result.case_id)\"\n attr.aria-label=\"go to case with Case reference:{{ result.case_id | ccdCaseReference }}\" class=\"govuk-link\">\n <ng-container class=\"text-16\" *ngIf=\"!hideRows\">\n <ccd-field-read *ngIf=\"draftPrefixOrGet(col, result); else case_reference\"\n ccdLabelSubstitutor [caseField]=\"getColumnsWithPrefix(result.columns[col.case_field_id], result)\"\n [contextFields]=\"result.hydrated_case_fields\"\n [elementsToSubstitute]=\"['value']\"></ccd-field-read>\n <ng-template #case_reference>{{result.case_id | ccdCaseReference}}</ng-template>\n </ng-container>\n </a>\n <div *ngIf=\"colIndex != 0\" class=\"text-16\" [style.visibility]=\"hideRows ? 'hidden' : 'visible'\">\n <ccd-field-read ccdLabelSubstitutor\n [caseField]=\"result.columns[col.case_field_id]\"\n [contextFields]=\"result.hydrated_case_fields\"\n [elementsToSubstitute]=\"['value']\"></ccd-field-read>\n </div>\n </td>\n <td *ngIf=\"activityEnabled()\">\n <div [style.visibility]=\"hideRows ? 'hidden' : 'visible'\">\n <ccd-activity [caseId]=\"result.case_id\" [displayMode]=\"ICON\"></ccd-activity>\n </div>\n </td>\n </tr>\n </ng-container>\n\n </tbody>\n</table>\n\n<ccd-pagination\n *ngIf=\"hasResults()\"\n (pageChange)=\"goToPage($event)\"\n [visibilityLabel]=\"hideRows ? 'hidden' : 'visible'\"\n [autoHide]=\"true\"\n [maxSize]=\"8\"\n [screenReaderPaginationLabel]=\"'Pagination'\"\n [screenReaderPageLabel]=\"page\"\n [screenReaderCurrentLabel]=\"'You\\'re on page'\"></ccd-pagination>\n\n<div *ngIf=\"!(hasResults() || hasDrafts())\" class=\"notification\"
|
|
36890
|
+
args: [{ selector: 'ccd-search-result', template: "<table *ngIf=\"hasResults() || hasDrafts()\">\n <caption>\n <h2 class=\"heading-h2\" id=\"search-result-heading__text\" tabindex=\"-1\">{{ (caseState ? 'Your cases' : 'Search result') | rpxTranslate}}</h2>\n\n <div class=\"govuk-warning-text pagination-limit-warning\" *ngIf=\"paginationLimitEnforced\">\n <span class=\"govuk-warning-text__icon\" aria-hidden=\"true\">!</span>\n <strong class=\"govuk-warning-text__text\">\n <span class=\"govuk-warning-text__assistive\">{{'Warning' | rpxTranslate}}</span>\n {{'The total size of the result set is' | rpxTranslate}} {{paginationMetadata.totalResultsCount | number}}. {{'Only the first 10,000 records are available for display.' | rpxTranslate}}\n </strong>\n </div>\n\n <div *ngIf=\"(hasResults() || hasDrafts())\" class=\"pagination-top\">\n <output [attr.aria-label]=\"getTotalResults() + ' results have been found' | rpxTranslate\"></output>\n <span class=\"text-16\" id=\"search-result-summary__text\">{{'Showing' | rpxTranslate}}\n <span class=\"govuk-!-font-weight-bold\">{{ getFirstResult() }}</span>\n {{'to' | rpxTranslate}}\n <span class=\"govuk-!-font-weight-bold\">{{ getLastResult() }}</span>\n {{'of' | rpxTranslate}}\n <span class=\"govuk-!-font-weight-bold\">{{ getTotalResults() }}</span> {{'results' | rpxTranslate}}</span>\n </div>\n <div *ngIf=\"(hasResults() || hasDrafts()) && selectionEnabled\" class=\"reset-selection\"\n [attr.aria-label]=\"'Reset selection' | rpxTranslate\">\n <span><a class=\"search-result-reset-link\" href=\"javascript:void(0)\" (click)=\"clearSelection()\">{{'Reset case selection' | rpxTranslate}}</a></span>\n </div>\n </caption>\n <thead>\n <tr scope=\"row\">\n <th *ngIf=\"selectionEnabled\" class=\"govuk-table__checkbox\" scope=\"col\">\n <div class=\"govuk-checkboxes__item\">\n <input class=\"govuk-checkboxes__input\" id=\"select-all\" name=\"select-all\" type=\"checkbox\" (change)=\"selectAll()\" [checked]=\"allOnPageSelected()\" [disabled]=\"!canAnyBeShared()\" />\n <label class=\"govuk-label govuk-checkboxes__label\" for=\"select-all\">\n </label>\n </div>\n </th>\n <th *ngFor=\"let col of resultView.columns\" class=\"search-result-column-header\"\n [attr.aria-sort]=\"isSortAscending(col) === null ? null : (isSortAscending(col) ? 'ascending' : 'descending')\">\n <div>\n <div class=\"search-result-column-label\" (click)=\"sort(col)\" (keyup)=\"noop()\">\n {{col.label | rpxTranslate}}\n </div>\n <div *ngIf=\"comparator(col)\" class=\"search-result-column-sort\">\n <a (click)=\"sort(col)\" class=\"sort-widget\" [innerHTML]=\"sortWidget(col)\" href=\"javascript:void(0)\"></a>\n </div>\n </div>\n </th>\n <th *ngIf=\"activityEnabled()\" style=\"width: 110px;\">​</th>\n </tr>\n </thead>\n\n <tbody>\n <!-- sorted by consumer -->\n <ng-container *ngIf=\"consumerSortingEnabled\">\n <tr *ngFor=\"let result of resultView.results | paginate: { itemsPerPage: paginationPageSize, currentPage: selected.page, totalItems: resultTotal }\">\n <td *ngIf=\"selectionEnabled\" class=\"govuk-table__checkbox\" scope=\"col\">\n <div class=\"govuk-checkboxes__item\">\n <input class=\"govuk-checkboxes__input\" id=\"select-{{ result.case_id }}\" name=\"select-{{ result.case_id }}\"\n type=\"checkbox\" (change)=\"changeSelection(result)\" [checked]=\"isSelected(result)\" [disabled]=\"!canBeShared(result)\" />\n <label class=\"govuk-label govuk-checkboxes__label\" for=\"select-{{ result.case_id }}\">\n </label>\n </div>\n </td>\n <td class=\"search-result-column-cell\" *ngFor=\"let col of resultView.columns; let colIndex = index\" scope=\"row\">\n <a *ngIf=\"colIndex == 0\" [routerLink]=\"prepareCaseLinkUrl(result.case_id)\"\n attr.aria-label=\"go to case with Case reference:{{ result.case_id | ccdCaseReference }}\" class=\"govuk-link\">\n <ng-container class=\"text-16\" *ngIf=\"!hideRows\">\n <ccd-field-read *ngIf=\"draftPrefixOrGet(col, result); else case_reference\"\n ccdLabelSubstitutor [caseField]=\"getColumnsWithPrefix(result.columns[col.case_field_id], result)\"\n [contextFields]=\"result.hydrated_case_fields\"\n [elementsToSubstitute]=\"['value']\"></ccd-field-read>\n <ng-template #case_reference>{{result.case_id | ccdCaseReference}}</ng-template>\n </ng-container>\n </a>\n <div *ngIf=\"colIndex != 0\" class=\"text-16\" [style.visibility]=\"hideRows ? 'hidden' : 'visible'\">\n <ccd-field-read ccdLabelSubstitutor\n [caseField]=\"result.columns[col.case_field_id]\"\n [contextFields]=\"result.hydrated_case_fields\"\n [elementsToSubstitute]=\"['value']\"></ccd-field-read>\n </div>\n </td>\n <td *ngIf=\"activityEnabled()\">\n <div [style.visibility]=\"hideRows ? 'hidden' : 'visible'\">\n <ccd-activity [caseId]=\"result.case_id\" [displayMode]=\"ICON\"></ccd-activity>\n </div>\n </td>\n </tr>\n </ng-container>\n <!-- sorted by toolkit -->\n <ng-container *ngIf=\"!consumerSortingEnabled\">\n <tr *ngFor=\"let result of resultView.results | ccdSortSearchResult : sortParameters | paginate: { itemsPerPage: paginationPageSize, currentPage: selected.page, totalItems: resultTotal }\">\n <td *ngIf=\"selectionEnabled\" class=\"govuk-table__checkbox\" scope=\"col\">\n <div class=\"govuk-checkboxes__item\">\n <input class=\"govuk-checkboxes__input\" id=\"select-{{ result.case_id }}\" name=\"select-{{ result.case_id }}\"\n type=\"checkbox\" (change)=\"changeSelection(result)\" [checked]=\"isSelected(result)\" [disabled]=\"!canBeShared(result)\" (keyup)=\"onKeyUp($event, result)\" />\n <label class=\"govuk-label govuk-checkboxes__label\" for=\"select-{{ result.case_id }}\">\n </label>\n </div>\n </td>\n <td class=\"search-result-column-cell\" *ngFor=\"let col of resultView.columns; let colIndex = index\" scope=\"row\">\n\n <a *ngIf=\"colIndex == 0\" [routerLink]=\"prepareCaseLinkUrl(result.case_id)\"\n attr.aria-label=\"go to case with Case reference:{{ result.case_id | ccdCaseReference }}\" class=\"govuk-link\">\n <ng-container class=\"text-16\" *ngIf=\"!hideRows\">\n <ccd-field-read *ngIf=\"draftPrefixOrGet(col, result); else case_reference\"\n ccdLabelSubstitutor [caseField]=\"getColumnsWithPrefix(result.columns[col.case_field_id], result)\"\n [contextFields]=\"result.hydrated_case_fields\"\n [elementsToSubstitute]=\"['value']\"></ccd-field-read>\n <ng-template #case_reference>{{result.case_id | ccdCaseReference}}</ng-template>\n </ng-container>\n </a>\n <div *ngIf=\"colIndex != 0\" class=\"text-16\" [style.visibility]=\"hideRows ? 'hidden' : 'visible'\">\n <ccd-field-read ccdLabelSubstitutor\n [caseField]=\"result.columns[col.case_field_id]\"\n [contextFields]=\"result.hydrated_case_fields\"\n [elementsToSubstitute]=\"['value']\"></ccd-field-read>\n </div>\n </td>\n <td *ngIf=\"activityEnabled()\">\n <div [style.visibility]=\"hideRows ? 'hidden' : 'visible'\">\n <ccd-activity [caseId]=\"result.case_id\" [displayMode]=\"ICON\"></ccd-activity>\n </div>\n </td>\n </tr>\n </ng-container>\n\n </tbody>\n</table>\n\n<ccd-pagination\n *ngIf=\"hasResults()\"\n (pageChange)=\"goToPage($event)\"\n [visibilityLabel]=\"hideRows ? 'hidden' : 'visible'\"\n [autoHide]=\"true\"\n [maxSize]=\"8\"\n [screenReaderPaginationLabel]=\"'Pagination'\"\n [screenReaderPageLabel]=\"page\"\n [screenReaderCurrentLabel]=\"'You\\'re on page'\"></ccd-pagination>\n\n<div id=\"no_case_found\" *ngIf=\"!(hasResults() || hasDrafts())\" class=\"notification\">\n{{'No cases found. Try using different filters.' | rpxTranslate}}\n</div>\n<span *ngIf=\"!(hasResults() || hasDrafts())\" aria-describedby=\"no_case_found\">​</span>\n", styles: ["table thead tr th{vertical-align:top}table tbody tr td{font-size:16px;word-wrap:break-word}table tbody tr td a{float:left}table .caseid-col{white-space:nowrap}.notification{text-align:center;padding:30px 0;margin-top:75px}a:hover{color:#005ea5}.search-result-reset-link{padding-right:15px;padding-left:15px}.search-result-column-header{width:unset;table-layout:normal}.search-result-column-header div{display:table-cell;width:auto}@media screen and (max-width: 379px){.search-result-column-header div{display:block;float:right}}.search-result-column-label{font-size:16px;font-weight:700;word-wrap:break-word;cursor:pointer;padding-right:15px}.search-result-column-sort{font-size:16px}.sort-widget{cursor:pointer;text-decoration:none;color:#231f20}span.heading-medium{margin-top:-20px}.govuk-table__checkbox{vertical-align:middle;padding-left:3px}#search-result-heading__text:focus{outline:none}\n"] }]
|
|
36859
36891
|
}], () => [{ type: SearchResultViewItemComparatorFactory }, { type: AbstractAppConfig }, { type: ActivityService }, { type: CaseReferencePipe }, { type: PlaceholderService }, { type: BrowserService }, { type: SessionStorageService }], { caseLinkUrlTemplate: [{
|
|
36860
36892
|
type: Input
|
|
36861
36893
|
}], jurisdiction: [{
|