menu_service = $menu_service; $this->menu_item_service = $menu_item_service; } public function behaviors(): array { return [ 'access' => [ 'class' => AccessControl::class, 'rules' => [ [ 'allow' => true, 'roles' => ['MenuManagement'], ], [ // all the action are accessible to admin 'allow' => true, 'roles' => ['admin'], ], ], ], 'verbs' => [ 'class' => VerbFilter::class, 'actions' => [ 'delete' => ['POST'], 'delete-menu-item' => ['POST'], ], ], ]; } /** * @param null $id * @return Response|string * @throws NotFoundHttpException */ public function actionIndex($id = null): Response|string { $menus = []; // menu list $menu_records = Menu::find()->all(); foreach ($menu_records as $menu_record) { $menus[$menu_record->id] = isset($menu_record->translation) && $menu_record->translation->name ? $menu_record->translation->name : $menu_record->findTranslation(Yii::$app->params['defaultLanguage'])->name; } $form = new MenuSelectForm(); if ($form->load(Yii::$app->request->get()) && $form->validate()) { return $this->redirect(['menu/index', 'id' => $form->id]); } elseif ($id) { $menu = $this->findModel($id); if ($this->createMenuItem()) { return $this->redirect(['/menu/index', 'id' => $id]); }; // create menu item if MenuItemForm sent $creatorWidgets = $this->getCreatorWidgets($menu->id); return $this->render('menu', [ 'model' => $form, 'menus' => $menus, 'menu' => $menu, 'creator' => $creatorWidgets, ]); } else { return $this->render('select_menu', [ 'model' => $form, 'menus' => $menus, ]); } } public function actionCreate(): Response|string { $form = new MenuForm(); if ($form->load(Yii::$app->request->post()) && $form->validate()) { try { $menu = $this->menu_service->create($form); return $this->redirect(['index', 'id' => $menu->id]); } catch (DomainException $e) { Yii::$app->errorHandler->logException($e); Yii::$app->session->setFlash('error', $e->getMessage()); } } return $this->render('create', [ 'model' => $form, ]); } /** * @param $id * @return Response|string * @throws NotFoundHttpException */ public function actionUpdate($id): Response|string { $menu = $this->findModel($id); $form = new MenuForm($menu); if ($form->load(Yii::$app->request->post()) && $form->validate()) { try { $this->menu_service->edit($menu->id, $form); return $this->redirect(['index', 'id' => $menu->id]); } catch (DomainException $e) { Yii::$app->errorHandler->logException($e); Yii::$app->session->setFlash('error', $e->getMessage()); } } return $this->render('update', [ 'model' => $form, 'menu' => $menu, ]); } public function actionDelete($id): Response { try { $this->menu_service->remove($id); } catch (DomainException $e) { Yii::$app->errorHandler->logException($e); Yii::$app->session->setFlash('error', $e->getMessage()); } return $this->redirect(['index']); } /** * @param $id * @return Response * @throws NotFoundHttpException */ public function actionSaveItem($id): Response { $item = $this->findItemModel($id); $form = new MenuItemForm($item); if ($form->load(Yii::$app->request->post()) && $form->validate()) { try { $this->menu_item_service->edit($item->id, $form); return $this->redirect(['index', 'id' => $item->menu_id]); } catch (DomainException $e) { Yii::$app->errorHandler->logException($e); Yii::$app->session->setFlash('error', $e->getMessage()); } } return $this->redirect(['index', 'id' => $item->menu_id]); } /** * @return array * @throws NotFoundHttpException * @throws StaleObjectException */ public function actionDeleteMenuItem(): array { Yii::$app->response->format = Response::FORMAT_JSON; if (Yii::$app->request->isAjax) { try { $id = Yii::$app->request->post('id'); $item = $this->findItemModel($id); $item->delete(); Yii::$app->session->setFlash('success', Yii::t('menu', 'Menu Item Deleted')); return ['result' => 'success']; } catch (RuntimeException $e) { return ['result' => 'error', 'message' => $e->getMessage()]; } } return ['result' => 'error', 'message' => 'Request error']; } public function actionSaveMenuItems(): array { $json = Yii::$app->request->post('json'); Yii::$app->response->format = Response::FORMAT_JSON; if (Yii::$app->request->isAjax) { try { $order = []; $items = Json::decode($json, true); foreach ($items as $item) { $order[$item[1]] = isset($order[$item[1]]) ? $order[$item[1]] + 1 : 0; $this->menu_item_service->setPosition($item, $order[$item[1]]); } Yii::$app->session->setFlash('success', Yii::t('menu', 'Menu Saved')); return ['result' => 'success']; } catch (RuntimeException $e) { return ['result' => 'error', 'message' => $e->getMessage()]; } } return ['result' => 'error', 'message' => 'Request error']; } private function getCreatorWidgets($menu_id): array { $widgets = []; $modules = ModuleRecord::find()->active()->all(); foreach ($modules as $module) { if (method_exists($module->class, 'getMenuItemCreator')) { $module_widgets = call_user_func_array($module->class . '::getMenuItemCreator', [$menu_id]); $widgets = is_array($module_widgets) ? array_merge($widgets, $module_widgets) : $widgets; } } return $widgets; } private function createMenuItem(): bool { $form = new MenuItemForm(); if ($form->load(Yii::$app->request->post()) && $form->validate()) { try { $this->menu_item_service->create($form); return true; } catch (DomainException $e) { Yii::$app->errorHandler->logException($e); } } return false; } /** * @param $id * @return Menu * @throws NotFoundHttpException */ protected function findModel($id): Menu { if (($model = Menu::findOne($id)) !== null) { return $model; } throw new NotFoundHttpException('The requested menu does not exist.'); } /** * @param $id * @return MenuItem * @throws NotFoundHttpException */ protected function findItemModel($id): MenuItem { if (($model = MenuItem::findOne($id)) !== null) { return $model; } throw new NotFoundHttpException('The requested menu item does not exist.'); } }