From 3885f8771b707f6c511695a030be2e278f6e65fc Mon Sep 17 00:00:00 2001 From: Korzinkayablok Date: Wed, 8 Sep 2021 17:44:54 +0300 Subject: [PATCH] Achievement model. Achievement CRUD pages. Achievements at sidebar --- backend/config/main.php | 3 + backend/modules/achievements/Achievements.php | 24 +++ .../controllers/AchievementsController.php | 151 ++++++++++++++++++ .../achievements/models/Achievement.php | 21 +++ .../achievements/models/AchievementSearch.php | 58 +++++++ .../achievements/views/achievements/_form.php | 50 ++++++ .../views/achievements/create.php | 19 +++ .../achievements/views/achievements/index.php | 49 ++++++ .../views/achievements/update.php | 17 ++ .../achievements/views/achievements/view.php | 60 +++++++ backend/views/layouts/left.php | 1 + common/models/Achievement.php | 65 ++++++++ common/models/AchievementUserCard.php | 66 ++++++++ ...ment_table_and_link_table_to_user_card.php | 74 +++++++++ 14 files changed, 658 insertions(+) create mode 100755 backend/modules/achievements/Achievements.php create mode 100755 backend/modules/achievements/controllers/AchievementsController.php create mode 100755 backend/modules/achievements/models/Achievement.php create mode 100755 backend/modules/achievements/models/AchievementSearch.php create mode 100755 backend/modules/achievements/views/achievements/_form.php create mode 100755 backend/modules/achievements/views/achievements/create.php create mode 100755 backend/modules/achievements/views/achievements/index.php create mode 100755 backend/modules/achievements/views/achievements/update.php create mode 100755 backend/modules/achievements/views/achievements/view.php create mode 100644 common/models/Achievement.php create mode 100644 common/models/AchievementUserCard.php create mode 100644 console/migrations/m210908_110644_create_achievement_table_and_link_table_to_user_card.php diff --git a/backend/config/main.php b/backend/config/main.php index 4683bf1..e00864a 100755 --- a/backend/config/main.php +++ b/backend/config/main.php @@ -56,6 +56,9 @@ return [ 'interview' => [ 'class' => 'backend\modules\interview\Interview', ], + 'achievements' => [ + 'class' => 'backend\modules\achievements\Achievements', + ], ], 'components' => [ 'request' => [ diff --git a/backend/modules/achievements/Achievements.php b/backend/modules/achievements/Achievements.php new file mode 100755 index 0000000..fbb7d8e --- /dev/null +++ b/backend/modules/achievements/Achievements.php @@ -0,0 +1,24 @@ + [ + 'class' => VerbFilter::className(), + 'actions' => [ + 'delete' => ['POST'], + ], + ], + 'access' => [ + 'class' => AccessControl::className(), + 'rules' => [ + [ + 'allow' => true, + 'roles' => ['admin'], + ], + ], + ], + ]; + } + + /** + * Renders the index view for the module + * @return string + */ + public function actionIndex() + { + $searchModel = new AchievementSearch(); + + $dataProvider = $searchModel->search(); + return $this->render('index', [ + 'searchModel' => $searchModel, + 'dataProvider' => $dataProvider + ]); + } + + /** + * Creates a new note model. + * If creation is successful, the browser will be redirected to the 'view' page. + * @return mixed + */ + public function actionCreate() + { + $model = new Achievement(); + + if ($model->load(\Yii::$app->request->post()) && $model->save()) { + return $this->redirect(['view', 'id' => $model->id]); + } + + return $this->render('create', [ + 'model' => $model + ]); + } + + /** + * Displays a single note model. + * @param integer $id + * @return mixed + * @throws NotFoundHttpException if the model cannot be found + */ + public function actionView($id) + { + $additionalDataProvider = new ActiveDataProvider([ + 'query' => FieldsValueNew::find() + ->where(['item_id' => $id, 'item_type' => FieldsValueNew::TYPE_NOTE]) + ->orderBy('order'), + 'pagination' => [ + 'pageSize' => 200, + ], + ]); + + $changeDataProvider = new ActiveDataProvider([ + 'query' => \common\models\ChangeHistory::find()->where(['type_id' => $this->findModel($id)->id]), + 'pagination' => [ + 'pageSize' => 200, + ] + ]); + + return $this->render('view', [ + 'model' => Achievement::findOne($id), + 'additionalDataProvider' => $additionalDataProvider, + 'changeDataProvider' => $changeDataProvider, + ]); + } + + public function actionUpdate($id) + { + $model = $this->findModel($id); + + if ($model->load(Yii::$app->request->post()) && $model->save()) { + return $this->redirect(['view', 'id' => $model->id]); + } + + return $this->render('update', [ + 'model' => $model, + ]); + } + + /** + * Deletes an existing Note model. + * If deletion is successful, the browser will be redirected to the 'index' page. + * @param integer $id + * @return mixed + * @throws NotFoundHttpException if the model cannot be found + */ + public function actionDelete($id) + { + $this->findModel($id)->delete(); + + return $this->redirect(['index']); + } + + /** + * Finds the note model based on its primary key value. + * If the model is not found, a 404 HTTP exception will be thrown. + * @param integer $id + * @return Achievement the loaded model + * @throws NotFoundHttpException if the model cannot be found + */ + protected function findModel($id) + { + if (($model = Achievement::findOne($id)) !== null) { + return $model; + } + + throw new NotFoundHttpException('The requested page does not exist.'); + } +} diff --git a/backend/modules/achievements/models/Achievement.php b/backend/modules/achievements/models/Achievement.php new file mode 100755 index 0000000..0acd25e --- /dev/null +++ b/backend/modules/achievements/models/Achievement.php @@ -0,0 +1,21 @@ + [ + 'class' => \common\behaviors\LogBehavior::class, + ] + ]; + } +} \ No newline at end of file diff --git a/backend/modules/achievements/models/AchievementSearch.php b/backend/modules/achievements/models/AchievementSearch.php new file mode 100755 index 0000000..a67712b --- /dev/null +++ b/backend/modules/achievements/models/AchievementSearch.php @@ -0,0 +1,58 @@ +request->queryParams; + $query = Achievement::find(); + // add conditions that should always apply here + + $dataProvider = new ActiveDataProvider([ + 'query' => $query, + ]); + + $this->load($params); + + if (!$this->validate()) { + // uncomment the following line if you do not want to return any records when validation fails + // $query->where('0=1'); + return $dataProvider; + } + + // grid filtering conditions + $query->andFilterWhere([ + 'id' => $this->id, + 'status' => $this->status + ]); + + $query->andFilterWhere(['like', 'slug', $this->slug]) + ->andFilterWhere(['like', 'description', $this->description]) + ->andFilterWhere(['like', 'title', $this->title]); +// $query->orderBy('created_at DESC'); + + return $dataProvider; + } +} \ No newline at end of file diff --git a/backend/modules/achievements/views/achievements/_form.php b/backend/modules/achievements/views/achievements/_form.php new file mode 100755 index 0000000..69e873c --- /dev/null +++ b/backend/modules/achievements/views/achievements/_form.php @@ -0,0 +1,50 @@ + + +
+ + + + field($model, 'title')->textInput(['maxlength' => true]) ?> + field($model, 'slug')->textInput(['maxlength' => true]) ?> + field($model, 'description')->textarea(['rows' => 6]) ?> + field($model, 'status')->dropDownList(\common\models\Achievement::getStatusLabel()) ?> +
+
+ 'ru', + 'controller' => 'elfinder', + // вставляем название контроллера, по умолчанию равен elfinder + 'filter' => 'image', + // фильтр файлов, можно задать массив фильтров https://github.com/Studio-42/elFinder/wiki/Client-con.. + 'name' => 'Achievement[img]', + 'id' => 'achievement-img', + 'template' => '
{input}{button}
', + 'options' => ['class' => 'form-control itemImg', 'maxlength' => '255'], + 'buttonOptions' => ['class' => 'btn btn-primary'], + 'value' => $model->img, + 'buttonName' => 'Выбрать изображение', + ]); + ?> +
+ + +
+ 'btn btn-success']) ?> +
+ + + +
diff --git a/backend/modules/achievements/views/achievements/create.php b/backend/modules/achievements/views/achievements/create.php new file mode 100755 index 0000000..c6bb6b7 --- /dev/null +++ b/backend/modules/achievements/views/achievements/create.php @@ -0,0 +1,19 @@ +title = 'Создать достижение'; +$this->params['breadcrumbs'][] = ['label' => 'Достижения', 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/modules/achievements/views/achievements/index.php b/backend/modules/achievements/views/achievements/index.php new file mode 100755 index 0000000..4c36c2c --- /dev/null +++ b/backend/modules/achievements/views/achievements/index.php @@ -0,0 +1,49 @@ +title = 'Достижения'; +$this->params['breadcrumbs'][] = $this->title; +?> +
+ +

+ 'btn btn-success']) ?> +

+ + $dataProvider, + 'filterModel' => $searchModel, + 'columns' => [ + ['class' => 'yii\grid\SerialColumn'], +// 'id', + 'title', + 'slug', + 'description', + [ + 'attribute' => 'status', + 'value' => function ($model) { + return \common\models\Achievement::getStatusLabel()[$model->status ?? 0]; + }, + 'filter' => kartik\select2\Select2::widget([ + 'model' => $searchModel, + 'attribute' => 'status', + 'data' => \common\models\Achievement::getStatusLabel(), + 'options' => ['placeholder' => 'Начните вводить...', 'class' => 'form-control'], + 'pluginOptions' => [ + 'allowClear' => true + ], + ]), + ], +// 'created_at', +// 'updated_at', + + ['class' => 'yii\grid\ActionColumn'], + ], + ]); ?> +
\ No newline at end of file diff --git a/backend/modules/achievements/views/achievements/update.php b/backend/modules/achievements/views/achievements/update.php new file mode 100755 index 0000000..a1eacb9 --- /dev/null +++ b/backend/modules/achievements/views/achievements/update.php @@ -0,0 +1,17 @@ +title = 'Редактировать достижение: ' . $model->title; +$this->params['breadcrumbs'][] = ['label' => 'Заметки', 'url' => ['index']]; +$this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]]; +$this->params['breadcrumbs'][] = 'Редактировать'; +?> +
+ + render('_form', [ + 'model' => $model, + ]) ?> + +
diff --git a/backend/modules/achievements/views/achievements/view.php b/backend/modules/achievements/views/achievements/view.php new file mode 100755 index 0000000..e4475e8 --- /dev/null +++ b/backend/modules/achievements/views/achievements/view.php @@ -0,0 +1,60 @@ +title = $model->title; +$this->params['breadcrumbs'][] = ['label' => 'Достижения', 'url' => ['index']]; +$this->params['breadcrumbs'][] = $this->title; +?> +
+

+ 'btn btn-primary']) ?> + $model->id], ['class' => 'btn btn-primary']) ?> + $model->id], [ + 'class' => 'btn btn-danger', + 'data' => [ + 'confirm' => 'Are you sure you want to delete this item?', + 'method' => 'post', + ], + ]) ?> +

+ + $model, + 'attributes' => [ + 'id', + 'title', + 'slug', + 'description:ntext', + [ + 'attribute' => 'status', + 'value' => \common\models\Achievement::getStatusLabel()[$model->status ?? 0], + ], + [ + 'attribute' => 'img', + 'format' => 'raw', + 'value' => function ($model) { + return Html::tag('img', null, ['src' => $model->img, 'width' => '100px']); + } + ], + ], + ]) ?> + +

История изменений

+ $changeDataProvider, + 'columns' => [ + 'label', + 'old_value', + 'new_value', + 'created_at', + ], + ]); ?> + +
diff --git a/backend/views/layouts/left.php b/backend/views/layouts/left.php index c0772ca..aa568d8 100755 --- a/backend/views/layouts/left.php +++ b/backend/views/layouts/left.php @@ -48,6 +48,7 @@ ], ['label' => 'Баланс', 'icon' => 'dollar', 'url' => ['/balan ce/balance'], 'active' => \Yii::$app->controller->id == 'balance', 'visible' => Yii::$app->user->can('confidential_information')], ['label' => 'Отпуска', 'icon' => 'plane', 'url' => ['/holiday/holiday'], 'active' => \Yii::$app->controller->id == 'holiday', 'visible' => Yii::$app->user->can('confidential_information')], + ['label' => 'Достижения', 'icon' => 'trophy', 'url' => ['/achievements/achievements'], 'active' => \Yii::$app->controller->id == 'achievements', 'visible' => Yii::$app->user->can('confidential_information')], ['label' => 'Доступы', 'icon' => 'key', 'url' => ['/accesses/accesses'], 'active' => \Yii::$app->controller->id == 'accesses', 'visible' => Yii::$app->user->can('confidential_information')], ['label' => 'Заметки', 'icon' => 'sticky-note', 'url' => ['/notes/notes'], 'active' => \Yii::$app->controller->id == 'notes', 'visible' => Yii::$app->user->can('confidential_information')], ['label' => 'Календарь ДР', 'icon' => 'calendar', 'url' => ['/calendar/calendar'], 'active' => \Yii::$app->controller->id == 'calendar', 'visible' => Yii::$app->user->can('confidential_information')], diff --git a/common/models/Achievement.php b/common/models/Achievement.php new file mode 100644 index 0000000..4e80d66 --- /dev/null +++ b/common/models/Achievement.php @@ -0,0 +1,65 @@ + 'Активна', + self::STATUS_DISABLE => 'Не активна' + ]; + } + /** + * {@inheritdoc} + */ + public static function tableName() + { + return 'achievement'; + } + + /** + * {@inheritdoc} + */ + public function rules() + { + return [ + [['title', 'slug'], 'required'], + [['status'], 'integer'], + [['slug', 'title'], 'string', 'max' => 255], + [['description', 'img'], 'string'], + [['status'], 'exist', 'skipOnError' => true, 'targetClass' => Status::class, 'targetAttribute' => ['status' => 'id']], + ]; + } + + /** + * {@inheritdoc} + */ + public function attributeLabels() + { + return [ + 'id' => 'ID', + 'title' => 'Название', + 'slug' => 'Slug', + 'description' => 'Описание', + 'status' => 'Статус', + 'img' => 'Изображение', + ]; + } +} diff --git a/common/models/AchievementUserCard.php b/common/models/AchievementUserCard.php new file mode 100644 index 0000000..8f88677 --- /dev/null +++ b/common/models/AchievementUserCard.php @@ -0,0 +1,66 @@ + true, 'targetClass' => Achievement::className(), 'targetAttribute' => ['achievement_id' => 'id']], + [['user_card_id'], 'exist', 'skipOnError' => true, 'targetClass' => UserCard::className(), 'targetAttribute' => ['user_card_id' => 'id']], + ]; + } + + /** + * {@inheritdoc} + */ + public function attributeLabels() + { + return [ + 'id' => 'ID', + 'achievement_id' => 'Achievement ID', + 'user_card_id' => 'User Card ID', + ]; + } + + /** + * @return \yii\db\ActiveQuery + */ + public function getAchievement() + { + return $this->hasOne(Achievement::className(), ['id' => 'achievement_id']); + } + + /** + * @return \yii\db\ActiveQuery + */ + public function getUserCard() + { + return $this->hasOne(UserCard::className(), ['id' => 'user_card_id']); + } +} diff --git a/console/migrations/m210908_110644_create_achievement_table_and_link_table_to_user_card.php b/console/migrations/m210908_110644_create_achievement_table_and_link_table_to_user_card.php new file mode 100644 index 0000000..289cd52 --- /dev/null +++ b/console/migrations/m210908_110644_create_achievement_table_and_link_table_to_user_card.php @@ -0,0 +1,74 @@ +createTable('{{%achievement}}', [ + 'id' => $this->primaryKey(), + 'slug' => $this->string(255), + 'title' => $this->string(255), + 'img' => $this->text(), + 'description' => $this->text(), + 'status' => $this->integer()->defaultValue(1), + ]); + $this->addForeignKey( + 'fk-achievement-status', + 'achievement', + 'status', + 'status', + 'id', + 'CASCADE' + ); + $this->createTable('{{%achievement_user_card}}', [ + 'id' => $this->primaryKey(), + 'user_card_id' => $this->integer(), + 'achievement_id' => $this->integer() + ]); + $this->addForeignKey( + 'fk-achievement_user_card-user_id', + 'achievement_user_card', + 'user_card_id', + 'user_card', + 'id', + 'CASCADE' + ); + $this->addForeignKey( + 'fk-achievement_user_card-achievement_id', + 'achievement_user_card', + 'achievement_id', + 'achievement', + 'id', + 'CASCADE' + ); + } + + /** + * {@inheritdoc} + */ + public function safeDown() + { + $this->dropForeignKey( + 'fk-achievement_user_card-user_id', + 'achievement_user_card' + ); + + $this->dropForeignKey( + 'fk-achievement_user_card-achievement_id', + 'achievement_user_card' + ); + + $this->dropTable('{{%achievement_user_card}}'); + + $this->dropTable('{{%achievement}}'); + + } +}