Complex classes like CliMenuBuilder 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. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
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 CliMenuBuilder, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
22 | class CliMenuBuilder |
||
23 | { |
||
24 | /** |
||
25 | * @var bool |
||
26 | */ |
||
27 | private $isBuilt = false; |
||
28 | |||
29 | /** |
||
30 | * @var null|self |
||
31 | */ |
||
32 | private $parent; |
||
33 | |||
34 | /** |
||
35 | * @var self[] |
||
36 | */ |
||
37 | private $subMenuBuilders = []; |
||
38 | |||
39 | /** |
||
40 | * @var CliMenu[] |
||
41 | */ |
||
42 | private $subMenus = []; |
||
43 | |||
44 | /** |
||
45 | * @var string |
||
46 | */ |
||
47 | private $goBackButtonText = 'Go Back'; |
||
48 | |||
49 | /** |
||
50 | * @var string |
||
51 | */ |
||
52 | private $exitButtonText = 'Exit'; |
||
53 | |||
54 | /** |
||
55 | * @var array |
||
56 | */ |
||
57 | private $menuItems = []; |
||
58 | |||
59 | /** |
||
60 | * @var array |
||
61 | */ |
||
62 | private $style; |
||
63 | |||
64 | /** |
||
65 | * @var Terminal |
||
66 | */ |
||
67 | private $terminal; |
||
68 | |||
69 | /** |
||
70 | * @var string |
||
71 | */ |
||
72 | private $menuTitle = null; |
||
73 | |||
74 | /** |
||
75 | * @var bool |
||
76 | */ |
||
77 | private $disableDefaultItems = false; |
||
78 | |||
79 | /** |
||
80 | * @var bool |
||
81 | */ |
||
82 | private $disabled = false; |
||
83 | |||
84 | public function __construct(CliMenuBuilder $parent = null) |
||
92 | |||
93 | public function setTitle(string $title) : self |
||
99 | |||
100 | public function addMenuItem(MenuItemInterface $item) : self |
||
106 | |||
107 | public function addItem( |
||
117 | |||
118 | public function addItems(array $items) : self |
||
126 | |||
127 | public function addStaticItem(string $text) : self |
||
133 | |||
134 | public function addLineBreak(string $breakChar = ' ', int $lines = 1) : self |
||
140 | |||
141 | public function addAsciiArt(string $art, string $position = AsciiArtItem::POSITION_CENTER, string $alt = '') : self |
||
147 | |||
148 | /** |
||
149 | * Add a submenu with a string identifier |
||
150 | */ |
||
151 | public function addSubMenu(string $id, CliMenuBuilder $subMenuBuilder = null) : CliMenuBuilder |
||
163 | |||
164 | /** |
||
165 | * Disable a submenu |
||
166 | * |
||
167 | * @throws \InvalidArgumentException |
||
168 | */ |
||
169 | public function disableMenu() : self |
||
181 | |||
182 | public function isMenuDisabled() : bool |
||
186 | |||
187 | public function setGoBackButtonText(string $goBackButtonTest) : self |
||
193 | |||
194 | public function setExitButtonText(string $exitButtonText) : self |
||
200 | |||
201 | public function setBackgroundColour(string $colour) : self |
||
209 | |||
210 | public function setForegroundColour(string $colour) : self |
||
218 | |||
219 | public function setWidth(int $width) : self |
||
225 | |||
226 | public function setPadding(int $padding) : self |
||
232 | |||
233 | public function setMargin(int $margin) : self |
||
239 | |||
240 | public function setUnselectedMarker(string $marker) : self |
||
246 | |||
247 | public function setSelectedMarker(string $marker) : self |
||
253 | |||
254 | public function setItemExtra(string $extra) : self |
||
260 | |||
261 | public function setTitleSeparator(string $separator) : self |
||
267 | |||
268 | public function setBorder( |
||
269 | int $topWidth, |
||
270 | $rightWidth = null, |
||
271 | $bottomWidth = null, |
||
272 | $leftWidth = null, |
||
273 | string $colour = null |
||
274 | ) : self { |
||
275 | $this->style['borderTopWidth'] = $topWidth; |
||
276 | |||
277 | if (!is_int($rightWidth)) { |
||
278 | $this->style['borderRightWidth'] = $topWidth; |
||
279 | $this->style['borderBottomWidth'] = $topWidth; |
||
280 | $this->style['borderLeftWidth'] = $topWidth; |
||
281 | $colour = $rightWidth; |
||
282 | } elseif (!is_int($bottomWidth)) { |
||
283 | $this->style['borderBottomWidth'] = $topWidth; |
||
284 | $this->style['borderLeftWidth'] = $rightWidth; |
||
285 | $colour = $bottomWidth; |
||
286 | } elseif (!is_int($leftWidth)) { |
||
287 | $this->style['borderLeftWidth'] = $rightWidth; |
||
288 | $colour = $leftWidth; |
||
289 | } |
||
290 | |||
291 | if (is_string($colour)) { |
||
292 | $this->style['borderColour'] = $colour; |
||
293 | } |
||
294 | |||
295 | return $this; |
||
296 | } |
||
297 | |||
298 | public function setTerminal(Terminal $terminal) : self |
||
303 | |||
304 | public function getTerminal() : Terminal |
||
308 | |||
309 | private function getDefaultItems() : array |
||
319 | |||
320 | public function disableDefaultItems() : self |
||
326 | |||
327 | private function itemsHaveExtra(array $items) : bool |
||
333 | |||
334 | /** |
||
335 | * Recursively drop back to the parents menu style |
||
336 | * when the current menu has a parent and has no changes |
||
337 | */ |
||
338 | private function getMenuStyle() : MenuStyle |
||
350 | |||
351 | private function buildStyle() : MenuStyle |
||
370 | |||
371 | /** |
||
372 | * Return to parent builder |
||
373 | * |
||
374 | * @throws RuntimeException |
||
375 | */ |
||
376 | public function end() : CliMenuBuilder |
||
384 | |||
385 | /** |
||
386 | * @throws RuntimeException |
||
387 | */ |
||
388 | public function getSubMenu(string $id) : CliMenu |
||
396 | |||
397 | private function buildSubMenus(array $items) : array |
||
410 | |||
411 | public function build() : CliMenu |
||
436 | } |
||
437 |
This check looks for function calls that miss required arguments.