@@ -126,32 +126,35 @@ private function buildTreeFromResults($results, $parent = null): Collection
126
126
$ resultMap [$ parentId ][] = $ result ;
127
127
}
128
128
129
+ // Define disabled options
130
+ $ disabledOptions = $ this ->getDisabledOptions ();
131
+
129
132
// Recursively build the tree starting from the root (null parent)
130
133
$ rootResults = $ resultMap [$ parent ] ?? [];
131
134
foreach ($ rootResults as $ result ) {
132
135
// Build a node and add it to the tree
133
- $ node = $ this ->buildNode ($ result , $ resultMap );
136
+ $ node = $ this ->buildNode ($ result , $ resultMap, $ disabledOptions );
134
137
$ tree ->push ($ node );
135
138
}
136
139
137
140
return $ tree ;
138
141
}
139
142
140
- private function buildNode ($ result , $ resultMap ): array
143
+ private function buildNode ($ result , $ resultMap, $ disabledOptions ): array
141
144
{
142
145
// Create a node with 'name' and 'value' attributes
143
146
$ node = [
144
147
'name ' => $ result ->{$ this ->getTitleAttribute ()},
145
148
'value ' => $ result ->getKey (),
146
- 'disabled ' => in_array ($ result ->getKey (), $ this -> getDisabledOptions () ),
149
+ 'disabled ' => in_array ($ result ->getKey (), $ disabledOptions ),
147
150
];
148
151
149
152
// Check if the result has children
150
153
if (isset ($ resultMap [$ result ->getKey ()])) {
151
154
$ children = collect ();
152
155
// Recursively build child nodes
153
156
foreach ($ resultMap [$ result ->getKey ()] as $ child ) {
154
- $ childNode = $ this ->buildNode ($ child , $ resultMap );
157
+ $ childNode = $ this ->buildNode ($ child , $ resultMap, $ disabledOptions );
155
158
$ children ->push ($ childNode );
156
159
}
157
160
// Add children to the node
0 commit comments