a11yist/app/models/pdf_documents/customer_report.rb

112 lines
3.7 KiB
Ruby
Raw Normal View History

2024-09-05 22:54:38 +02:00
# frozen_string_literal: true
2024-07-21 02:57:13 +02:00
module PdfDocuments
class CustomerReport < Base
private
def generate
2024-07-22 01:29:09 +02:00
heading1 params.report.name
2024-10-31 23:13:18 +01:00
rich_text params.report.comment
2024-11-24 00:58:36 +01:00
@pages = {}
2024-07-22 01:29:09 +02:00
2024-11-23 21:11:01 +01:00
params.report.export[:elements].each.with_index(1) do |(element, success_criteria), element_index|
2024-11-24 00:58:36 +01:00
new_page(required_space: 200) if element_index > 1
2024-11-23 23:12:06 +01:00
without_page_break do
heading2 "#{element_index} #{element.title}"
bold("#{element.page.path}")
safe_display(element.screenshot) { image(_1.variant(:thumbnail), height: 160) && move_down(5) }
end
2024-11-23 21:11:01 +01:00
rich_text element.description
2024-11-23 23:12:06 +01:00
move_down(10)
2024-07-21 02:57:13 +02:00
2024-11-23 21:11:01 +01:00
success_criteria.each.with_index(1) do |success_criterion, sc_index|
2024-11-24 00:58:36 +01:00
@pages[success_criterion.id] = @prawn_document.page_number
2024-11-23 23:12:06 +01:00
success_criterion_row(success_criterion, [ element_index, sc_index ])
2024-07-21 02:57:13 +02:00
end
end
2024-11-24 00:58:36 +01:00
string = "Seite <page> / <total>"
# Green page numbers 1 to 7
options = {
at: [ @prawn_document.bounds.right - 150, -10 ],
width: 150,
align: :right,
start_count_at: 1
}
@prawn_document.number_pages string, options
2024-11-24 01:32:24 +01:00
@prawn_document.repeat(:all) do
# @prawn_document.bounding_box([ 0, 790 ], width: 200) do
# logo
# end
# @prawn_document.formatted_text_box([ {
# text: "Dieses Dokument wurd am #{Time.current.strftime('%d %B %Y')} um #{Time.current.strftime('%H:%M:%S')} erstellt.",
# size: 8,
# align: :right
# } ],
# at: [ 0, -15 ],
# width: 200
# )
@prawn_document.text_box "<b>#{params.report.name}</b>", at: [ 150, 777 ], inline_format: true, width: 300
@prawn_document.text_box "#{I18n.l params.report.updated_at.to_date, format: :long}", at: [ 0, 777 ], inline_format: true, width: 516, align: :right
@prawn_document.bounding_box([-10, 800], width: 200, height: 200) do
logo
end
@prawn_document.font_size(8) do
@prawn_document.draw_text("Dieses Dokument wurd am #{Time.current.strftime('%d %B %Y')} um #{Time.current.strftime('%H:%M:%S')} erstellt.", at: [ 0, -15 ])
end
@prawn_document.bounding_box([0, 0], width: 516) do
hr
end
@prawn_document.bounding_box([0, 766], width: 516) do
hr
end
end
2024-11-24 00:58:36 +01:00
x = params
p = @pages
@prawn_document.outline.define do
x.report.export[:elements].each.with_index(1) do |(element, success_criteria), element_index|
section("#{element_index} #{element.title}") do
success_criteria.each.with_index(1) do |sc, sc_index|
2024-11-24 01:32:24 +01:00
page(title: "#{element_index}.#{sc_index} #{sc.title}", destination: p[sc.id])
2024-11-24 00:58:36 +01:00
end
end
end
end
2024-07-21 02:57:13 +02:00
end
2024-11-23 21:11:01 +01:00
private
def success_criterion_row(success_criterion, index)
heading3 "#{index.join(".")} #{success_criterion.title}"
safe_display(success_criterion.test_comment) do
2024-11-23 23:12:06 +01:00
without_page_break do
heading4 "Kommentar"
rich_text success_criterion.test_comment
end
2024-11-23 21:11:01 +01:00
end
safe_display(success_criterion.quick_criterion) do
2024-11-23 23:12:06 +01:00
without_page_break do
heading4 "Kriterium"
rich_text success_criterion.quick_criterion
end
2024-11-23 21:11:01 +01:00
end
safe_display(success_criterion.quick_fail) do
2024-11-23 23:12:06 +01:00
without_page_break do
heading4 "Fail"
rich_text success_criterion.quick_fail
end
2024-11-23 21:11:01 +01:00
end
safe_display(success_criterion.quick_fix) do
2024-11-23 23:12:06 +01:00
without_page_break do
heading4 "Fix"
rich_text success_criterion.quick_fix
end
2024-11-23 21:11:01 +01:00
end
2024-11-23 23:12:06 +01:00
heading4("Protokollnummer")
text(success_criterion.number)
move_down(10)
2024-11-23 21:11:01 +01:00
end
2024-07-21 02:57:13 +02:00
end
end