mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* [ADF-4713] Add new DecimalNumber Pipe to transform and localize numbers * Unsubscribe from userPreference service * Make Pipe impure * Add documentation in localization page
144 lines
4.9 KiB
TypeScript
144 lines
4.9 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 { Injectable } from '@angular/core';
|
|
import {
|
|
CardViewItemProperties,
|
|
CardViewItem,
|
|
CardViewTextItemModel,
|
|
CardViewBoolItemModel,
|
|
CardViewDateItemModel,
|
|
CardViewDatetimeItemModel,
|
|
CardViewIntItemModel,
|
|
CardViewFloatItemModel,
|
|
LogService,
|
|
MultiValuePipe,
|
|
AppConfigService,
|
|
DecimalNumberPipe
|
|
} from '@alfresco/adf-core';
|
|
import { Property, CardViewGroup, OrganisedPropertyGroup } from '../interfaces/content-metadata.interfaces';
|
|
|
|
const D_TEXT = 'd:text';
|
|
const D_MLTEXT = 'd:mltext';
|
|
const D_DATE = 'd:date';
|
|
const D_DATETIME = 'd:datetime';
|
|
const D_INT = 'd:int';
|
|
const D_LONG = 'd:long';
|
|
const D_FLOAT = 'd:float';
|
|
const D_DOUBLE = 'd:double';
|
|
const D_BOOLEAN = 'd:boolean';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class PropertyGroupTranslatorService {
|
|
|
|
static readonly RECOGNISED_ECM_TYPES = [D_TEXT, D_MLTEXT, D_DATE, D_DATETIME, D_INT, D_LONG, D_FLOAT, D_DOUBLE, D_BOOLEAN];
|
|
|
|
valueSeparator: string;
|
|
|
|
constructor(private logService: LogService,
|
|
private multiValuePipe: MultiValuePipe,
|
|
private decimalNumberPipe: DecimalNumberPipe,
|
|
private appConfig: AppConfigService) {
|
|
this.valueSeparator = this.appConfig.get<string>('content-metadata.multi-value-pipe-separator');
|
|
}
|
|
|
|
public translateToCardViewGroups(propertyGroups: OrganisedPropertyGroup[], propertyValues): CardViewGroup[] {
|
|
return propertyGroups.map((propertyGroup) => {
|
|
const translatedPropertyGroup: any = Object.assign({}, propertyGroup);
|
|
translatedPropertyGroup.properties = this.translateArray(propertyGroup.properties, propertyValues);
|
|
return translatedPropertyGroup;
|
|
});
|
|
}
|
|
|
|
private translateArray(properties: Property[], propertyValues: any): CardViewItem[] {
|
|
return properties.map((property) => {
|
|
return this.translate(property, propertyValues);
|
|
});
|
|
}
|
|
|
|
private translate(property: Property, propertyValues: any): CardViewItem {
|
|
let propertyValue;
|
|
if (propertyValues && propertyValues[property.name]) {
|
|
propertyValue = propertyValues[property.name];
|
|
}
|
|
|
|
this.checkECMTypeValidity(property.dataType);
|
|
|
|
const prefix = 'properties.';
|
|
|
|
const propertyDefinition: CardViewItemProperties = {
|
|
label: property.title || property.name,
|
|
value: propertyValue,
|
|
key: `${prefix}${property.name}`,
|
|
default: property.defaultValue,
|
|
editable: true
|
|
};
|
|
let cardViewItemProperty;
|
|
|
|
switch (property.dataType) {
|
|
|
|
case D_MLTEXT:
|
|
cardViewItemProperty = new CardViewTextItemModel(Object.assign(propertyDefinition, {
|
|
multiline: true
|
|
}));
|
|
break;
|
|
|
|
case D_INT:
|
|
case D_LONG:
|
|
cardViewItemProperty = new CardViewIntItemModel(propertyDefinition);
|
|
break;
|
|
|
|
case D_FLOAT:
|
|
case D_DOUBLE:
|
|
cardViewItemProperty = new CardViewFloatItemModel(Object.assign(propertyDefinition, {
|
|
pipes: [{ pipe: this.decimalNumberPipe }]
|
|
}));
|
|
break;
|
|
|
|
case D_DATE:
|
|
cardViewItemProperty = new CardViewDateItemModel(propertyDefinition);
|
|
break;
|
|
|
|
case D_DATETIME:
|
|
cardViewItemProperty = new CardViewDatetimeItemModel(propertyDefinition);
|
|
break;
|
|
|
|
case D_BOOLEAN:
|
|
cardViewItemProperty = new CardViewBoolItemModel(propertyDefinition);
|
|
break;
|
|
|
|
case D_TEXT:
|
|
default:
|
|
cardViewItemProperty = new CardViewTextItemModel(Object.assign(propertyDefinition, {
|
|
multivalued: property.multiValued,
|
|
multiline: property.multiValued,
|
|
pipes: [{ pipe: this.multiValuePipe, params: [this.valueSeparator]}]
|
|
}));
|
|
}
|
|
|
|
return cardViewItemProperty;
|
|
}
|
|
|
|
private checkECMTypeValidity(ecmPropertyType) {
|
|
if (PropertyGroupTranslatorService.RECOGNISED_ECM_TYPES.indexOf(ecmPropertyType) === -1) {
|
|
this.logService.error(`Unknown type for mapping: ${ecmPropertyType}`);
|
|
}
|
|
}
|
|
}
|