¨4.0.1¨
This commit is contained in:
99
Modules/Variation/Entities/VariationValue.php
Normal file
99
Modules/Variation/Entities/VariationValue.php
Normal file
@@ -0,0 +1,99 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Variation\Entities;
|
||||
|
||||
use Modules\Support\Eloquent\Model;
|
||||
use Modules\Media\Eloquent\HasMedia;
|
||||
use Modules\Support\Eloquent\Translatable;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
|
||||
class VariationValue extends Model
|
||||
{
|
||||
use Translatable, HasMedia;
|
||||
|
||||
/**
|
||||
* The relations to eager load on every query.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $with = ['translations'];
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = ['uid', 'value', 'position'];
|
||||
|
||||
/**
|
||||
* The attributes that are translatable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected array $translatedAttributes = ['label'];
|
||||
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
protected $appends = ['color', 'image'];
|
||||
|
||||
|
||||
/**
|
||||
* @return mixed|null
|
||||
*/
|
||||
public function getColorAttribute(): mixed
|
||||
{
|
||||
return $this->value ?? null;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return mixed|null
|
||||
*/
|
||||
public function getImageAttribute(): mixed
|
||||
{
|
||||
return $this->files()->first() ?? null;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return BelongsTo
|
||||
*/
|
||||
public function variation(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Variation::class);
|
||||
}
|
||||
|
||||
|
||||
protected function extractMediaFromRequest()
|
||||
{
|
||||
if (request()->routeIs('admin.variations.*')) {
|
||||
return $this->extractMediaForGlobal();
|
||||
}
|
||||
|
||||
if (request()->routeIs('admin.products.*')) {
|
||||
return $this->extractMediaForLocal();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
protected function extractMediaForGlobal()
|
||||
{
|
||||
if (request('type') === 'image') {
|
||||
return [
|
||||
'media' => [request('values.' . $this->uid . '.image')],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
protected function extractMediaForLocal()
|
||||
{
|
||||
if ($this->variation->type === 'image') {
|
||||
return [
|
||||
'media' => [request('variations.' . $this->variation->uid . '.values.' . $this->uid . '.image')],
|
||||
];
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user