Conditions | 39 |
Paths | 68 |
Total Lines | 216 |
Code Lines | 158 |
Lines | 44 |
Ratio | 20.37 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
1 | <?php |
||
141 | public function widgetRun() |
||
142 | { |
||
143 | $categoryId = Yii::$app->request->get('last_category_id'); |
||
144 | if ($categoryId === null) { |
||
145 | return '<!-- no category_id specified for FilterSet widget in request -->'; |
||
146 | } |
||
147 | $filterSets = FilterSets::getForCategoryId($categoryId); |
||
148 | if (count($filterSets) === 0) { |
||
149 | return '<!-- no filter sets for current category -->'; |
||
150 | } |
||
151 | if ($this->header === '') { |
||
152 | $this->header = Yii::t('app', 'Filters'); |
||
153 | } |
||
154 | |||
155 | // Begin of a new filter sets implementation |
||
156 | if ($this->useNewFilter) { |
||
157 | $urlParams = [ |
||
158 | '@category', |
||
159 | 'last_category_id' => $categoryId, |
||
160 | 'properties' => Yii::$app->request->get('properties', []), |
||
161 | 'category_group_id' => Yii::$app->request->get('category_group_id', 0), |
||
162 | ]; |
||
163 | $priceMin = empty(Yii::$app->request->post('price_min')) ? Yii::$app->request->get('price_min') : Yii::$app->request->post('price_min'); |
||
164 | $priceMax = empty(Yii::$app->request->post('price_max')) ? Yii::$app->request->get('price_max') : Yii::$app->request->post('price_max'); |
||
165 | if (false === empty($priceMin)) { |
||
166 | $urlParams['price_min'] = $priceMin; |
||
167 | } |
||
168 | if (false === empty($priceMax)) { |
||
169 | $urlParams['price_max'] = $priceMax; |
||
170 | } |
||
171 | $urlParams = $this->mergeUrlProperties($urlParams, ['properties' => Yii::$app->request->post('properties', [])]); |
||
172 | $urlParams = $this->removeLostDependencies($filterSets, $urlParams); |
||
173 | $properties = $urlParams['properties']; |
||
174 | $newGet = Yii::$app->request->get(); |
||
175 | $newGet['properties'] = $properties; |
||
176 | Yii::$app->request->setQueryParams($newGet); |
||
177 | ksort($properties); |
||
178 | $cacheKey = 'FilterSets:' . $categoryId . ':' . json_encode($urlParams); |
||
179 | unset($properties); |
||
180 | if (false === $filtersArray = Yii::$app->cache->get($cacheKey)) { |
||
181 | $filtersArray = []; |
||
182 | foreach ($filterSets as $filterSet) { |
||
183 | /** Если eav и слайдер, то фильтр формируется по особым правилам */ |
||
184 | if ($filterSet->is_range_slider && $filterSet->property->is_eav) { |
||
185 | $filter = $this->getEavSliderFilter($filterSet->property, $urlParams); |
||
186 | if($filter) { |
||
187 | $filtersArray[] = $filter; |
||
188 | } |
||
189 | continue; |
||
190 | } elseif ($filterSet->property->has_static_values === 0) { |
||
191 | continue; |
||
192 | } |
||
193 | if (!empty($filterSet->property->depends_on_property_id) |
||
194 | && !empty($filterSet->property->depended_property_values) |
||
195 | ) { |
||
196 | if ( |
||
197 | $this->getSelectedPropertyIndex( |
||
198 | $urlParams['properties'], |
||
199 | $filterSet->property->depends_on_property_id, |
||
200 | $filterSet->property->depended_property_values |
||
201 | ) === false |
||
202 | ) { |
||
203 | continue; |
||
204 | } |
||
205 | } |
||
206 | $selections = PropertyStaticValues::getValuesForFilter( |
||
207 | $filterSet->property->id, |
||
208 | $urlParams['last_category_id'], |
||
209 | $urlParams['properties'], |
||
210 | $filterSet->multiple, |
||
211 | Yii::$app->getModule('shop')->filterOnlyByParentProduct |
||
212 | ); |
||
213 | if (count($selections) === 0) { |
||
214 | continue; |
||
215 | } |
||
216 | $item = [ |
||
217 | 'id' => $filterSet->property->id, |
||
218 | 'name' => $filterSet->property->name, |
||
219 | 'sort_order' => $filterSet->property->sort_order, |
||
220 | 'isRange' => $filterSet->is_range_slider, |
||
221 | 'selections' => [], |
||
222 | 'multiple' => $filterSet->multiple, |
||
223 | ]; |
||
224 | if ($filterSet->is_range_slider) { |
||
225 | $item['max'] = PHP_INT_MIN; |
||
226 | $item['min'] = PHP_INT_MAX; |
||
227 | $item['property'] = $filterSet->property; |
||
228 | } |
||
229 | foreach ($selections as $selection) { |
||
230 | if ($filterSet->is_range_slider) { |
||
231 | View Code Duplication | if ((int)$selection['value'] > $item['max']) { |
|
232 | $item['max'] = (int)$selection['value']; |
||
233 | } |
||
234 | View Code Duplication | if ((int)$selection['value'] < $item['min']) { |
|
235 | $item['min'] = (int)$selection['value']; |
||
236 | } |
||
237 | } elseif($item['multiple']) { |
||
238 | $selectedPropertyIndex = $this->getSelectedPropertyIndex( |
||
239 | $urlParams['properties'], |
||
240 | $filterSet->property_id, |
||
241 | $selection['id'] |
||
242 | ); |
||
243 | View Code Duplication | if ($selectedPropertyIndex !== false) { |
|
244 | if (count($urlParams['properties'][$filterSet->property_id]) > 1) { |
||
245 | $routeParams = $urlParams; |
||
246 | unset($routeParams['properties'][$filterSet->property_id][$selectedPropertyIndex]); |
||
247 | } else { |
||
248 | $routeParams = $urlParams; |
||
249 | unset($routeParams['properties'][$filterSet->property_id]); |
||
250 | } |
||
251 | if (isset($this->toUnset[$filterSet->property_id])) { |
||
252 | foreach ($this->toUnset[$filterSet->property_id] as $id) { |
||
253 | unset($routeParams['properties'][$id]); |
||
254 | } |
||
255 | } |
||
256 | } else { |
||
257 | $routeParams = $this->mergeUrlProperties( |
||
258 | $urlParams, |
||
259 | ['properties' => [$filterSet->property_id => [$selection['id']]]] |
||
260 | ); |
||
261 | } |
||
262 | $item['selections'][] = [ |
||
263 | 'id' => $selection['id'], |
||
264 | 'checked' => $selectedPropertyIndex !== false, |
||
265 | 'label' => $selection['name'], |
||
266 | 'url' => Url::toRoute($routeParams), |
||
267 | 'active' => $selection['active'], |
||
268 | ]; |
||
269 | } else { |
||
270 | $selectedPropertyIndex = $this->getSelectedPropertyIndex( |
||
271 | $urlParams['properties'], |
||
272 | $filterSet->property_id, |
||
273 | $selection['id'] |
||
274 | ); |
||
275 | View Code Duplication | if ($selectedPropertyIndex !== false) { |
|
276 | if (count($urlParams['properties'][$filterSet->property_id]) > 1) { |
||
277 | $routeParams = $urlParams; |
||
278 | unset($routeParams['properties'][$filterSet->property_id][$selectedPropertyIndex]); |
||
279 | } else { |
||
280 | $routeParams = $urlParams; |
||
281 | unset($routeParams['properties'][$filterSet->property_id]); |
||
282 | } |
||
283 | if (isset($this->toUnset[$filterSet->property_id])) { |
||
284 | foreach ($this->toUnset[$filterSet->property_id] as $id) { |
||
285 | unset($routeParams['properties'][$id]); |
||
286 | } |
||
287 | } |
||
288 | } else { |
||
289 | $routeParams = $this->mergeUrlProperties( |
||
290 | $urlParams, |
||
291 | ['properties' => [$filterSet->property_id => [$selection['id']]]] |
||
292 | ); |
||
293 | } |
||
294 | $item['selections'][] = [ |
||
295 | 'id' => $selection['id'], |
||
296 | 'checked' => $selectedPropertyIndex !== false, |
||
297 | 'label' => $selection['name'], |
||
298 | 'url' => $selection['active'] === true || $selectedPropertyIndex !== false |
||
299 | ? Url::toRoute($routeParams) |
||
300 | : null, |
||
301 | 'active' => $selection['active'], |
||
302 | ]; |
||
303 | } |
||
304 | } |
||
305 | if ($filterSet->is_range_slider) { |
||
306 | if ($item['min'] === $item['max']) { |
||
307 | continue; |
||
308 | } |
||
309 | $i = 1; |
||
310 | $n = $item['max'] - $item['min']; |
||
311 | while ($n >= 10) { |
||
312 | $n = $n / 10; |
||
313 | $i++; |
||
314 | } |
||
315 | $item['step'] = $i > 3 ? (int)pow(10, $i - 3) : 1; |
||
316 | unset($i, $n); |
||
317 | } |
||
318 | $filtersArray[] = $item; |
||
319 | unset($item); |
||
320 | } |
||
321 | Yii::$app->cache->set( |
||
322 | $cacheKey, |
||
323 | $filtersArray, |
||
324 | 86400, |
||
325 | new TagDependency( |
||
326 | [ |
||
327 | 'tags' => [ |
||
328 | ActiveRecordHelper::getCommonTag(FilterSets::className()), |
||
329 | ActiveRecordHelper::getCommonTag(Product::className()), |
||
330 | ActiveRecordHelper::getCommonTag(Property::className()), |
||
331 | ], |
||
332 | ] |
||
333 | ) |
||
334 | ); |
||
335 | } |
||
336 | return $this->render( |
||
337 | $this->viewFile, |
||
338 | [ |
||
339 | 'filtersArray' => $filtersArray, |
||
340 | 'id' => 'filter-set-' . $this->id, |
||
341 | 'urlParams' => $urlParams, |
||
342 | 'usePjax' => $this->usePjax, |
||
343 | ] |
||
344 | ); |
||
345 | } |
||
346 | // End of a new filter sets implementation |
||
347 | |||
348 | return $this->render( |
||
349 | $this->viewFile, |
||
350 | [ |
||
351 | 'filterSets' => $filterSets, |
||
352 | 'id' => 'filter-set-' . $this->id, |
||
353 | 'hideEmpty' => $this->hideEmpty, |
||
354 | ] |
||
355 | ); |
||
356 | } |
||
357 | } |
||
358 |
When comparing two booleans, it is generally considered safer to use the strict comparison operator.