159 lines
4.9 KiB
C#
159 lines
4.9 KiB
C#
using AircraftPlantBusinessLogic.OfficePackage.HelperEnums;
|
||
using AircraftPlantBusinessLogic.OfficePackage.HelperModels;
|
||
using MigraDoc.DocumentObjectModel;
|
||
using MigraDoc.DocumentObjectModel.Tables;
|
||
using MigraDoc.Rendering;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace AircraftPlantBusinessLogic.OfficePackage.Implements
|
||
{
|
||
/// <summary>
|
||
/// Реализация абстрактного класса для сохранения Pdf-файла
|
||
/// </summary>
|
||
public class SaveToPdf : AbstractSaveToPdf
|
||
{
|
||
/// <summary>
|
||
/// Документ
|
||
/// </summary>
|
||
private Document? _document;
|
||
|
||
/// <summary>
|
||
/// Секция
|
||
/// </summary>
|
||
private Section? _section;
|
||
|
||
/// <summary>
|
||
/// Таблица
|
||
/// </summary>
|
||
private Table? _table;
|
||
|
||
/// <summary>
|
||
/// Получение типа выравнивания текста
|
||
/// </summary>
|
||
/// <param name="type"></param>
|
||
/// <returns></returns>
|
||
private static ParagraphAlignment GetParagraphAlignment(PdfParagraphAlignmentType type)
|
||
{
|
||
return type switch
|
||
{
|
||
PdfParagraphAlignmentType.Center => ParagraphAlignment.Center,
|
||
PdfParagraphAlignmentType.Left => ParagraphAlignment.Left,
|
||
PdfParagraphAlignmentType.Right => ParagraphAlignment.Right,
|
||
_ => ParagraphAlignment.Justify,
|
||
};
|
||
}
|
||
|
||
/// <summary>
|
||
/// Настройка стилей
|
||
/// </summary>
|
||
/// <param name="document"></param>
|
||
private static void DefineStyles(Document document)
|
||
{
|
||
var style = document.Styles["Normal"];
|
||
style.Font.Name = "Times New Roman";
|
||
style.Font.Size = 14;
|
||
|
||
style = document.Styles.AddStyle("NormalTitle", "Normal");
|
||
style.Font.Bold = true;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Создание pdf-файла
|
||
/// </summary>
|
||
/// <param name="info"></param>
|
||
protected override void CreatePdf(PdfInfo info)
|
||
{
|
||
_document = new Document();
|
||
DefineStyles(_document);
|
||
|
||
_section = _document.AddSection();
|
||
}
|
||
|
||
/// <summary>
|
||
/// Создание абзаца с текстом
|
||
/// </summary>
|
||
/// <param name="pdfParagraph"></param>
|
||
protected override void CreateParagraph(PdfParagraph pdfParagraph)
|
||
{
|
||
if (_section == null)
|
||
{
|
||
return;
|
||
}
|
||
|
||
var paragraph = _section.AddParagraph(pdfParagraph.Text);
|
||
paragraph.Format.SpaceAfter = "1cm";
|
||
paragraph.Format.Alignment = GetParagraphAlignment(pdfParagraph.ParagraphAlignment);
|
||
paragraph.Style = pdfParagraph.Style;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Создание таблицы
|
||
/// </summary>
|
||
/// <param name="columns"></param>
|
||
protected override void CreateTable(List<string> columns)
|
||
{
|
||
if (_document == null)
|
||
{
|
||
return;
|
||
}
|
||
_table = _document.LastSection.AddTable();
|
||
|
||
foreach (var elem in columns)
|
||
{
|
||
_table.AddColumn(elem);
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Создание и заполнение строки
|
||
/// </summary>
|
||
/// <param name="rowParameters"></param>
|
||
protected override void CreateRow(PdfRowParameters rowParameters)
|
||
{
|
||
if (_table == null)
|
||
{
|
||
return;
|
||
}
|
||
|
||
var row = _table.AddRow();
|
||
for (int i = 0; i < rowParameters.Texts.Count; ++i)
|
||
{
|
||
row.Cells[i].AddParagraph(rowParameters.Texts[i]);
|
||
|
||
if (!string.IsNullOrEmpty(rowParameters.Style))
|
||
{
|
||
row.Cells[i].Style = rowParameters.Style;
|
||
}
|
||
|
||
Unit borderWidth = 0.5;
|
||
|
||
row.Cells[i].Borders.Left.Width = borderWidth;
|
||
row.Cells[i].Borders.Right.Width = borderWidth;
|
||
row.Cells[i].Borders.Top.Width = borderWidth;
|
||
row.Cells[i].Borders.Bottom.Width = borderWidth;
|
||
|
||
row.Cells[i].Format.Alignment = GetParagraphAlignment(rowParameters.ParagraphAlignment);
|
||
row.Cells[i].VerticalAlignment = VerticalAlignment.Center;
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Сохранение файла
|
||
/// </summary>
|
||
/// <param name="info"></param>
|
||
protected override void SavePdf(PdfInfo info)
|
||
{
|
||
var renderer = new PdfDocumentRenderer(true)
|
||
{
|
||
Document = _document
|
||
};
|
||
renderer.RenderDocument();
|
||
renderer.PdfDocument.Save(info.FileName);
|
||
}
|
||
}
|
||
}
|