get item relations
This commit is contained in:
parent
bba35c7b14
commit
2133fae2cc
@ -3,7 +3,9 @@
|
|||||||
namespace app\modules\tag;
|
namespace app\modules\tag;
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use itguild\forms\builders\SelectBuilder;
|
||||||
use itguild\forms\builders\TextInputBuilder;
|
use itguild\forms\builders\TextInputBuilder;
|
||||||
|
use itguild\forms\inputs\Select;
|
||||||
use kernel\app_modules\tag\models\Tag;
|
use kernel\app_modules\tag\models\Tag;
|
||||||
use kernel\app_modules\tag\models\TagEntity;
|
use kernel\app_modules\tag\models\TagEntity;
|
||||||
use kernel\helpers\Debug;
|
use kernel\helpers\Debug;
|
||||||
@ -19,6 +21,7 @@ class TagModule extends Module
|
|||||||
|
|
||||||
public MenuService $menuService;
|
public MenuService $menuService;
|
||||||
public MigrationService $migrationService;
|
public MigrationService $migrationService;
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
$this->menuService = new MenuService();
|
$this->menuService = new MenuService();
|
||||||
@ -58,10 +61,12 @@ class TagModule extends Module
|
|||||||
|
|
||||||
public function formInputs(string $entity, Model $model = null): void
|
public function formInputs(string $entity, Model $model = null): void
|
||||||
{
|
{
|
||||||
$input = TextInputBuilder::build("tag", [
|
$input = SelectBuilder::build("tag[]", [
|
||||||
'class' => 'form-control',
|
'class' => 'form-control',
|
||||||
'placeholder' => 'Теги',
|
'placeholder' => 'Теги',
|
||||||
'value' => Tag::find($model->id)->label ?? ""
|
'value' => '',
|
||||||
|
'multiple' => "multiple",
|
||||||
|
'options' => Tag::getTagLabelByEntity($entity)
|
||||||
]);
|
]);
|
||||||
$input->setLabel("Теги");
|
$input->setLabel("Теги");
|
||||||
$input->create()->render();
|
$input->create()->render();
|
||||||
@ -69,23 +74,21 @@ class TagModule extends Module
|
|||||||
|
|
||||||
public function saveInputs(string $entity, Model $model, Request $request): void
|
public function saveInputs(string $entity, Model $model, Request $request): void
|
||||||
{
|
{
|
||||||
$tag = new Tag();
|
TagEntity::where("entity", $entity)->where("entity_id", $model->id)->delete();
|
||||||
$tag->label = $request->post('tag');
|
|
||||||
$tag->entity = $entity;
|
|
||||||
$tag->status = Tag::ACTIVE_STATUS;
|
|
||||||
$tag->slug = Slug::createSlug($request->post('tag'), $model);
|
|
||||||
$tag->save();
|
|
||||||
|
|
||||||
$tagEntity = new TagEntity();
|
$tags = $request->post("tag");
|
||||||
$tagEntity->entity = $entity;
|
foreach ($tags as $tag) {
|
||||||
$tagEntity->entity_id = $model->id;
|
$tagEntity = new TagEntity();
|
||||||
$tagEntity->tag_id = $tag->id;
|
$tagEntity->entity = $entity;
|
||||||
$tagEntity->save();
|
$tagEntity->entity_id = $model->id;
|
||||||
|
$tagEntity->tag_id = $tag;
|
||||||
|
$tagEntity->save();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getInputs(string $entity, Model $model)
|
|
||||||
{
|
|
||||||
|
|
||||||
// Debug::dd($tag);
|
public function getItems(string $entity, Model $model): array
|
||||||
|
{
|
||||||
|
return TagEntity::where("entity", $entity)->where("entity_id", $model->id)->with("tag")->get()->toArray();
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -185,4 +185,19 @@ class EntityRelation
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getEntityAdditionalProperty(string $entity, Model $model): array
|
||||||
|
{
|
||||||
|
$relations = $this->getEntityRelationsBySlug($entity);
|
||||||
|
if ($relations){
|
||||||
|
foreach ($relations as $relation){
|
||||||
|
$moduleClass = $this->getAdditionalPropertyClassBySlug($relation);
|
||||||
|
if ($moduleClass and method_exists($moduleClass, "getItems")) {
|
||||||
|
return $moduleClass->getItems($entity, $model);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return [];
|
||||||
|
}
|
||||||
}
|
}
|
@ -42,4 +42,20 @@ class Tag extends Model
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function getTagListByEntity(string $entity): array
|
||||||
|
{
|
||||||
|
return self::where("entity", $entity)->get()->toArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getTagLabelByEntity(string $entity): array
|
||||||
|
{
|
||||||
|
$result = [];
|
||||||
|
$tags = self::getTagListByEntity($entity);
|
||||||
|
foreach ($tags as $tag){
|
||||||
|
$result[$tag['id']] = $tag['label'];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -24,4 +24,9 @@ class TagEntity extends Model
|
|||||||
'entity_id' => 'Идентификатор сущности',
|
'entity_id' => 'Идентификатор сущности',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function tag(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Tag::class);
|
||||||
|
}
|
||||||
}
|
}
|
@ -25,6 +25,9 @@ $table->beforePrint(function () use ($content) {
|
|||||||
return $btn;
|
return $btn;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$entityRelation = new \kernel\EntityRelation();
|
||||||
|
$additional = $entityRelation->getEntityAdditionalProperty("post", $content);
|
||||||
|
|
||||||
$table->rows([
|
$table->rows([
|
||||||
'created_at' => function ($data) {
|
'created_at' => function ($data) {
|
||||||
if (!$data){
|
if (!$data){
|
||||||
|
Loading…
Reference in New Issue
Block a user