alfresco-ng2-components/lib/core/datatable/data/object-datacolumn.model.ts
Bartosz Sekuła 48c3fac018
[AAE-7819] Change column order - enable drag and drop for datatable - [1/3] (#7567)
* [AAE-7819] Enable drag and drop for datatable [1/3]

* [AAE-7819] Change column order - load and save columns order preferences for PROCESSES - [2/3] (#7568)

* [AAE-7819] Load and save column order preferences for processes

* [AAE-7819] Load and save column order preferences for tasks [3/3] (#7569)

* fix css

* fix icon module import

* Fix unit tests

* Fix test

* Fix e2e

* Fix C279927
2022-04-11 08:01:02 +02:00

55 lines
1.7 KiB
TypeScript

/*!
* @license
* Copyright 2019 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 { TemplateRef } from '@angular/core';
import { DataColumn, DataColumnType } from './data-column.model';
// Simple implementation of the DataColumn interface.
export class ObjectDataColumn implements DataColumn {
id?: string;
key: string;
type: DataColumnType;
format: string;
sortable: boolean;
title: string;
srTitle: string;
cssClass: string;
template?: TemplateRef<any>;
copyContent?: boolean;
focus?: boolean;
sortingKey?: string;
header?: TemplateRef<any>;
draggable: boolean;
constructor(input: any) {
this.id = input.id ?? '';
this.key = input.key;
this.type = input.type || 'text';
this.format = input.format;
this.sortable = input.sortable;
this.title = input.title;
this.srTitle = input.srTitle;
this.cssClass = input.cssClass;
this.template = input.template;
this.copyContent = input.copyContent;
this.focus = input.focus;
this.sortingKey = input.sortingKey;
this.header = input.header;
this.draggable = input.draggable ?? false;
}
}