2019-03-26 17:32:37 +01:00
|
|
|
import { Injectable } from '@angular/core';
|
|
|
|
|
|
|
|
import { Workbook } from 'exceljs';
|
|
|
|
|
|
|
|
import { InfoToExport } from './motion-pdf.service';
|
2019-04-03 11:31:08 +02:00
|
|
|
import { MotionRepositoryService } from 'app/core/repositories/motions/motion-repository.service';
|
|
|
|
import { TranslateService } from '@ngx-translate/core';
|
2019-03-26 17:32:37 +01:00
|
|
|
import { ViewMotion } from '../models/view-motion';
|
|
|
|
import { XlsxExportServiceService } from 'app/core/ui-services/xlsx-export-service.service';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Service to export motion elements to XLSX
|
|
|
|
*/
|
|
|
|
@Injectable({
|
|
|
|
providedIn: 'root'
|
|
|
|
})
|
|
|
|
export class MotionXlsxExportService {
|
|
|
|
/**
|
|
|
|
* Constructor
|
2019-04-03 11:31:08 +02:00
|
|
|
*
|
|
|
|
* @param xlsx XlsxExportServiceService
|
|
|
|
* @param translate translationService
|
|
|
|
* @param motionRepo MotionRepositoryService
|
2019-03-26 17:32:37 +01:00
|
|
|
*/
|
2019-04-03 11:31:08 +02:00
|
|
|
public constructor(
|
|
|
|
private xlsx: XlsxExportServiceService,
|
|
|
|
private translate: TranslateService,
|
|
|
|
private motionRepo: MotionRepositoryService
|
|
|
|
) {}
|
2019-03-26 17:32:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export motions as XLSX
|
|
|
|
*
|
|
|
|
* @param motions
|
|
|
|
* @param contentToExport
|
|
|
|
* @param infoToExport
|
|
|
|
*/
|
|
|
|
public exportMotionList(motions: ViewMotion[], infoToExport: InfoToExport[]): void {
|
|
|
|
const workbook = new Workbook();
|
|
|
|
const worksheet = workbook.addWorksheet(this.translate.instant('Motions'));
|
|
|
|
const properties = ['identifier', 'title'].concat(infoToExport);
|
|
|
|
|
|
|
|
// if the ID was exported as well, shift it to the first position
|
|
|
|
if (properties[properties.length - 1] === 'id') {
|
|
|
|
properties.unshift(properties.pop());
|
|
|
|
}
|
|
|
|
|
|
|
|
worksheet.columns = properties.map(property => {
|
|
|
|
return {
|
|
|
|
header: this.translate.instant(property.charAt(0).toLocaleUpperCase() + property.slice(1))
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
// style the header row
|
|
|
|
worksheet.getRow(1).font = {
|
|
|
|
underline: true,
|
|
|
|
bold: true
|
|
|
|
};
|
|
|
|
|
|
|
|
// map motion data to properties
|
|
|
|
const motionData = motions.map(motion =>
|
|
|
|
properties.map(property => {
|
|
|
|
const motionProp = motion[property];
|
|
|
|
if (motionProp) {
|
2019-04-03 11:31:08 +02:00
|
|
|
switch (property) {
|
|
|
|
case 'state':
|
|
|
|
return this.motionRepo.getExtendedStateLabel(motion);
|
|
|
|
case 'recommendation':
|
|
|
|
return this.motionRepo.getExtendedRecommendationLabel(motion);
|
|
|
|
default:
|
|
|
|
return this.translate.instant(motionProp.toString());
|
|
|
|
}
|
2019-03-26 17:32:37 +01:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
// add to sheet
|
|
|
|
for (const motion of motionData) {
|
|
|
|
worksheet.addRow(motion);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.xlsx.autoSize(worksheet, 0);
|
|
|
|
this.xlsx.saveXlsx(workbook, this.translate.instant('Motions'));
|
|
|
|
}
|
|
|
|
}
|