Total Complexity | 86 |
Total Lines | 424 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
Complex classes like BoxDimensions often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use BoxDimensions, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
25 | class BoxDimensions extends Dimensions |
||
26 | { |
||
27 | /** |
||
28 | * @var Box |
||
29 | */ |
||
30 | protected $box; |
||
31 | |||
32 | /** |
||
33 | * Set box. |
||
34 | * |
||
35 | * @param \YetiForcePDF\Layout\Box $box |
||
36 | * |
||
37 | * @return $this |
||
38 | */ |
||
39 | public function setBox(Box $box) |
||
40 | { |
||
41 | $this->box = $box; |
||
42 | return $this; |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * Get box. |
||
47 | * |
||
48 | * @return \YetiForcePDF\Layout\Box |
||
49 | */ |
||
50 | public function getBox() |
||
51 | { |
||
52 | return $this->box; |
||
53 | } |
||
54 | |||
55 | /** |
||
56 | * Get raw width. |
||
57 | * |
||
58 | * @return string|null |
||
59 | */ |
||
60 | public function getRawWidth() |
||
63 | } |
||
64 | |||
65 | /** |
||
66 | * Get raw height. |
||
67 | * |
||
68 | * @return string|null |
||
69 | */ |
||
70 | public function getRawHeight() |
||
71 | { |
||
72 | return $this->height; |
||
73 | } |
||
74 | |||
75 | /** |
||
76 | * {@inheritdoc} |
||
77 | */ |
||
78 | public function getWidth() |
||
79 | { |
||
80 | if (!$this->getBox()->isForMeasurement() && !$this->getBox()->getStyle()->haveSpacing()) { |
||
81 | return '0'; |
||
82 | } |
||
83 | if (!$this->getBox()->isDisplayable()) { |
||
84 | return '0'; |
||
85 | } |
||
86 | return parent::getWidth(); |
||
87 | } |
||
88 | |||
89 | /** |
||
90 | * {@inheritdoc} |
||
91 | */ |
||
92 | public function getHeight() |
||
93 | { |
||
94 | if (!$this->getBox()->isForMeasurement() && !$this->getBox()->getStyle()->haveSpacing()) { |
||
95 | return '0'; |
||
96 | } |
||
97 | if (!$this->getBox()->isDisplayable()) { |
||
98 | return '0'; |
||
99 | } |
||
100 | return parent::getHeight(); |
||
101 | } |
||
102 | |||
103 | /** |
||
104 | * Get innerWidth. |
||
105 | * |
||
106 | * @return string |
||
107 | */ |
||
108 | public function getInnerWidth(): string |
||
109 | { |
||
110 | $box = $this->getBox(); |
||
111 | if (!$box->isForMeasurement() && !$this->getBox()->getStyle()->haveSpacing()) { |
||
112 | return '0'; |
||
113 | } |
||
114 | if (!$this->getBox()->isDisplayable()) { |
||
115 | return '0'; |
||
116 | } |
||
117 | $style = $box->getStyle(); |
||
118 | $width = $this->getWidth(); |
||
119 | if (null === $width) { |
||
|
|||
120 | return '0'; |
||
121 | } |
||
122 | return Math::sub($width, $style->getHorizontalBordersWidth(), $style->getHorizontalPaddingsWidth()); |
||
123 | } |
||
124 | |||
125 | /** |
||
126 | * Get innerHeight. |
||
127 | * |
||
128 | * @return string |
||
129 | */ |
||
130 | public function getInnerHeight(): string |
||
131 | { |
||
132 | $box = $this->getBox(); |
||
133 | if (!$box->isForMeasurement() && !$this->getBox()->getStyle()->haveSpacing()) { |
||
134 | return '0'; |
||
135 | } |
||
136 | if (!$this->getBox()->isDisplayable()) { |
||
137 | return '0'; |
||
138 | } |
||
139 | $style = $box->getStyle(); |
||
140 | $height = $this->getHeight(); |
||
141 | if (null === $height) { |
||
142 | $height = '0'; |
||
143 | $element = $box->getElement(); |
||
144 | if ($element && $element->getDOMElement() instanceof \DOMText) { |
||
145 | $height = $style->getLineHeight(); |
||
146 | } |
||
147 | } |
||
148 | return Math::sub($height, $style->getVerticalBordersWidth(), $style->getVerticalPaddingsWidth()); |
||
149 | } |
||
150 | |||
151 | /** |
||
152 | * Get width with margins. |
||
153 | * |
||
154 | * @return string |
||
155 | */ |
||
156 | public function getOuterWidth() |
||
157 | { |
||
158 | $box = $this->getBox(); |
||
159 | if (!$box->isForMeasurement() && !$this->getBox()->getStyle()->haveSpacing()) { |
||
160 | return '0'; |
||
161 | } |
||
162 | if (!$this->getBox()->isDisplayable()) { |
||
163 | return '0'; |
||
164 | } |
||
165 | if (!$box instanceof LineBox) { |
||
166 | $style = $this->getBox()->getStyle(); |
||
167 | $childrenWidth = '0'; |
||
168 | // if some of the children overflows |
||
169 | if ('inline' === $box->getStyle()->getRules('display')) { |
||
170 | foreach ($box->getChildren() as $child) { |
||
171 | if ($childWidth = $child->getDimensions()->getWidth()) { |
||
172 | $childrenWidth = Math::add($childrenWidth, $childWidth); |
||
173 | } else { |
||
174 | $childrenWidth = Math::add($childrenWidth, $child->getDimensions()->getOuterWidth()); |
||
175 | } |
||
176 | } |
||
177 | } else { |
||
178 | foreach ($box->getChildren() as $child) { |
||
179 | if ($childWidth = $child->getDimensions()->getWidth()) { |
||
180 | $childrenWidth = Math::max($childrenWidth, $childWidth); |
||
181 | } else { |
||
182 | $childrenWidth = Math::max($childrenWidth, $child->getDimensions()->getOuterWidth()); |
||
183 | } |
||
184 | } |
||
185 | } |
||
186 | if (null !== $this->getWidth()) { |
||
187 | $childrenWidth = Math::add($childrenWidth, $style->getHorizontalMarginsWidth(), $style->getHorizontalBordersWidth(), $style->getHorizontalPaddingsWidth()); |
||
188 | $width = Math::add($this->getWidth(), $style->getHorizontalMarginsWidth()); |
||
189 | return Math::max($width, $childrenWidth); |
||
190 | } |
||
191 | return Math::add($childrenWidth, $style->getHorizontalBordersWidth(), $style->getHorizontalPaddingsWidth()); |
||
192 | } |
||
193 | return $this->getBox()->getChildrenWidth(); |
||
194 | } |
||
195 | |||
196 | /** |
||
197 | * Get height with margins. |
||
198 | * |
||
199 | * @return string |
||
200 | */ |
||
201 | public function getOuterHeight() |
||
202 | { |
||
203 | $box = $this->getBox(); |
||
204 | if (!$box->isForMeasurement() && !$this->getBox()->getStyle()->haveSpacing()) { |
||
205 | return '0'; |
||
206 | } |
||
207 | if (!$this->getBox()->isDisplayable()) { |
||
208 | return '0'; |
||
209 | } |
||
210 | $style = $this->getBox()->getStyle(); |
||
211 | if (!$box instanceof LineBox) { |
||
212 | $childrenHeight = '0'; |
||
213 | // if some of the children overflows |
||
214 | if ('inline' === $box->getStyle()->getRules('display')) { |
||
215 | foreach ($box->getChildren() as $child) { |
||
216 | $childrenHeight = Math::add($childrenHeight, $child->getDimensions()->getOuterHeight()); |
||
217 | } |
||
218 | } else { |
||
219 | foreach ($box->getChildren() as $child) { |
||
220 | $childrenHeight = Math::max($childrenHeight, $child->getDimensions()->getOuterHeight()); |
||
221 | } |
||
222 | } |
||
223 | if (null !== $this->getHeight()) { |
||
224 | $height = Math::add($this->getHeight(), $style->getVerticalMarginsWidth()); |
||
225 | return Math::max($height, $childrenHeight); |
||
226 | } |
||
227 | return Math::add($childrenHeight, $style->getVerticalBordersWidth(), $style->getVerticalPaddingsWidth()); |
||
228 | } |
||
229 | return Math::add($this->getHeight(), $style->getHorizontalMarginsWidth()); |
||
230 | } |
||
231 | |||
232 | /** |
||
233 | * Reset width. |
||
234 | * |
||
235 | * @return $this |
||
236 | */ |
||
237 | public function resetWidth() |
||
245 | } |
||
246 | |||
247 | /** |
||
248 | * Reset height. |
||
249 | * |
||
250 | * @return $this |
||
251 | */ |
||
252 | public function resetHeight() |
||
260 | } |
||
261 | |||
262 | /** |
||
263 | * Get max width with margins. |
||
264 | * |
||
265 | * @return string |
||
266 | */ |
||
267 | public function getMaxWidth() |
||
268 | { |
||
269 | $box = $this->getBox(); |
||
270 | if (!$box->isForMeasurement()) { |
||
271 | return '0'; |
||
272 | } |
||
273 | if (!$box instanceof LineBox) { |
||
274 | $style = $this->getBox()->getStyle(); |
||
275 | $childrenWidth = '0'; |
||
276 | // if some of the children overflows |
||
277 | if ('inline' === $box->getStyle()->getRules('display')) { |
||
278 | foreach ($box->getChildren() as $child) { |
||
279 | $childrenWidth = Math::add($childrenWidth, $child->getDimensions()->getOuterWidth()); |
||
280 | } |
||
281 | } elseif (\count($box->getSourceLines())) { |
||
282 | foreach ($box->getSourceLines() as $line) { |
||
283 | $childrenWidth = Math::max($childrenWidth, $line->getChildrenWidth()); |
||
284 | } |
||
285 | foreach ($box->getChildren() as $child) { |
||
286 | if (!$child instanceof LineBox) { |
||
287 | $childrenWidth = Math::max($childrenWidth, $child->getDimensions()->getWidth() ?? '0'); // TODO: neither getOuterWidth or getWidth works here |
||
288 | } |
||
289 | } |
||
290 | } else { |
||
291 | // TODO: each block and inline-block should have source lines but for now i don't have time so this is just patch |
||
292 | foreach ($box->getChildren() as $child) { |
||
293 | $childrenWidth = Math::max($childrenWidth, $child->getDimensions()->getOuterWidth()); |
||
294 | } |
||
295 | } |
||
296 | if (null !== $this->getWidth()) { |
||
297 | $childrenWidth = Math::add($childrenWidth, $style->getHorizontalMarginsWidth(), $style->getHorizontalBordersWidth(), $style->getHorizontalPaddingsWidth()); |
||
298 | $width = Math::add($this->getWidth(), $style->getHorizontalMarginsWidth()); |
||
299 | return Math::max($width, $childrenWidth); |
||
300 | } |
||
301 | return Math::add($childrenWidth, $style->getHorizontalBordersWidth(), $style->getHorizontalPaddingsWidth()); |
||
302 | } |
||
303 | return $this->getBox()->getChildrenWidth(); |
||
304 | } |
||
305 | |||
306 | /** |
||
307 | * Get minimum space that current box could have without overflow. |
||
308 | * |
||
309 | * @return string |
||
310 | */ |
||
311 | public function getMinWidth() |
||
312 | { |
||
313 | $box = $this->getBox(); |
||
314 | if (!$box->isForMeasurement()) { |
||
315 | return '0'; |
||
316 | } |
||
317 | if ($box instanceof TableWrapperBox) { |
||
318 | return $box->getFirstChild()->getMinWidth(); |
||
319 | } |
||
320 | if ($box instanceof TextBox) { |
||
321 | return $this->getTextWidth($this->getBox()->getText()); |
||
322 | } |
||
323 | $maxTextWidth = '0'; |
||
324 | foreach ($box->getChildren() as $childBox) { |
||
325 | if ($childBox instanceof TextBox) { |
||
326 | $textWidth = $childBox->getDimensions()->getTextWidth($childBox->getText()); |
||
327 | $maxTextWidth = Math::max($maxTextWidth, $textWidth); |
||
328 | } else { |
||
329 | $minWidth = $childBox->getDimensions()->getMinWidth(); |
||
330 | $maxTextWidth = Math::max($maxTextWidth, $minWidth); |
||
331 | } |
||
332 | } |
||
333 | $style = $this->getBox()->getStyle(); |
||
334 | return Math::add($maxTextWidth, $style->getHorizontalBordersWidth(), $style->getHorizontalPaddingsWidth(), $style->getHorizontalMarginsWidth()); |
||
335 | } |
||
336 | |||
337 | /** |
||
338 | * Get text width. |
||
339 | * |
||
340 | * @param string $text |
||
341 | * |
||
342 | * @return string |
||
343 | */ |
||
344 | public function getTextWidth($text) |
||
345 | { |
||
346 | if (!$this->getBox()->isForMeasurement()) { |
||
347 | return '0'; |
||
348 | } |
||
349 | $font = $this->box->getStyle()->getFont(); |
||
350 | return $font->getTextWidth($text); |
||
351 | } |
||
352 | |||
353 | /** |
||
354 | * Get text height. |
||
355 | * |
||
356 | * @param string $text |
||
357 | * |
||
358 | * @return string |
||
359 | */ |
||
360 | public function getTextHeight($text) |
||
361 | { |
||
362 | if (!$this->getBox()->isForMeasurement()) { |
||
363 | return '0'; |
||
364 | } |
||
365 | $font = $this->box->getStyle()->getFont(); |
||
366 | return $font->getTextHeight($text); |
||
367 | } |
||
368 | |||
369 | /** |
||
370 | * Compute available space (basing on parent available space and parent border and padding). |
||
371 | * |
||
372 | * @return string |
||
373 | */ |
||
374 | public function computeAvailableSpace() |
||
375 | { |
||
376 | if (!$this->getBox()->isForMeasurement()) { |
||
377 | return '0'; |
||
378 | } |
||
379 | if ($parent = $this->getBox()->getParent()) { |
||
380 | $parentStyle = $parent->getStyle(); |
||
381 | if (null === $parent->getDimensions()->getWidth()) { |
||
382 | return Math::sub($parent->getDimensions()->computeAvailableSpace(), $parentStyle->getHorizontalBordersWidth(), $parentStyle->getHorizontalPaddingsWidth()); |
||
383 | } |
||
384 | return $this->getBox()->getParent()->getDimensions()->getInnerWidth(); |
||
385 | } |
||
386 | return $this->document->getCurrentPage()->getDimensions()->getWidth(); |
||
387 | } |
||
388 | |||
389 | /** |
||
390 | * Calculate width from style width:10%. |
||
391 | * |
||
392 | * @return mixed|string|null |
||
393 | */ |
||
394 | public function getStyleWidth() |
||
419 | } |
||
420 | |||
421 | /** |
||
422 | * Calculate height from style width:10%. |
||
423 | * |
||
424 | * @return mixed|string|null |
||
425 | */ |
||
426 | public function getStyleHeight() |
||
449 | } |
||
450 | } |
||
451 |