Files

84 lines
2.9 KiB
C#
Raw Permalink Normal View History

2021-01-16 01:31:39 +01:00
using QuestPDF.Fluent;
using QuestPDF.Helpers;
2021-01-16 01:31:39 +01:00
using QuestPDF.Infrastructure;
namespace QuestPDF.ReportSample.Layouts
{
public class SectionTemplate : IComponent
{
public ReportSection Model { get; set; }
public SectionTemplate(ReportSection model)
{
Model = model;
}
public void Compose(IContainer container)
{
container
.EnsureSpace()
.Decoration(decoration =>
2021-01-16 01:31:39 +01:00
{
decoration
2021-01-16 01:31:39 +01:00
.Header()
.PaddingBottom(5)
.Text(Model.Title, Typography.Headline);
decoration.Content().Border(0.75f).BorderColor(Colors.Grey.Medium).Stack(stack =>
2021-01-16 01:31:39 +01:00
{
foreach (var part in Model.Parts)
{
2021-05-01 22:46:37 +02:00
stack.Item().Row(row =>
2021-01-16 01:31:39 +01:00
{
row.ConstantColumn(150).LabelCell().Text(part.Label, Typography.Normal);
var frame = row.RelativeColumn().ValueCell();
2021-01-16 01:31:39 +01:00
if (part is ReportSectionText text)
frame.Text(text.Text, Typography.Normal);
if (part is ReportSectionMap map)
frame.Element(x => MapElement(x, map));
2021-01-16 01:31:39 +01:00
if (part is ReportSectionPhotos photos)
frame.Element(x => PhotosElement(x, photos));
2021-01-16 01:31:39 +01:00
});
}
});
});
}
void MapElement(IContainer container, ReportSectionMap model)
{
if (model.ImageSource == null || model.Location == null)
{
container.Text("No location provided", Typography.Normal);
return;
}
container.ShowEntire().Stack(stack =>
2021-01-16 01:31:39 +01:00
{
stack.Spacing(5);
2021-05-01 22:46:37 +02:00
stack.Item().MaxWidth(250).AspectRatio(4 / 3f).Image(Placeholders.Image);
stack.Item().Text(model.Location.Format(), Typography.Normal);
2021-01-16 01:31:39 +01:00
});
}
void PhotosElement(IContainer container, ReportSectionPhotos model)
{
if (model.Photos.Count == 0)
{
container.Text("No photos", Typography.Normal);
return;
}
container.Debug("Photo gallery").Grid(grid =>
2021-01-16 01:31:39 +01:00
{
grid.Spacing(5);
grid.Columns(3);
model.Photos.ForEach(x => grid.Item().AspectRatio(4 / 3f).Image(Placeholders.Image));
2021-01-16 01:31:39 +01:00
});
}
}
}