@valtimo/task 4.15.2-next-main.8
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/bundles/valtimo-task.umd.js +843 -0
- package/bundles/valtimo-task.umd.js.map +1 -0
- package/bundles/valtimo-task.umd.min.js +2 -0
- package/bundles/valtimo-task.umd.min.js.map +1 -0
- package/esm2015/lib/assign-user-to-task/assign-user-to-task.component.js +121 -0
- package/esm2015/lib/task-detail-modal/task-detail-modal.component.js +118 -0
- package/esm2015/lib/task-list/task-list.component.js +155 -0
- package/esm2015/lib/task-routing.module.js +44 -0
- package/esm2015/lib/task.module.js +66 -0
- package/esm2015/lib/task.service.js +60 -0
- package/esm2015/public_api.js +23 -0
- package/esm2015/valtimo-task.js +7 -0
- package/fesm2015/valtimo-task.js +556 -0
- package/fesm2015/valtimo-task.js.map +1 -0
- package/lib/assign-user-to-task/assign-user-to-task.component.d.ts +26 -0
- package/lib/task-detail-modal/task-detail-modal.component.d.ts +30 -0
- package/lib/task-list/task-list.component.d.ts +32 -0
- package/lib/task-routing.module.d.ts +2 -0
- package/lib/task.module.d.ts +2 -0
- package/lib/task.service.d.ts +16 -0
- package/package.json +24 -0
- package/public_api.d.ts +4 -0
- package/valtimo-task.d.ts +6 -0
- package/valtimo-task.metadata.json +1 -0
|
@@ -0,0 +1,556 @@
|
|
|
1
|
+
import { ɵɵdefineInjectable, ɵɵinject, Injectable, EventEmitter, Component, ViewEncapsulation, ViewChild, Output, NgModule, Input } from '@angular/core';
|
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
|
+
import { ConfigService } from '@valtimo/config';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
import { FormsModule } from '@angular/forms';
|
|
6
|
+
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
7
|
+
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
8
|
+
import { TranslateService, TranslateModule, TranslateLoader } from '@ngx-translate/core';
|
|
9
|
+
import { ListModule, PageHeaderModule, WidgetModule, SpinnerModule, SearchableDropdownSelectModule, CamundaFormModule, FormIoModule, ModalModule } from '@valtimo/components';
|
|
10
|
+
import { FormioOptionsImpl, TaskList, ROLE_USER, HttpLoaderFactory } from '@valtimo/contract';
|
|
11
|
+
import { ToastrService, ToastrModule } from 'ngx-toastr';
|
|
12
|
+
import { Router, RouterModule } from '@angular/router';
|
|
13
|
+
import { FormLinkService } from '@valtimo/form-link';
|
|
14
|
+
import * as momentImported from 'moment';
|
|
15
|
+
import { NGXLogger } from 'ngx-logger';
|
|
16
|
+
import { combineLatest, BehaviorSubject } from 'rxjs';
|
|
17
|
+
import { AuthGuardService } from '@valtimo/security';
|
|
18
|
+
import { take, tap } from 'rxjs/operators';
|
|
19
|
+
|
|
20
|
+
/*
|
|
21
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
22
|
+
*
|
|
23
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
24
|
+
* you may not use this file except in compliance with the License.
|
|
25
|
+
* You may obtain a copy of the License at
|
|
26
|
+
*
|
|
27
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
28
|
+
*
|
|
29
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
30
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
31
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
32
|
+
* See the License for the specific language governing permissions and
|
|
33
|
+
* limitations under the License.
|
|
34
|
+
*/
|
|
35
|
+
class TaskService {
|
|
36
|
+
constructor(http, configService) {
|
|
37
|
+
this.http = http;
|
|
38
|
+
this.valtimoEndpointUri = configService.config.valtimoApi.endpointUri;
|
|
39
|
+
}
|
|
40
|
+
queryTasks(params) {
|
|
41
|
+
return this.http.get(`${this.valtimoEndpointUri}task`, { observe: 'response', params: params });
|
|
42
|
+
}
|
|
43
|
+
getTasks() {
|
|
44
|
+
return this.http.get(`${this.valtimoEndpointUri}task?filter=all`);
|
|
45
|
+
}
|
|
46
|
+
getTask(id) {
|
|
47
|
+
return this.http.get(this.valtimoEndpointUri + 'task/' + id);
|
|
48
|
+
}
|
|
49
|
+
getCandidateUsers(id) {
|
|
50
|
+
return this.http.get(this.valtimoEndpointUri + 'task/' + id + '/candidate-user');
|
|
51
|
+
}
|
|
52
|
+
assignTask(id, assigneeRequest) {
|
|
53
|
+
return this.http.post(this.valtimoEndpointUri + 'task/' + id + '/assign', assigneeRequest);
|
|
54
|
+
}
|
|
55
|
+
unassignTask(id) {
|
|
56
|
+
return this.http.post(this.valtimoEndpointUri + 'task/' + id + '/unassign', null);
|
|
57
|
+
}
|
|
58
|
+
completeTask(id, variables) {
|
|
59
|
+
return this.http.post(this.valtimoEndpointUri + 'task/' + id + '/complete', {
|
|
60
|
+
variables: variables,
|
|
61
|
+
filesToDelete: []
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
TaskService.ɵprov = ɵɵdefineInjectable({ factory: function TaskService_Factory() { return new TaskService(ɵɵinject(HttpClient), ɵɵinject(ConfigService)); }, token: TaskService, providedIn: "root" });
|
|
66
|
+
TaskService.decorators = [
|
|
67
|
+
{ type: Injectable, args: [{ providedIn: 'root' },] }
|
|
68
|
+
];
|
|
69
|
+
TaskService.ctorParameters = () => [
|
|
70
|
+
{ type: HttpClient },
|
|
71
|
+
{ type: ConfigService }
|
|
72
|
+
];
|
|
73
|
+
|
|
74
|
+
/*
|
|
75
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
76
|
+
*
|
|
77
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
78
|
+
* you may not use this file except in compliance with the License.
|
|
79
|
+
* You may obtain a copy of the License at
|
|
80
|
+
*
|
|
81
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
82
|
+
*
|
|
83
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
84
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
85
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
86
|
+
* See the License for the specific language governing permissions and
|
|
87
|
+
* limitations under the License.
|
|
88
|
+
*/
|
|
89
|
+
const moment = momentImported;
|
|
90
|
+
moment.locale(localStorage.getItem('langKey') || '');
|
|
91
|
+
class TaskDetailModalComponent {
|
|
92
|
+
constructor(toastr, formLinkService, router, logger) {
|
|
93
|
+
this.toastr = toastr;
|
|
94
|
+
this.formLinkService = formLinkService;
|
|
95
|
+
this.router = router;
|
|
96
|
+
this.logger = logger;
|
|
97
|
+
this.task = null;
|
|
98
|
+
this.page = null;
|
|
99
|
+
this.formSubmit = new EventEmitter();
|
|
100
|
+
this.assignmentOfTaskChanged = new EventEmitter();
|
|
101
|
+
this.errorMessage = null;
|
|
102
|
+
this.formioOptions = new FormioOptionsImpl();
|
|
103
|
+
this.formioOptions.disableAlerts = true;
|
|
104
|
+
}
|
|
105
|
+
resetFormDefinition() {
|
|
106
|
+
// reset formDefinition in order to reload form-io component
|
|
107
|
+
this.formDefinition = null;
|
|
108
|
+
}
|
|
109
|
+
openTaskDetails(task) {
|
|
110
|
+
this.resetFormDefinition();
|
|
111
|
+
this.task = task;
|
|
112
|
+
this.page = {
|
|
113
|
+
title: task.name,
|
|
114
|
+
subtitle: `Created ${moment(task.created).fromNow()}`
|
|
115
|
+
};
|
|
116
|
+
this.formLinkService
|
|
117
|
+
.getPreFilledFormDefinitionByFormLinkId(task.processDefinitionKey, task.businessKey, task.taskDefinitionKey, task.id // taskInstanceId
|
|
118
|
+
)
|
|
119
|
+
.subscribe((formDefinition) => {
|
|
120
|
+
this.formAssociation = formDefinition.formAssociation;
|
|
121
|
+
const className = this.formAssociation.formLink.className.split('.');
|
|
122
|
+
const linkType = className[className.length - 1];
|
|
123
|
+
switch (linkType) {
|
|
124
|
+
case 'BpmnElementFormIdLink':
|
|
125
|
+
this.formDefinition = formDefinition;
|
|
126
|
+
this.modal.show();
|
|
127
|
+
break;
|
|
128
|
+
case 'BpmnElementUrlLink':
|
|
129
|
+
const url = this.router.serializeUrl(this.router.createUrlTree([formDefinition.formAssociation.formLink.url]));
|
|
130
|
+
window.open(url, '_blank');
|
|
131
|
+
break;
|
|
132
|
+
case 'BpmnElementAngularStateUrlLink':
|
|
133
|
+
this.router.navigate([formDefinition.formAssociation.formLink.url]);
|
|
134
|
+
break;
|
|
135
|
+
default:
|
|
136
|
+
this.logger.fatal('Unsupported class name');
|
|
137
|
+
}
|
|
138
|
+
}, (errors) => {
|
|
139
|
+
var _a;
|
|
140
|
+
if ((_a = errors === null || errors === void 0 ? void 0 : errors.error) === null || _a === void 0 ? void 0 : _a.detail) {
|
|
141
|
+
this.errorMessage = errors.error.detail;
|
|
142
|
+
}
|
|
143
|
+
this.modal.show();
|
|
144
|
+
});
|
|
145
|
+
}
|
|
146
|
+
gotoFormLinkScreen() {
|
|
147
|
+
this.modal.hide();
|
|
148
|
+
this.router.navigate(['form-links']);
|
|
149
|
+
}
|
|
150
|
+
onSubmit(submission) {
|
|
151
|
+
this.formLinkService
|
|
152
|
+
.onSubmit(this.task.processDefinitionKey, this.formAssociation.formLink.id, submission.data, this.task.businessKey, this.task.id)
|
|
153
|
+
.subscribe((formSubmissionResult) => {
|
|
154
|
+
this.toastr.success(this.task.name + ' has successfully been completed');
|
|
155
|
+
this.modal.hide();
|
|
156
|
+
this.task = null;
|
|
157
|
+
this.formSubmit.emit();
|
|
158
|
+
}, (errors) => {
|
|
159
|
+
this.form.showErrors(errors);
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
TaskDetailModalComponent.decorators = [
|
|
164
|
+
{ type: Component, args: [{
|
|
165
|
+
selector: 'valtimo-task-detail-modal',
|
|
166
|
+
template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<valtimo-modal\n #taskDetailModal\n elementId=\"taskDetailModal\"\n [title]=\"page?.title\"\n [subtitle]=\"page?.subtitle\"\n [templateBelowSubtitle]=\"assignUserToTask\"\n>\n <div body *ngIf=\"formDefinition\">\n <valtimo-form-io\n #form\n [form]=\"formDefinition\"\n (submit)=\"onSubmit($event)\"\n [options]=\"formioOptions\"\n ></valtimo-form-io>\n </div>\n <div body *ngIf=\"!formDefinition && !errorMessage\">\n <div class=\"bg-warning text-black mb-0 p-3 text-center\" [translate]=\"'formManagement.noFormDefinitionFound'\"></div>\n </div>\n <div body *ngIf=\"errorMessage\">\n <div class=\"bg-danger text-black mb-0 p-3 text-center\">\n {{ errorMessage }}\n </div>\n </div>\n <div footer>\n <div class=\"mb-0 p-3 text-center\" *ngIf=\"!formDefinition\">\n <button class=\"btn btn-secondary btn-space\" type=\"button\" (click)=\"gotoFormLinkScreen()\" id=\"form-link-button\">\n {{ 'formManagement.gotoFormLinksButton' | translate }}\n </button>\n </div>\n </div>\n</valtimo-modal>\n\n<ng-template #assignUserToTask>\n <valtimo-assign-user-to-task\n *ngIf=\"task && assignmentOfTaskChanged\"\n [taskId]=\"task.id\"\n [assigneeEmail]=\"task.assignee\"\n (assignmentOfTaskChanged)=\"assignmentOfTaskChanged.emit()\"\n ></valtimo-assign-user-to-task>\n</ng-template>\n",
|
|
167
|
+
encapsulation: ViewEncapsulation.None,
|
|
168
|
+
styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */#taskDetailModal .formio-component-submit{text-align:right}"]
|
|
169
|
+
},] }
|
|
170
|
+
];
|
|
171
|
+
TaskDetailModalComponent.ctorParameters = () => [
|
|
172
|
+
{ type: ToastrService },
|
|
173
|
+
{ type: FormLinkService },
|
|
174
|
+
{ type: Router },
|
|
175
|
+
{ type: NGXLogger }
|
|
176
|
+
];
|
|
177
|
+
TaskDetailModalComponent.propDecorators = {
|
|
178
|
+
form: [{ type: ViewChild, args: ['form',] }],
|
|
179
|
+
modal: [{ type: ViewChild, args: ['taskDetailModal',] }],
|
|
180
|
+
formSubmit: [{ type: Output }],
|
|
181
|
+
assignmentOfTaskChanged: [{ type: Output }]
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
/*
|
|
185
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
186
|
+
*
|
|
187
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
188
|
+
* you may not use this file except in compliance with the License.
|
|
189
|
+
* You may obtain a copy of the License at
|
|
190
|
+
*
|
|
191
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
192
|
+
*
|
|
193
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
194
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
195
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
196
|
+
* See the License for the specific language governing permissions and
|
|
197
|
+
* limitations under the License.
|
|
198
|
+
*/
|
|
199
|
+
const moment$1 = momentImported;
|
|
200
|
+
moment$1.locale(localStorage.getItem('langKey') || '');
|
|
201
|
+
class TaskListComponent {
|
|
202
|
+
constructor(taskService, router, logger, translateService) {
|
|
203
|
+
this.taskService = taskService;
|
|
204
|
+
this.router = router;
|
|
205
|
+
this.logger = logger;
|
|
206
|
+
this.translateService = translateService;
|
|
207
|
+
this.tasks = {
|
|
208
|
+
mine: new TaskList(),
|
|
209
|
+
open: new TaskList(),
|
|
210
|
+
all: new TaskList()
|
|
211
|
+
};
|
|
212
|
+
this.currentTaskType = 'mine';
|
|
213
|
+
this.listTitle = null;
|
|
214
|
+
this.listDescription = null;
|
|
215
|
+
}
|
|
216
|
+
paginationClicked(page, type) {
|
|
217
|
+
this.tasks[type].page = page - 1;
|
|
218
|
+
this.getTasks(type);
|
|
219
|
+
}
|
|
220
|
+
paginationSet() {
|
|
221
|
+
this.tasks.mine.pagination.size = this.tasks.all.pagination.size = this.tasks.open.pagination.size = this.tasks[this.currentTaskType].pagination.size;
|
|
222
|
+
this.getTasks(this.currentTaskType);
|
|
223
|
+
}
|
|
224
|
+
clearPagination(type) {
|
|
225
|
+
this.tasks[type].page = 0;
|
|
226
|
+
}
|
|
227
|
+
tabChange(tab) {
|
|
228
|
+
this.clearPagination(this.currentTaskType);
|
|
229
|
+
switch (tab.nextId) {
|
|
230
|
+
case 'ngb-tab-0':
|
|
231
|
+
this.getTasks('mine');
|
|
232
|
+
break;
|
|
233
|
+
case 'ngb-tab-1':
|
|
234
|
+
this.getTasks('open');
|
|
235
|
+
break;
|
|
236
|
+
case 'ngb-tab-2':
|
|
237
|
+
this.getTasks('all');
|
|
238
|
+
break;
|
|
239
|
+
default:
|
|
240
|
+
this.logger.fatal('Unreachable case');
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
showTask(task) {
|
|
244
|
+
this.router.navigate(['tasks', task.id]);
|
|
245
|
+
}
|
|
246
|
+
getTasks(type) {
|
|
247
|
+
let params;
|
|
248
|
+
this.translationSubscription = combineLatest([
|
|
249
|
+
this.translateService.stream(`task-list.${type}.title`),
|
|
250
|
+
this.translateService.stream(`task-list.${type}.description`)
|
|
251
|
+
]).subscribe(([title, description]) => {
|
|
252
|
+
this.listTitle = title;
|
|
253
|
+
this.listDescription = description;
|
|
254
|
+
});
|
|
255
|
+
switch (type) {
|
|
256
|
+
case 'mine':
|
|
257
|
+
params = { page: this.tasks.mine.page, size: this.tasks.mine.pagination.size, filter: 'mine' };
|
|
258
|
+
this.currentTaskType = 'mine';
|
|
259
|
+
break;
|
|
260
|
+
case 'open':
|
|
261
|
+
params = { page: this.tasks.open.page, size: this.tasks.open.pagination.size, filter: 'open' };
|
|
262
|
+
this.currentTaskType = 'open';
|
|
263
|
+
break;
|
|
264
|
+
case 'all':
|
|
265
|
+
params = { page: this.tasks.all.page, size: this.tasks.open.pagination.size, filter: 'all' };
|
|
266
|
+
this.currentTaskType = 'all';
|
|
267
|
+
break;
|
|
268
|
+
default:
|
|
269
|
+
this.logger.fatal('Unreachable case');
|
|
270
|
+
}
|
|
271
|
+
this.taskService.queryTasks(params).subscribe((results) => {
|
|
272
|
+
this.tasks[type].pagination.collectionSize = results.headers.get('x-total-count');
|
|
273
|
+
this.tasks[type].tasks = results.body;
|
|
274
|
+
this.tasks[type].tasks.map((task) => {
|
|
275
|
+
task.created = moment$1(task.created).format('DD MMM YYYY HH:mm');
|
|
276
|
+
if (task.due) {
|
|
277
|
+
task.due = moment$1(task.due).format('DD MMM YYYY HH:mm');
|
|
278
|
+
}
|
|
279
|
+
});
|
|
280
|
+
this.tasks[type].fields = [
|
|
281
|
+
{
|
|
282
|
+
key: 'created',
|
|
283
|
+
label: 'Created on'
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
key: 'name',
|
|
287
|
+
label: 'Name'
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
key: 'valtimoAssignee.fullName',
|
|
291
|
+
label: 'Assignee'
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
key: 'due',
|
|
295
|
+
label: 'Due date'
|
|
296
|
+
}
|
|
297
|
+
];
|
|
298
|
+
});
|
|
299
|
+
}
|
|
300
|
+
rowOpenTaskClick(task) {
|
|
301
|
+
if (!task.endTime) {
|
|
302
|
+
this.taskDetail.openTaskDetails(task);
|
|
303
|
+
}
|
|
304
|
+
else {
|
|
305
|
+
return false;
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
ngOnDestroy() {
|
|
309
|
+
this.translationSubscription.unsubscribe();
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
TaskListComponent.decorators = [
|
|
313
|
+
{ type: Component, args: [{
|
|
314
|
+
selector: 'valtimo-task-list',
|
|
315
|
+
template: "<!--\n ~ Copyright 2015-2020 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"main-content\">\n <div class=\"container-fluid\">\n <valtimo-widget>\n <valtimo-list\n [items]=\"tasks[currentTaskType].tasks\"\n [fields]=\"tasks[currentTaskType].fields\"\n [pagination]=\"tasks[currentTaskType].pagination\"\n [viewMode]=\"true\"\n (paginationClicked)=\"paginationClicked($event, currentTaskType)\"\n (paginationSet)=\"paginationSet()\"\n paginationIdentifier=\"taskList\"\n [isSearchable]=\"true\"\n [header]=\"true\"\n (rowClicked)=\"rowOpenTaskClick($event)\"\n >\n <div header>\n <h3 class=\"list-header-title\">{{ listTitle }}</h3>\n <h5 class=\"list-header-description\">{{ listDescription }}</h5>\n </div>\n <div tabs>\n <ngb-tabset [destroyOnHide]=\"false\" (tabChange)=\"tabChange($event)\">\n <ngb-tab id=\"ngb-tab-0\" [title]=\"'task-list.mine.title' | translate\"> </ngb-tab>\n <ngb-tab id=\"ngb-tab-1\" [title]=\"'task-list.open.title' | translate\"> </ngb-tab>\n <ngb-tab id=\"ngb-tab-2\" [title]=\"'task-list.all.title' | translate\"> </ngb-tab>\n </ngb-tabset>\n </div>\n </valtimo-list>\n </valtimo-widget>\n <valtimo-task-detail-modal\n #taskDetail\n (formSubmit)=\"getTasks(currentTaskType)\"\n (assignmentOfTaskChanged)=\"getTasks(currentTaskType)\"\n ></valtimo-task-detail-modal>\n </div>\n</div>\n",
|
|
316
|
+
encapsulation: ViewEncapsulation.None,
|
|
317
|
+
styles: ["/*!\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */.tab-content{margin:0;padding:0}.nav.nav-tabs{background-color:#f5f5f5}"]
|
|
318
|
+
},] }
|
|
319
|
+
];
|
|
320
|
+
TaskListComponent.ctorParameters = () => [
|
|
321
|
+
{ type: TaskService },
|
|
322
|
+
{ type: Router },
|
|
323
|
+
{ type: NGXLogger },
|
|
324
|
+
{ type: TranslateService }
|
|
325
|
+
];
|
|
326
|
+
TaskListComponent.propDecorators = {
|
|
327
|
+
taskDetail: [{ type: ViewChild, args: ['taskDetail',] }]
|
|
328
|
+
};
|
|
329
|
+
|
|
330
|
+
/*
|
|
331
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
332
|
+
*
|
|
333
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
334
|
+
* you may not use this file except in compliance with the License.
|
|
335
|
+
* You may obtain a copy of the License at
|
|
336
|
+
*
|
|
337
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
338
|
+
*
|
|
339
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
340
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
341
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
342
|
+
* See the License for the specific language governing permissions and
|
|
343
|
+
* limitations under the License.
|
|
344
|
+
*/
|
|
345
|
+
const ɵ0 = { title: 'Tasks', roles: [ROLE_USER] };
|
|
346
|
+
const routes = [
|
|
347
|
+
{
|
|
348
|
+
path: 'tasks',
|
|
349
|
+
component: TaskListComponent,
|
|
350
|
+
canActivate: [AuthGuardService],
|
|
351
|
+
data: ɵ0
|
|
352
|
+
}
|
|
353
|
+
];
|
|
354
|
+
class TaskRoutingModule {
|
|
355
|
+
}
|
|
356
|
+
TaskRoutingModule.decorators = [
|
|
357
|
+
{ type: NgModule, args: [{
|
|
358
|
+
declarations: [],
|
|
359
|
+
imports: [
|
|
360
|
+
CommonModule,
|
|
361
|
+
RouterModule.forChild(routes),
|
|
362
|
+
],
|
|
363
|
+
exports: [RouterModule]
|
|
364
|
+
},] }
|
|
365
|
+
];
|
|
366
|
+
|
|
367
|
+
/*
|
|
368
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
369
|
+
*
|
|
370
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
371
|
+
* you may not use this file except in compliance with the License.
|
|
372
|
+
* You may obtain a copy of the License at
|
|
373
|
+
*
|
|
374
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
375
|
+
*
|
|
376
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
377
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
378
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
379
|
+
* See the License for the specific language governing permissions and
|
|
380
|
+
* limitations under the License.
|
|
381
|
+
*/
|
|
382
|
+
class AssignUserToTaskComponent {
|
|
383
|
+
constructor(taskService) {
|
|
384
|
+
this.taskService = taskService;
|
|
385
|
+
this.assignmentOfTaskChanged = new EventEmitter();
|
|
386
|
+
this.candidateUsersForTask$ = new BehaviorSubject(undefined);
|
|
387
|
+
this.disabled$ = new BehaviorSubject(true);
|
|
388
|
+
this.assignedEmailOnServer$ = new BehaviorSubject(null);
|
|
389
|
+
this.userEmailToAssign = null;
|
|
390
|
+
this.assignedUserFullName$ = new BehaviorSubject(null);
|
|
391
|
+
}
|
|
392
|
+
ngOnInit() {
|
|
393
|
+
this.taskService.getCandidateUsers(this.taskId).subscribe(candidateUsers => {
|
|
394
|
+
this.candidateUsersForTask$.next(candidateUsers);
|
|
395
|
+
if (this.assigneeEmail) {
|
|
396
|
+
this.assignedEmailOnServer$.next(this.assigneeEmail);
|
|
397
|
+
this.userEmailToAssign = this.assigneeEmail;
|
|
398
|
+
this.assignedUserFullName$.next(this.getAssignedUserName(candidateUsers, this.assigneeEmail));
|
|
399
|
+
}
|
|
400
|
+
this.enable();
|
|
401
|
+
});
|
|
402
|
+
}
|
|
403
|
+
ngOnChanges(changes) {
|
|
404
|
+
const assigneeEmail = changes.assigneeEmail;
|
|
405
|
+
if (assigneeEmail) {
|
|
406
|
+
this.candidateUsersForTask$.pipe(take(1)).subscribe(candidateUsers => {
|
|
407
|
+
const currentUserEmail = assigneeEmail.currentValue;
|
|
408
|
+
this.assignedEmailOnServer$.next(currentUserEmail || null);
|
|
409
|
+
this.userEmailToAssign = currentUserEmail || null;
|
|
410
|
+
this.assignedUserFullName$.next(this.getAssignedUserName(candidateUsers, currentUserEmail));
|
|
411
|
+
});
|
|
412
|
+
}
|
|
413
|
+
else {
|
|
414
|
+
this.clear();
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
assignTask(userEmail) {
|
|
418
|
+
this.disable();
|
|
419
|
+
combineLatest([this.candidateUsersForTask$, this.taskService.assignTask(this.taskId, { assignee: userEmail })])
|
|
420
|
+
.pipe(take(1), tap(([candidateUsers]) => {
|
|
421
|
+
this.userEmailToAssign = userEmail;
|
|
422
|
+
this.assignedEmailOnServer$.next(userEmail);
|
|
423
|
+
this.assignedUserFullName$.next(this.getAssignedUserName(candidateUsers, userEmail));
|
|
424
|
+
this.emitChange();
|
|
425
|
+
this.enable();
|
|
426
|
+
}))
|
|
427
|
+
.subscribe();
|
|
428
|
+
}
|
|
429
|
+
unassignTask() {
|
|
430
|
+
this.disable();
|
|
431
|
+
this.taskService
|
|
432
|
+
.unassignTask(this.taskId)
|
|
433
|
+
.pipe(tap(() => {
|
|
434
|
+
this.clear();
|
|
435
|
+
this.emitChange();
|
|
436
|
+
this.enable();
|
|
437
|
+
}))
|
|
438
|
+
.subscribe();
|
|
439
|
+
}
|
|
440
|
+
getAssignedUserName(users, userEmail) {
|
|
441
|
+
if (users && userEmail) {
|
|
442
|
+
const findUser = users.find(user => user.email === userEmail);
|
|
443
|
+
return findUser ? findUser.fullName : '';
|
|
444
|
+
}
|
|
445
|
+
return '';
|
|
446
|
+
}
|
|
447
|
+
mapUsersForDropdown(users) {
|
|
448
|
+
return (users &&
|
|
449
|
+
users
|
|
450
|
+
.map(user => { var _a; return (Object.assign(Object.assign({}, user), { lastName: ((_a = user.lastName) === null || _a === void 0 ? void 0 : _a.split(' ').splice(-1)[0]) || '' })); })
|
|
451
|
+
.sort((a, b) => a.lastName.localeCompare(b.lastName))
|
|
452
|
+
.map(user => ({ text: user.fullName, id: user.email })));
|
|
453
|
+
}
|
|
454
|
+
clear() {
|
|
455
|
+
this.assignedEmailOnServer$.next(null);
|
|
456
|
+
this.userEmailToAssign = null;
|
|
457
|
+
}
|
|
458
|
+
emitChange() {
|
|
459
|
+
this.assignmentOfTaskChanged.emit();
|
|
460
|
+
}
|
|
461
|
+
enable() {
|
|
462
|
+
this.disabled$.next(false);
|
|
463
|
+
}
|
|
464
|
+
disable() {
|
|
465
|
+
this.disabled$.next(true);
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
AssignUserToTaskComponent.decorators = [
|
|
469
|
+
{ type: Component, args: [{
|
|
470
|
+
selector: 'valtimo-assign-user-to-task',
|
|
471
|
+
template: "<ng-container\n *ngIf=\"{\n candidateUsers: candidateUsersForTask$ | async,\n disabled: disabled$ | async,\n emailOnServer: assignedEmailOnServer$ | async\n } as obs\"\n>\n <div class=\"container-fluid\">\n <div class=\"row mt-2 mb-2\">\n <div class=\"col-12 pl-0 d-flex flex-row align-items-center\">\n <ng-container *ngIf=\"obs.candidateUsers; else loading\">\n <valtimo-searchable-dropdown-select\n [style]=\"'underlinedText'\"\n [items]=\"mapUsersForDropdown(obs.candidateUsers)\"\n [buttonText]=\"'assignTask.header' | translate\"\n [searchText]=\"'interface.typeToSearch' | translate\"\n [noResultsText]=\"'interface.noSearchResults' | translate\"\n [disabled]=\"obs.disabled\"\n [selectedText]=\"'assignTask.assignedTo' | translate\"\n [selectedTextValue]=\"assignedUserFullName$ | async\"\n [clearSelectionButtonTitle]=\"'assignTask.remove' | translate\"\n [hasSelection]=\"userEmailToAssign === obs.emailOnServer && obs.emailOnServer !== null\"\n [width]=\"250\"\n (itemSelected)=\"assignTask($event)\"\n (clearSelection)=\"unassignTask()\"\n >\n </valtimo-searchable-dropdown-select>\n </ng-container>\n </div>\n </div>\n </div>\n</ng-container>\n\n<ng-template #loading>\n <h5><b>{{'assignTask.fetchingUsers' | translate}}</b></h5>\n</ng-template>\n\n",
|
|
472
|
+
styles: [".container-fluid{color:#959595}i{font-size:13px}"]
|
|
473
|
+
},] }
|
|
474
|
+
];
|
|
475
|
+
AssignUserToTaskComponent.ctorParameters = () => [
|
|
476
|
+
{ type: TaskService }
|
|
477
|
+
];
|
|
478
|
+
AssignUserToTaskComponent.propDecorators = {
|
|
479
|
+
taskId: [{ type: Input }],
|
|
480
|
+
assigneeEmail: [{ type: Input }],
|
|
481
|
+
assignmentOfTaskChanged: [{ type: Output }]
|
|
482
|
+
};
|
|
483
|
+
|
|
484
|
+
/*
|
|
485
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
486
|
+
*
|
|
487
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
488
|
+
* you may not use this file except in compliance with the License.
|
|
489
|
+
* You may obtain a copy of the License at
|
|
490
|
+
*
|
|
491
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
492
|
+
*
|
|
493
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
494
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
495
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
496
|
+
* See the License for the specific language governing permissions and
|
|
497
|
+
* limitations under the License.
|
|
498
|
+
*/
|
|
499
|
+
const ɵ0$1 = HttpLoaderFactory;
|
|
500
|
+
class TaskModule {
|
|
501
|
+
}
|
|
502
|
+
TaskModule.decorators = [
|
|
503
|
+
{ type: NgModule, args: [{
|
|
504
|
+
declarations: [TaskListComponent, TaskDetailModalComponent, AssignUserToTaskComponent],
|
|
505
|
+
imports: [
|
|
506
|
+
CommonModule,
|
|
507
|
+
TaskRoutingModule,
|
|
508
|
+
ListModule,
|
|
509
|
+
PageHeaderModule,
|
|
510
|
+
WidgetModule,
|
|
511
|
+
SpinnerModule,
|
|
512
|
+
SearchableDropdownSelectModule,
|
|
513
|
+
CamundaFormModule,
|
|
514
|
+
BrowserAnimationsModule,
|
|
515
|
+
FormsModule,
|
|
516
|
+
ToastrModule.forRoot({
|
|
517
|
+
positionClass: 'toast-bottom-full-width',
|
|
518
|
+
preventDuplicates: true
|
|
519
|
+
}),
|
|
520
|
+
TranslateModule.forRoot({
|
|
521
|
+
loader: {
|
|
522
|
+
provide: TranslateLoader,
|
|
523
|
+
useFactory: ɵ0$1,
|
|
524
|
+
deps: [HttpClient]
|
|
525
|
+
}
|
|
526
|
+
}),
|
|
527
|
+
NgbModule,
|
|
528
|
+
FormIoModule,
|
|
529
|
+
ModalModule
|
|
530
|
+
],
|
|
531
|
+
exports: [TaskListComponent, TaskDetailModalComponent, AssignUserToTaskComponent]
|
|
532
|
+
},] }
|
|
533
|
+
];
|
|
534
|
+
|
|
535
|
+
/*
|
|
536
|
+
* Copyright 2015-2020 Ritense BV, the Netherlands.
|
|
537
|
+
*
|
|
538
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
539
|
+
* you may not use this file except in compliance with the License.
|
|
540
|
+
* You may obtain a copy of the License at
|
|
541
|
+
*
|
|
542
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
543
|
+
*
|
|
544
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
545
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
546
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
547
|
+
* See the License for the specific language governing permissions and
|
|
548
|
+
* limitations under the License.
|
|
549
|
+
*/
|
|
550
|
+
|
|
551
|
+
/**
|
|
552
|
+
* Generated bundle index. Do not edit.
|
|
553
|
+
*/
|
|
554
|
+
|
|
555
|
+
export { TaskDetailModalComponent, TaskListComponent, TaskModule, TaskService, ɵ0$1 as ɵ0, AssignUserToTaskComponent as ɵa, TaskRoutingModule as ɵb };
|
|
556
|
+
//# sourceMappingURL=valtimo-task.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"valtimo-task.js","sources":["../../../../projects/valtimo/task/src/lib/task.service.ts","../../../../projects/valtimo/task/src/lib/task-detail-modal/task-detail-modal.component.ts","../../../../projects/valtimo/task/src/lib/task-list/task-list.component.ts","../../../../projects/valtimo/task/src/lib/task-routing.module.ts","../../../../projects/valtimo/task/src/lib/assign-user-to-task/assign-user-to-task.component.ts","../../../../projects/valtimo/task/src/lib/task.module.ts","../../../../projects/valtimo/task/src/public_api.ts","../../../../projects/valtimo/task/src/valtimo-task.ts"],"sourcesContent":["/*\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {Injectable} from '@angular/core';\nimport {HttpClient} from '@angular/common/http';\nimport {Observable} from 'rxjs';\nimport {AssigneeRequest, Task, User} from '@valtimo/contract';\nimport {ConfigService} from '@valtimo/config';\n\n@Injectable({providedIn: 'root'})\nexport class TaskService {\n private valtimoEndpointUri: string;\n\n constructor(\n private http: HttpClient,\n configService: ConfigService\n ) {\n this.valtimoEndpointUri = configService.config.valtimoApi.endpointUri;\n }\n\n queryTasks(params?: any): Observable<any> {\n return this.http.get(`${this.valtimoEndpointUri}task`, {observe: 'response', params: params});\n }\n\n getTasks(): Observable<Task[]> {\n return this.http.get<Task[]>(`${this.valtimoEndpointUri}task?filter=all`);\n }\n\n getTask(id: string): Observable<any> {\n return this.http.get(this.valtimoEndpointUri + 'task/' + id);\n }\n\n getCandidateUsers(id: string): Observable<User[]> {\n return this.http.get<User[]>(this.valtimoEndpointUri + 'task/' + id + '/candidate-user');\n }\n\n assignTask(id: string, assigneeRequest: AssigneeRequest): Observable<any> {\n return this.http.post(this.valtimoEndpointUri + 'task/' + id + '/assign',\n assigneeRequest\n );\n }\n\n unassignTask(id: string): Observable<any> {\n return this.http.post(this.valtimoEndpointUri + 'task/' + id + '/unassign',\n null\n );\n }\n\n completeTask(id: string, variables: Map<string, any>): Observable<any> {\n return this.http.post(\n this.valtimoEndpointUri + 'task/' + id + '/complete',\n {\n variables: variables,\n filesToDelete: []\n });\n }\n\n}\n","/*\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {Component, EventEmitter, Output, ViewChild, ViewEncapsulation} from '@angular/core';\nimport {Router} from '@angular/router';\nimport {FormioComponent, ModalComponent} from '@valtimo/components';\nimport {FormAssociation, FormioSubmission, FormSubmissionResult, Task} from '@valtimo/contract';\nimport {FormLinkService} from '@valtimo/form-link';\nimport {FormioForm} from 'angular-formio';\nimport * as momentImported from 'moment';\nimport {NGXLogger} from 'ngx-logger';\nimport {ToastrService} from 'ngx-toastr';\nimport {FormioOptionsImpl, ValtimoFormioOptions} from '@valtimo/contract';\n\nconst moment = momentImported;\nmoment.locale(localStorage.getItem('langKey') || '');\n\n@Component({\n selector: 'valtimo-task-detail-modal',\n templateUrl: './task-detail-modal.component.html',\n styleUrls: ['./task-detail-modal.component.scss'],\n encapsulation: ViewEncapsulation.None\n})\nexport class TaskDetailModalComponent {\n public task: Task | null = null;\n public formDefinition: FormioForm;\n public page: any = null;\n public formioOptions: ValtimoFormioOptions;\n\n @ViewChild('form') form: FormioComponent;\n @ViewChild('taskDetailModal') modal: ModalComponent;\n @Output() formSubmit = new EventEmitter();\n @Output() assignmentOfTaskChanged = new EventEmitter();\n private formAssociation: FormAssociation;\n public errorMessage: String = null;\n\n constructor(private toastr: ToastrService,\n private formLinkService: FormLinkService,\n private router: Router,\n private logger: NGXLogger) {\n this.formioOptions = new FormioOptionsImpl();\n this.formioOptions.disableAlerts = true;\n }\n\n resetFormDefinition() {\n // reset formDefinition in order to reload form-io component\n this.formDefinition = null;\n }\n\n openTaskDetails(task: Task) {\n this.resetFormDefinition();\n this.task = task;\n this.page = {\n title: task.name,\n subtitle: `Created ${moment(task.created).fromNow()}`\n };\n this.formLinkService\n .getPreFilledFormDefinitionByFormLinkId(\n task.processDefinitionKey,\n task.businessKey,\n task.taskDefinitionKey,\n task.id // taskInstanceId\n )\n .subscribe(\n (formDefinition) => {\n this.formAssociation = formDefinition.formAssociation;\n const className = this.formAssociation.formLink.className.split('.');\n const linkType = className[className.length - 1];\n switch (linkType) {\n case 'BpmnElementFormIdLink':\n this.formDefinition = formDefinition;\n this.modal.show();\n break;\n case 'BpmnElementUrlLink':\n const url = this.router.serializeUrl(this.router.createUrlTree([formDefinition.formAssociation.formLink.url]));\n window.open(url, '_blank');\n break;\n case 'BpmnElementAngularStateUrlLink':\n this.router.navigate([formDefinition.formAssociation.formLink.url]);\n break;\n default:\n this.logger.fatal('Unsupported class name');\n }\n },\n (errors) => {\n if (errors?.error?.detail) {\n this.errorMessage = errors.error.detail;\n }\n this.modal.show();\n }\n );\n }\n\n public gotoFormLinkScreen() {\n this.modal.hide();\n this.router.navigate(['form-links']);\n }\n\n public onSubmit(submission: FormioSubmission) {\n this.formLinkService\n .onSubmit(this.task.processDefinitionKey, this.formAssociation.formLink.id, submission.data, this.task.businessKey, this.task.id)\n .subscribe(\n (formSubmissionResult: FormSubmissionResult) => {\n this.toastr.success(this.task.name + ' has successfully been completed');\n this.modal.hide();\n this.task = null;\n this.formSubmit.emit();\n },\n (errors) => {\n this.form.showErrors(errors);\n }\n );\n }\n}\n","/*\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {Component, OnDestroy, ViewChild, ViewEncapsulation} from '@angular/core';\nimport {Router} from '@angular/router';\nimport {TaskService} from '../task.service';\nimport * as moment_ from 'moment';\nimport {Task, TaskList} from '@valtimo/contract';\nimport {NGXLogger} from 'ngx-logger';\nimport {TaskDetailModalComponent} from '../task-detail-modal/task-detail-modal.component';\nimport {TranslateService} from '@ngx-translate/core';\nimport {combineLatest, Subscription} from 'rxjs';\n\nconst moment = moment_;\nmoment.locale(localStorage.getItem('langKey') || '');\n\n@Component({\n selector: 'valtimo-task-list',\n templateUrl: './task-list.component.html',\n styleUrls: ['./task-list.component.scss'],\n encapsulation: ViewEncapsulation.None\n})\nexport class TaskListComponent implements OnDestroy {\n @ViewChild('taskDetail') taskDetail: TaskDetailModalComponent;\n public tasks = {\n mine: new TaskList(),\n open: new TaskList(),\n all: new TaskList()\n };\n public currentTaskType = 'mine';\n public listTitle: string | null = null;\n public listDescription: string | null = null;\n private translationSubscription: Subscription;\n\n public paginationClicked(page: number, type: string) {\n this.tasks[type].page = page - 1;\n this.getTasks(type);\n }\n\n constructor(\n private taskService: TaskService,\n private router: Router,\n private logger: NGXLogger,\n private translateService: TranslateService\n ) {\n }\n\n paginationSet() {\n this.tasks.mine.pagination.size = this.tasks.all.pagination.size = this.tasks.open.pagination.size = this.tasks[\n this.currentTaskType\n ].pagination.size;\n this.getTasks(this.currentTaskType);\n }\n\n private clearPagination(type: string) {\n this.tasks[type].page = 0;\n }\n\n tabChange(tab) {\n this.clearPagination(this.currentTaskType);\n switch (tab.nextId) {\n case 'ngb-tab-0':\n this.getTasks('mine');\n break;\n case 'ngb-tab-1':\n this.getTasks('open');\n break;\n case 'ngb-tab-2':\n this.getTasks('all');\n break;\n default:\n this.logger.fatal('Unreachable case');\n }\n }\n\n showTask(task) {\n this.router.navigate(['tasks', task.id]);\n }\n\n getTasks(type: string) {\n let params: any;\n\n this.translationSubscription = combineLatest([\n this.translateService.stream(`task-list.${type}.title`),\n this.translateService.stream(`task-list.${type}.description`)\n ]).subscribe(([title, description]) => {\n this.listTitle = title;\n this.listDescription = description;\n });\n\n switch (type) {\n case 'mine':\n params = {page: this.tasks.mine.page, size: this.tasks.mine.pagination.size, filter: 'mine'};\n this.currentTaskType = 'mine';\n break;\n case 'open':\n params = {page: this.tasks.open.page, size: this.tasks.open.pagination.size, filter: 'open'};\n this.currentTaskType = 'open';\n break;\n case 'all':\n params = {page: this.tasks.all.page, size: this.tasks.open.pagination.size, filter: 'all'};\n this.currentTaskType = 'all';\n break;\n default:\n this.logger.fatal('Unreachable case');\n }\n\n this.taskService.queryTasks(params).subscribe((results: any) => {\n this.tasks[type].pagination.collectionSize = results.headers.get('x-total-count');\n this.tasks[type].tasks = <Task[]>results.body;\n this.tasks[type].tasks.map((task: Task) => {\n task.created = moment(task.created).format('DD MMM YYYY HH:mm');\n if (task.due) {\n task.due = moment(task.due).format('DD MMM YYYY HH:mm');\n }\n });\n this.tasks[type].fields = [\n {\n key: 'created',\n label: 'Created on'\n },\n {\n key: 'name',\n label: 'Name'\n },\n {\n key: 'valtimoAssignee.fullName',\n label: 'Assignee'\n },\n {\n key: 'due',\n label: 'Due date'\n }\n ];\n });\n }\n\n public rowOpenTaskClick(task) {\n if (!task.endTime) {\n this.taskDetail.openTaskDetails(task);\n } else {\n return false;\n }\n }\n\n ngOnDestroy(): void {\n this.translationSubscription.unsubscribe();\n }\n\n}\n","/*\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {NgModule} from '@angular/core';\nimport {RouterModule, Routes} from '@angular/router';\nimport {CommonModule} from '@angular/common';\nimport {AuthGuardService} from '@valtimo/security';\nimport {TaskListComponent} from './task-list/task-list.component';\nimport {ROLE_USER} from '@valtimo/contract';\n\nconst routes: Routes = [\n {\n path: 'tasks',\n component: TaskListComponent,\n canActivate: [AuthGuardService],\n data: {title: 'Tasks', roles: [ROLE_USER]}\n }\n];\n\n@NgModule({\n declarations: [],\n imports: [\n CommonModule,\n RouterModule.forChild(routes),\n ],\n exports: [RouterModule]\n})\nexport class TaskRoutingModule {\n}\n","/*\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {Component, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges} from '@angular/core';\nimport {DropdownItem, User} from '@valtimo/contract';\nimport {BehaviorSubject, combineLatest} from 'rxjs';\nimport {take, tap} from 'rxjs/operators';\nimport {TaskService} from '../task.service';\n\n@Component({\n selector: 'valtimo-assign-user-to-task',\n templateUrl: './assign-user-to-task.component.html',\n styleUrls: ['./assign-user-to-task.component.scss']\n})\nexport class AssignUserToTaskComponent implements OnInit, OnChanges {\n @Input() taskId: string;\n @Input() assigneeEmail: string;\n @Output() assignmentOfTaskChanged = new EventEmitter();\n\n candidateUsersForTask$ = new BehaviorSubject<User[]>(undefined);\n disabled$ = new BehaviorSubject<boolean>(true);\n assignedEmailOnServer$ = new BehaviorSubject<string>(null);\n userEmailToAssign: string = null;\n assignedUserFullName$ = new BehaviorSubject<string>(null);\n\n constructor(private taskService: TaskService) {}\n\n ngOnInit(): void {\n this.taskService.getCandidateUsers(this.taskId).subscribe(candidateUsers => {\n this.candidateUsersForTask$.next(candidateUsers);\n if (this.assigneeEmail) {\n this.assignedEmailOnServer$.next(this.assigneeEmail);\n this.userEmailToAssign = this.assigneeEmail;\n this.assignedUserFullName$.next(this.getAssignedUserName(candidateUsers, this.assigneeEmail));\n }\n this.enable();\n });\n }\n\n ngOnChanges(changes: SimpleChanges) {\n const assigneeEmail = changes.assigneeEmail;\n if (assigneeEmail) {\n this.candidateUsersForTask$.pipe(take(1)).subscribe(candidateUsers => {\n const currentUserEmail = assigneeEmail.currentValue;\n this.assignedEmailOnServer$.next(currentUserEmail || null);\n this.userEmailToAssign = currentUserEmail || null;\n this.assignedUserFullName$.next(this.getAssignedUserName(candidateUsers, currentUserEmail));\n });\n } else {\n this.clear();\n }\n }\n\n assignTask(userEmail: string): void {\n this.disable();\n combineLatest([this.candidateUsersForTask$, this.taskService.assignTask(this.taskId, {assignee: userEmail})])\n .pipe(\n take(1),\n tap(([candidateUsers]) => {\n this.userEmailToAssign = userEmail;\n this.assignedEmailOnServer$.next(userEmail);\n this.assignedUserFullName$.next(this.getAssignedUserName(candidateUsers, userEmail));\n this.emitChange();\n this.enable();\n })\n )\n .subscribe();\n }\n\n unassignTask(): void {\n this.disable();\n this.taskService\n .unassignTask(this.taskId)\n .pipe(\n tap(() => {\n this.clear();\n this.emitChange();\n this.enable();\n })\n )\n .subscribe();\n }\n\n getAssignedUserName(users: User[], userEmail: string): string {\n if (users && userEmail) {\n const findUser = users.find(user => user.email === userEmail);\n return findUser ? findUser.fullName : '';\n }\n return '';\n }\n\n mapUsersForDropdown(users: User[]): DropdownItem[] {\n return (\n users &&\n users\n .map(user => ({...user, lastName: user.lastName?.split(' ').splice(-1)[0] || ''}))\n .sort((a, b) => a.lastName.localeCompare(b.lastName))\n .map(user => ({text: user.fullName, id: user.email}))\n );\n }\n\n private clear(): void {\n this.assignedEmailOnServer$.next(null);\n this.userEmailToAssign = null;\n }\n\n private emitChange(): void {\n this.assignmentOfTaskChanged.emit();\n }\n\n private enable(): void {\n this.disabled$.next(false);\n }\n\n private disable(): void {\n this.disabled$.next(true);\n }\n}\n","/*\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { CommonModule } from '@angular/common';\nimport { HttpClient } from '@angular/common/http';\nimport { NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\nimport { NgbModule } from '@ng-bootstrap/ng-bootstrap';\nimport { TranslateLoader, TranslateModule } from '@ngx-translate/core';\nimport {\n CamundaFormModule,\n FormIoModule,\n ListModule,\n ModalModule,\n PageHeaderModule,\n SpinnerModule,\n WidgetModule,\n SearchableDropdownSelectModule\n} from '@valtimo/components';\nimport { HttpLoaderFactory } from '@valtimo/contract';\nimport { ToastrModule } from 'ngx-toastr';\nimport { TaskDetailModalComponent } from './task-detail-modal/task-detail-modal.component';\nimport { TaskListComponent } from './task-list/task-list.component';\nimport { TaskRoutingModule } from './task-routing.module';\nimport { AssignUserToTaskComponent } from './assign-user-to-task/assign-user-to-task.component';\n\n@NgModule({\n declarations: [TaskListComponent, TaskDetailModalComponent, AssignUserToTaskComponent],\n imports: [\n CommonModule,\n TaskRoutingModule,\n ListModule,\n PageHeaderModule,\n WidgetModule,\n SpinnerModule,\n SearchableDropdownSelectModule,\n CamundaFormModule,\n BrowserAnimationsModule,\n FormsModule,\n ToastrModule.forRoot({\n positionClass: 'toast-bottom-full-width',\n preventDuplicates: true\n }),\n TranslateModule.forRoot({\n loader: {\n provide: TranslateLoader,\n useFactory: HttpLoaderFactory,\n deps: [HttpClient]\n }\n }),\n NgbModule,\n FormIoModule,\n ModalModule\n ],\n exports: [TaskListComponent, TaskDetailModalComponent, AssignUserToTaskComponent]\n})\nexport class TaskModule {}\n","/*\n * Copyright 2015-2020 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/*\n * Public API Surface of task\n */\n\nexport * from './lib/task.service';\nexport * from './lib/task.module';\nexport * from './lib/task-detail-modal/task-detail-modal.component';\nexport * from './lib/task-list/task-list.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n\nexport {AssignUserToTaskComponent as ɵa} from './lib/assign-user-to-task/assign-user-to-task.component';\nexport {TaskRoutingModule as ɵb} from './lib/task-routing.module';"],"names":["moment","moment_"],"mappings":"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"}
|