Files
alfresco-ng2-components/ng2-components/ng2-activiti-tasklist/src/components/activiti-start-task.component.ts
2017-01-16 11:49:43 +00:00

131 lines
3.7 KiB
TypeScript

/*!
* @license
* Copyright 2016 Alfresco Software, Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';
import { AlfrescoTranslationService, LogService } from 'ng2-alfresco-core';
import { TaskDetailsModel } from '../models/task-details.model';
import { ActivitiTaskListService } from './../services/activiti-tasklist.service';
import { Form } from '../models/form.model';
declare let componentHandler: any;
declare let dialogPolyfill: any;
@Component({
selector: 'activiti-start-task',
moduleId: module.id,
templateUrl: './activiti-start-task.component.html',
styleUrls: ['./activiti-start-task.component.css']
})
export class ActivitiStartTaskButton {
@Input()
appId: string;
@Output()
onSuccess: EventEmitter<any> = new EventEmitter<any>();
@ViewChild('dialog')
dialog: any;
forms: Form [];
formId: string;
name: string;
description: string;
/**
* Constructor
* @param auth
* @param translate
* @param taskService
*/
constructor(private translateService: AlfrescoTranslationService,
private taskService: ActivitiTaskListService,
private logService: LogService) {
if (translateService) {
translateService.addTranslationFolder('ng2-activiti-tasklist', 'node_modules/ng2-activiti-tasklist/src');
}
}
public start() {
if (this.name) {
this.taskService.createNewTask(new TaskDetailsModel({
name: this.name,
description: this.description,
category: this.appId ? '' + this.appId : null
})).subscribe(
(res: any) => {
this.onSuccess.emit(res);
this.closeDialog();
this.resetForm();
this.attachForm(res.id);
},
(err) => {
window.alert('An error occurred while trying to add the task');
this.logService.error(err);
}
);
}
}
private attachForm(taskId: string) {
if (this.formId && taskId) {
this.taskService.attachFormToATask(taskId, Number(this.formId));
this.formId = null;
}
}
public cancel() {
this.closeDialog();
}
public showDialog() {
if (!this.dialog.nativeElement.showModal) {
dialogPolyfill.registerDialog(this.dialog.nativeElement);
}
this.loadFormsTask();
if (this.dialog) {
this.dialog.nativeElement.showModal();
}
}
private loadFormsTask() {
this.taskService.getFormList().subscribe((res: Form[]) => {
this.forms = res;
},
(err) => {
window.alert('An error occurred while trying to get the forms');
this.logService.error(err);
});
}
private closeDialog() {
if (this.dialog) {
this.dialog.nativeElement.close();
}
}
private resetForm() {
this.name = '';
this.description = '';
}
}