MultipleImgBehavior.php
3.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php
namespace common\behaviors;
use common\components\artboximage\ArtboxImageHelper;
use yii\base\Behavior;
use yii\db\ActiveRecord;
use yii\helpers\Url;
/**
* Class MultipleImgBehavior
* @todo Write validation
* @property ActiveRecord $owner
* @property ActiveRecord $image
* @property ActiveRecord[] $images
* @package common\behaviors
*/
class MultipleImgBehavior extends Behavior
{
/**
* key - $model foreign key, value - $owner link key (usual ID)
* @var array
*/
public $links = [];
/**
* Will be passed to get image and get images queries
*
* @var array
*/
public $conditions = [];
/**
* Full namespaced image model
* @var string
*/
public $model;
/**
* Image config array:
* 'caption' - $model caption attribute
* 'delete_action' - url to image delete action, will be passed as first argument to
* Url::to();
* 'id' - $model primary key
* @var array
*/
public $config = [];
/**
* One image query
*
* @return \yii\db\ActiveQuery
*/
public function getImage()
{
/**
* @var ActiveRecord $owner
*/
$owner = $this->owner;
$query = $owner->hasOne($this->model, $this->links);
$conditions = $this->conditions;
foreach($conditions as $condition) {
$query->andWhere($condition);
}
return $query;
}
/**
* All images query
*
* @return \yii\db\ActiveQuery
*/
public function getImages()
{
/**
* @var ActiveRecord $owner
*/
$owner = $this->owner;
$query = $owner->hasMany($this->model, $this->links);
$conditions = $this->conditions;
foreach($conditions as $left => $right) {
$query->andWhere([$left => $right]);
}
return $query;
}
/**
* Get images config array for FileInput
*
* @return array
*/
public function getImagesConfig()
{
$op = [];
$images = $this->getImages()->all();
$config = $this->config;
if(!isset( $config[ 'id' ] )) {
return $op;
}
foreach($images as $image) {
$op[] = [
'caption' => ( isset( $config[ 'caption' ] ) ) ? $image->{$config[ 'caption' ]} : '',
'url' => ( isset( $config[ 'delete_action' ] ) ) ? Url::to([
$config[ 'delete_action' ],
'id' => $image->{$config[ 'id' ]},
]) : '',
'key' => $image->{$config[ 'id' ]},
'extra' => [
'id' => $image->{$config[ 'id' ]},
],
];
}
return $op;
}
/**
* Get images HTML
*
* @param string $preset
*
* @return array
*/
public function getImagesHTML($preset = 'admin_thumb')
{
$op = [];
$images = $this->getImages()->all();
foreach($images as $image) {
$op[] = ArtboxImageHelper::getImage($image->imageUrl, $preset);
}
return $op;
}
public function getImageUrl($dummy = true)
{
$image = $this->getImage()->one();
if(!empty($image)) {
return $image->getImageUrl();
} elseif($dummy) {
return '/storage/no-image.png';
} else {
return NULL;
}
}
}