mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* [ADF-3539] created first version for process list cloud * [ADF-3539] fixed process list and added demo page * [ADF-3539] fixed sorting and start working on tests * [ADF-3539] start adding tests for process list cloud * [ADF-3539] fixed empty templates unit tests * [ADF-3539] added documentation * [ADF-3539] missed import * [ADF-3539] fixed wrong export * [ADF-3539] removed model * [ADF-3539] fixed style problem and removed wrong comment
67 lines
1.9 KiB
TypeScript
67 lines
1.9 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, ViewChild } from '@angular/core';
|
|
import { UserPreferencesService } from '@alfresco/adf-core';
|
|
import { ProcessListCloudComponent } from '@alfresco/adf-process-services-cloud';
|
|
|
|
@Component({
|
|
selector: 'app-process-list-example',
|
|
templateUrl: './process-list-cloud-example.component.html',
|
|
styleUrls: ['./process-list-cloud-example.component.scss']
|
|
})
|
|
export class ProcessListCloudExampleComponent {
|
|
|
|
@ViewChild('processCloud')
|
|
processCloud: ProcessListCloudComponent;
|
|
|
|
currentAppName: string = '';
|
|
status: string = '';
|
|
filterId: string = '';
|
|
sortArray: any = [];
|
|
sortField: string;
|
|
sortDirection: string;
|
|
|
|
constructor(private userPreference: UserPreferencesService) {
|
|
}
|
|
|
|
onAppClick(appClicked: any) {
|
|
this.currentAppName = appClicked.name;
|
|
}
|
|
|
|
onClick() {
|
|
this.currentAppName = '';
|
|
}
|
|
|
|
onChangePageSize(event) {
|
|
this.userPreference.paginationSize = event.maxItems;
|
|
}
|
|
|
|
onFilterButtonClick($event) {
|
|
let newSortParam: any = {
|
|
orderBy: this.sortField,
|
|
direction: this.sortDirection };
|
|
this.sortArray.push(newSortParam);
|
|
this.processCloud.reload();
|
|
}
|
|
|
|
onClearFilters() {
|
|
this.sortArray = [];
|
|
this.processCloud.reload();
|
|
}
|
|
}
|