1a25f0a04SGreg Roach<?php 23976b470SGreg Roach 3a25f0a04SGreg Roach/** 4a25f0a04SGreg Roach * webtrees: online genealogy 58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 6a25f0a04SGreg Roach * This program is free software: you can redistribute it and/or modify 7a25f0a04SGreg Roach * it under the terms of the GNU General Public License as published by 8a25f0a04SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9a25f0a04SGreg Roach * (at your option) any later version. 10a25f0a04SGreg Roach * This program is distributed in the hope that it will be useful, 11a25f0a04SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12a25f0a04SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13a25f0a04SGreg Roach * GNU General Public License for more details. 14a25f0a04SGreg Roach * You should have received a copy of the GNU General Public License 15a25f0a04SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 16a25f0a04SGreg Roach */ 17*fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 2076692c8bSGreg Roachnamespace Fisharebest\Webtrees\Report; 21a25f0a04SGreg Roach 22a25f0a04SGreg Roach/** 23a25f0a04SGreg Roach * Class ReportHtmlTextbox 24a25f0a04SGreg Roach */ 25c1010edaSGreg Roachclass ReportHtmlTextbox extends ReportBaseTextbox 26c1010edaSGreg Roach{ 27a25f0a04SGreg Roach /** 2876692c8bSGreg Roach * Render the elements. 2976692c8bSGreg Roach * 30a25f0a04SGreg Roach * @param ReportHtml $renderer 31c7ff4153SGreg Roach * 32c7ff4153SGreg Roach * @return void 33a25f0a04SGreg Roach */ 34c1010edaSGreg Roach public function render($renderer) 35c1010edaSGreg Roach { 36a25f0a04SGreg Roach // checkFootnote 3713abd6f3SGreg Roach $newelements = []; 3813abd6f3SGreg Roach $lastelement = []; 3913abd6f3SGreg Roach $footnote_element = []; 40a25f0a04SGreg Roach // Element counter 41a25f0a04SGreg Roach $cE = count($this->elements); 42a25f0a04SGreg Roach //-- collapse duplicate elements 43a25f0a04SGreg Roach for ($i = 0; $i < $cE; $i++) { 44a25f0a04SGreg Roach $element = $this->elements[$i]; 45044416d2SGreg Roach if ($element instanceof ReportBaseElement) { 46a25f0a04SGreg Roach if ($element instanceof ReportBaseText) { 47a25f0a04SGreg Roach if (!empty($footnote_element)) { 48a25f0a04SGreg Roach ksort($footnote_element); 49a25f0a04SGreg Roach foreach ($footnote_element as $links) { 50a25f0a04SGreg Roach $newelements[] = $links; 51a25f0a04SGreg Roach } 5213abd6f3SGreg Roach $footnote_element = []; 53a25f0a04SGreg Roach } 54a25f0a04SGreg Roach if (empty($lastelement)) { 55a25f0a04SGreg Roach $lastelement = $element; 56a25f0a04SGreg Roach } else { 57a25f0a04SGreg Roach // Checking if the Text has the same style 58a25f0a04SGreg Roach if ($element->getStyleName() == $lastelement->getStyleName()) { 597a6ee1acSGreg Roach $lastelement->addText(str_replace("\n", '<br>', $element->getValue())); 60a25f0a04SGreg Roach } elseif (!empty($lastelement)) { 61a25f0a04SGreg Roach $newelements[] = $lastelement; 62a25f0a04SGreg Roach $lastelement = $element; 63a25f0a04SGreg Roach } 64a25f0a04SGreg Roach } 65ce15a17aSGreg Roach } elseif ($element instanceof ReportBaseFootnote) { 66a25f0a04SGreg Roach // Check if the Footnote has been set with it’s link number 67a25f0a04SGreg Roach $renderer->checkFootnote($element); 68a25f0a04SGreg Roach // Save first the last element if any 69a25f0a04SGreg Roach if (!empty($lastelement)) { 70a25f0a04SGreg Roach $newelements[] = $lastelement; 7113abd6f3SGreg Roach $lastelement = []; 72a25f0a04SGreg Roach } 73a25f0a04SGreg Roach // Save the Footnote with it’s link number as key for sorting later 74a25f0a04SGreg Roach $footnote_element[$element->num] = $element; 75ce15a17aSGreg Roach } elseif (!($element instanceof ReportBaseFootnote) || trim($element->getValue()) != '') { 76ce15a17aSGreg Roach // Do not keep empty footnotes 77a25f0a04SGreg Roach if (!empty($footnote_element)) { 78a25f0a04SGreg Roach ksort($footnote_element); 79a25f0a04SGreg Roach foreach ($footnote_element as $links) { 80a25f0a04SGreg Roach $newelements[] = $links; 81a25f0a04SGreg Roach } 8213abd6f3SGreg Roach $footnote_element = []; 83a25f0a04SGreg Roach } 84a25f0a04SGreg Roach if (!empty($lastelement)) { 85a25f0a04SGreg Roach $newelements[] = $lastelement; 8613abd6f3SGreg Roach $lastelement = []; 87a25f0a04SGreg Roach } 88a25f0a04SGreg Roach $newelements[] = $element; 89a25f0a04SGreg Roach } 90a25f0a04SGreg Roach } else { 91a25f0a04SGreg Roach if (!empty($lastelement)) { 92a25f0a04SGreg Roach $newelements[] = $lastelement; 9313abd6f3SGreg Roach $lastelement = []; 94a25f0a04SGreg Roach } 95a25f0a04SGreg Roach if (!empty($footnote_element)) { 96a25f0a04SGreg Roach ksort($footnote_element); 97a25f0a04SGreg Roach foreach ($footnote_element as $links) { 98a25f0a04SGreg Roach $newelements[] = $links; 99a25f0a04SGreg Roach } 10013abd6f3SGreg Roach $footnote_element = []; 101a25f0a04SGreg Roach } 102a25f0a04SGreg Roach $newelements[] = $element; 103a25f0a04SGreg Roach } 104a25f0a04SGreg Roach } 105a25f0a04SGreg Roach if (!empty($lastelement)) { 106a25f0a04SGreg Roach $newelements[] = $lastelement; 107a25f0a04SGreg Roach } 108a25f0a04SGreg Roach if (!empty($footnote_element)) { 109a25f0a04SGreg Roach ksort($footnote_element); 110a25f0a04SGreg Roach foreach ($footnote_element as $links) { 111a25f0a04SGreg Roach $newelements[] = $links; 112a25f0a04SGreg Roach } 113a25f0a04SGreg Roach } 114a25f0a04SGreg Roach $this->elements = $newelements; 1158a4ee39cSGreg Roach unset($footnote_element, $lastelement, $newelements); 116a25f0a04SGreg Roach 117a25f0a04SGreg Roach $cP = 0; // Class Padding 118a25f0a04SGreg Roach 119a25f0a04SGreg Roach // Used with line breaks and cell height calculation within this box only 120a25f0a04SGreg Roach $renderer->largestFontHeight = 0; 121a25f0a04SGreg Roach 12267c69ce5SGreg Roach // If current position (left) 123c21bdddcSGreg Roach if ($this->left === ReportBaseElement::CURRENT_POSITION) { 1247820e4d7SGreg Roach $cX = $renderer->getX(); 125a25f0a04SGreg Roach } else { 126a25f0a04SGreg Roach $cX = $this->left; 1277820e4d7SGreg Roach $renderer->setX($cX); 128a25f0a04SGreg Roach } 12967c69ce5SGreg Roach // If current position (top) 130c21bdddcSGreg Roach if ($this->top === ReportBaseElement::CURRENT_POSITION) { 1313844edd4SGreg Roach $this->top = $renderer->getY(); 132a25f0a04SGreg Roach } else { 1337820e4d7SGreg Roach $renderer->setY($this->top); 134a25f0a04SGreg Roach } 135a25f0a04SGreg Roach 13667c69ce5SGreg Roach // Check the width if set to page wide OR set by xml to larger then page width (margin) 137a25f0a04SGreg Roach if ($this->width == 0 || $this->width > $renderer->getRemainingWidth()) { 138a25f0a04SGreg Roach $this->width = $renderer->getRemainingWidth(); 139a25f0a04SGreg Roach } 140a25f0a04SGreg Roach // Setup the CellPadding 141a25f0a04SGreg Roach if ($this->padding) { 142a25f0a04SGreg Roach $cP = $renderer->cPadding; 143a25f0a04SGreg Roach } 144a25f0a04SGreg Roach 145a25f0a04SGreg Roach // For padding, we have to use less wrap width 146a25f0a04SGreg Roach $cW = $this->width - ($cP * 2); 147a25f0a04SGreg Roach 148a25f0a04SGreg Roach //-- calculate the text box height 149a25f0a04SGreg Roach // Number of lines, will be converted to height 150a25f0a04SGreg Roach $cHT = 0; 151a25f0a04SGreg Roach // Element height (exept text) 152a25f0a04SGreg Roach $eH = 0; 153a25f0a04SGreg Roach // Footnote height (in points) 154a25f0a04SGreg Roach $fH = 0; 155a25f0a04SGreg Roach $w = 0; 156a25f0a04SGreg Roach //-- $lw is an array 157a25f0a04SGreg Roach // 0 => last line width 158a25f0a04SGreg Roach // 1 => 1 if text was wrapped, 0 if text did not wrap 159a25f0a04SGreg Roach // 2 => number of LF 16013abd6f3SGreg Roach $lw = []; 161a25f0a04SGreg Roach // Element counter 162a25f0a04SGreg Roach $cE = count($this->elements); 163a25f0a04SGreg Roach for ($i = 0; $i < $cE; $i++) { 164a25f0a04SGreg Roach if (is_object($this->elements[$i])) { 165a25f0a04SGreg Roach $ew = $this->elements[$i]->setWrapWidth($cW - $w - 2, $cW); 166a25f0a04SGreg Roach if ($ew == $cW) { 167a25f0a04SGreg Roach $w = 0; 168a25f0a04SGreg Roach } 169a25f0a04SGreg Roach $lw = $this->elements[$i]->getWidth($renderer); 170a25f0a04SGreg Roach // Text is already gets the # LF 171a25f0a04SGreg Roach $cHT += $lw[2]; 172a25f0a04SGreg Roach if ($lw[1] == 1) { 173a25f0a04SGreg Roach $w = $lw[0]; 174a25f0a04SGreg Roach } elseif ($lw[1] == 2) { 175a25f0a04SGreg Roach $w = 0; 176a25f0a04SGreg Roach } else { 177a25f0a04SGreg Roach $w += $lw[0]; 178a25f0a04SGreg Roach } 179a25f0a04SGreg Roach if ($w > $cW) { 180a25f0a04SGreg Roach $w = $lw[0]; 181a25f0a04SGreg Roach } 182a25f0a04SGreg Roach // For anything else but text (images), get the height 183a25f0a04SGreg Roach $eH += $this->elements[$i]->getHeight($renderer); 184a25f0a04SGreg Roach } else { 185a25f0a04SGreg Roach $fH += abs($renderer->getFootnotesHeight($cW)); 186a25f0a04SGreg Roach } 187a25f0a04SGreg Roach } 18867c69ce5SGreg Roach 189a25f0a04SGreg Roach // Add up what’s the final height 190a25f0a04SGreg Roach $cH = $this->height; 191a25f0a04SGreg Roach // If any element exist 192a25f0a04SGreg Roach if ($cE > 0) { 193a25f0a04SGreg Roach // Check if this is text or some other element, like images 194a25f0a04SGreg Roach if ($eH == 0) { 195a25f0a04SGreg Roach // Number of LF but at least one line 196a25f0a04SGreg Roach $cHT = ($cHT + 1) * $renderer->cellHeightRatio; 197a25f0a04SGreg Roach // Calculate the cell hight with the largest font size used 198e364afe4SGreg Roach $cHT *= $renderer->largestFontHeight; 199a25f0a04SGreg Roach if ($cH < $cHT) { 200a25f0a04SGreg Roach $cH = $cHT; 201a25f0a04SGreg Roach } 202ce15a17aSGreg Roach } else { 203ce15a17aSGreg Roach // This is any other element 204a25f0a04SGreg Roach if ($cH < $eH) { 205a25f0a04SGreg Roach $cH = $eH; 206a25f0a04SGreg Roach } 207a25f0a04SGreg Roach // Add Footnote height to the rest of the height 208a25f0a04SGreg Roach $cH += $fH; 209a25f0a04SGreg Roach } 210a25f0a04SGreg Roach } 211a25f0a04SGreg Roach 212a25f0a04SGreg Roach unset($lw, $cHT, $fH, $w); 213a25f0a04SGreg Roach 214a25f0a04SGreg Roach // Finaly, check the last cells height 215a25f0a04SGreg Roach if ($cH < $renderer->lastCellHeight) { 216a25f0a04SGreg Roach $cH = $renderer->lastCellHeight; 217a25f0a04SGreg Roach } 218a25f0a04SGreg Roach // Update max Y incase of a pagebreak 219a25f0a04SGreg Roach // We don't want to over write any images or other stuff 220a25f0a04SGreg Roach $renderer->addMaxY($this->top + $cH); 221a25f0a04SGreg Roach 222a25f0a04SGreg Roach // Start to print HTML 2237a6ee1acSGreg Roach echo '<div style="position:absolute;top:', $this->top, 'pt;'; 224a25f0a04SGreg Roach // LTR (left) or RTL (right) 2257a6ee1acSGreg Roach echo $renderer->alignRTL, ':', $cX, 'pt;'; 226a25f0a04SGreg Roach // Background color 227a25f0a04SGreg Roach if ($this->fill) { 228a25f0a04SGreg Roach if (!empty($this->bgcolor)) { 2297a6ee1acSGreg Roach echo ' background-color:', $this->bgcolor, ';'; 230a25f0a04SGreg Roach } 231a25f0a04SGreg Roach } 232a25f0a04SGreg Roach // Print padding only when it’s set 233a25f0a04SGreg Roach if ($this->padding) { 234a25f0a04SGreg Roach // Use Cell around padding to support RTL also 2357a6ee1acSGreg Roach echo 'padding:', $cP, 'pt;'; 236a25f0a04SGreg Roach } 237a25f0a04SGreg Roach // Border setup 238a25f0a04SGreg Roach if ($this->border) { 2397a6ee1acSGreg Roach echo ' border:solid black 1pt;'; 2407a6ee1acSGreg Roach echo 'width:', ($this->width - 1 - ($cP * 2)), 'pt;height:', $cH - 1, 'pt;'; 241a25f0a04SGreg Roach } else { 2427a6ee1acSGreg Roach echo 'width:', ($this->width - ($cP * 2)), 'pt;height:', $cH, 'pt;'; 243a25f0a04SGreg Roach } 2447a6ee1acSGreg Roach echo '">'; 245a25f0a04SGreg Roach 246a25f0a04SGreg Roach // Do a little "margin" trick before print 247a25f0a04SGreg Roach // to get the correct current position => "." 2487820e4d7SGreg Roach $cXT = $renderer->getX(); 2497820e4d7SGreg Roach $cYT = $renderer->getY(); 2507820e4d7SGreg Roach $renderer->setXy(0, 0); 251a25f0a04SGreg Roach 252a25f0a04SGreg Roach // Print the text elements 253a25f0a04SGreg Roach foreach ($this->elements as $element) { 254044416d2SGreg Roach if ($element instanceof ReportBaseElement) { 255a25f0a04SGreg Roach $element->render($renderer, $cX, false); 256044416d2SGreg Roach } elseif ($element === 'footnotetexts') { 2577820e4d7SGreg Roach $renderer->footnotes(); 258044416d2SGreg Roach } elseif ($element === 'addpage') { 2597820e4d7SGreg Roach $renderer->addPage(); 260a25f0a04SGreg Roach } 261a25f0a04SGreg Roach } 262a25f0a04SGreg Roach echo "</div>\n"; 263a25f0a04SGreg Roach 264a25f0a04SGreg Roach // Reset "margins" 2657820e4d7SGreg Roach $renderer->setXy($cXT, $cYT); 266a25f0a04SGreg Roach // This will be mostly used to trick the multiple images last height 267a25f0a04SGreg Roach if ($this->reseth) { 268a25f0a04SGreg Roach $cH = 0; 269a25f0a04SGreg Roach } 270a25f0a04SGreg Roach // New line and some clean up 271a25f0a04SGreg Roach if (!$this->newline) { 2727820e4d7SGreg Roach $renderer->setXy($cX + $this->width, $this->top); 273a25f0a04SGreg Roach $renderer->lastCellHeight = $cH; 274a25f0a04SGreg Roach } else { 2757820e4d7SGreg Roach $renderer->setXy(0, $this->top + $cH + ($cP * 2)); 276a25f0a04SGreg Roach $renderer->lastCellHeight = 0; 277a25f0a04SGreg Roach } 278a25f0a04SGreg Roach } 279a25f0a04SGreg Roach} 280