1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Image Optimize plugin for Craft CMS |
4
|
|
|
* |
5
|
|
|
* Automatically optimize images after they've been transformed |
6
|
|
|
* |
7
|
|
|
* @link https://nystudio107.com |
|
|
|
|
8
|
|
|
* @copyright Copyright (c) nystudio107 |
|
|
|
|
9
|
|
|
*/ |
|
|
|
|
10
|
|
|
|
11
|
|
|
namespace nystudio107\imageoptimize\models; |
12
|
|
|
|
13
|
|
|
use craft\helpers\Html; |
14
|
|
|
use craft\helpers\Template; |
15
|
|
|
use Twig\Markup; |
16
|
|
|
|
17
|
|
|
/** |
|
|
|
|
18
|
|
|
* @author nystudio107 |
|
|
|
|
19
|
|
|
* @package ImageOptimize |
|
|
|
|
20
|
|
|
* @since 5.0.0-beta.1 |
|
|
|
|
21
|
|
|
*/ |
|
|
|
|
22
|
|
|
class ImgTag extends BaseImageTag |
23
|
|
|
{ |
24
|
|
|
/** |
|
|
|
|
25
|
|
|
* @var string The loading scheme to use: 'eager', 'lazy', 'lazySizes', 'lazySizesFallback' |
26
|
|
|
*/ |
27
|
|
|
public string $loadingStrategy = 'eager'; |
28
|
|
|
|
29
|
|
|
/** |
|
|
|
|
30
|
|
|
* @var string The type of placeholder image to use: 'box', 'color', 'image', 'silhouette', or 'none' |
31
|
|
|
*/ |
32
|
|
|
public string $placeholder = 'box'; |
33
|
|
|
|
34
|
|
|
/** |
|
|
|
|
35
|
|
|
* @var array array of tag attributes for the <img> tag |
36
|
|
|
*/ |
37
|
|
|
public array $imgAttrs = []; |
38
|
|
|
|
39
|
|
|
/** |
|
|
|
|
40
|
|
|
* @param $config |
|
|
|
|
41
|
|
|
*/ |
42
|
|
|
public function __construct($config = []) |
43
|
|
|
{ |
44
|
|
|
parent::__construct($config); |
45
|
|
|
// Populate the $imageAttrs |
46
|
|
|
$this->imgAttrs = [ |
47
|
|
|
'class' => '', |
48
|
|
|
'style' => '', |
49
|
|
|
'width' => $this->optimizedImage->placeholderWidth, |
50
|
|
|
'height' => $this->optimizedImage->placeholderHeight, |
51
|
|
|
'src' => reset($this->optimizedImage->optimizedImageUrls), |
|
|
|
|
52
|
|
|
'srcset' => $this->optimizedImage->getSrcsetFromArray($this->optimizedImage->optimizedImageUrls), |
|
|
|
|
53
|
|
|
'sizes' => '100vw', |
54
|
|
|
'loading' => '', |
55
|
|
|
]; |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
/** |
|
|
|
|
59
|
|
|
* @inheritDoc |
60
|
|
|
*/ |
|
|
|
|
61
|
|
|
public function init(): void |
62
|
|
|
{ |
63
|
|
|
parent::init(); |
64
|
|
|
// If the original image is an SVG or gif, don't add the placeholder box CSS so that transparency works as intended |
65
|
|
|
$path = parse_url($this->imgAttrs['src'], PHP_URL_PATH); |
66
|
|
|
$extension = pathinfo($path, PATHINFO_EXTENSION); |
67
|
|
|
if ($extension === 'svg' || $extension === 'gif') { |
68
|
|
|
$this->placeholder = 'none'; |
69
|
|
|
} |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
/** |
73
|
|
|
* Set the $loading property |
74
|
|
|
* |
75
|
|
|
* @param string $value |
|
|
|
|
76
|
|
|
* @return $this |
|
|
|
|
77
|
|
|
*/ |
78
|
|
|
public function loadingStrategy(string $value): ImgTag |
79
|
|
|
{ |
80
|
|
|
$this->loadingStrategy = $value; |
81
|
|
|
|
82
|
|
|
return $this; |
83
|
|
|
} |
84
|
|
|
|
85
|
|
|
/** |
86
|
|
|
* Set the $placeholder property |
87
|
|
|
* |
88
|
|
|
* @param string $value |
|
|
|
|
89
|
|
|
* @return $this |
|
|
|
|
90
|
|
|
*/ |
91
|
|
|
public function placeholder(string $value): ImgTag |
92
|
|
|
{ |
93
|
|
|
$this->placeholder = $value; |
94
|
|
|
|
95
|
|
|
return $this; |
96
|
|
|
} |
97
|
|
|
|
98
|
|
|
/** |
99
|
|
|
* Merge the passed array of tag attributes into $imgAttrs |
100
|
|
|
* |
101
|
|
|
* @param array $value |
|
|
|
|
102
|
|
|
* @return $this |
|
|
|
|
103
|
|
|
*/ |
104
|
|
|
public function imgAttrs(array $value): ImgTag |
105
|
|
|
{ |
106
|
|
|
$this->imgAttrs = array_merge($this->imgAttrs, $value); |
107
|
|
|
|
108
|
|
|
return $this; |
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
/** |
112
|
|
|
* Generate a complete <img> tag for the $optimizedImage OptimizedImage model |
113
|
|
|
* |
114
|
|
|
* @return Markup |
115
|
|
|
*/ |
116
|
|
|
public function render(): Markup |
117
|
|
|
{ |
118
|
|
|
$attrs = $this->imgAttrs; |
119
|
|
|
// Handle lazy loading |
120
|
|
|
if ($this->loadingStrategy !== 'eager') { |
121
|
|
|
$attrs = $this->swapLazyLoadAttrs($this->loadingStrategy, $this->placeholder, $attrs); |
122
|
|
|
} |
123
|
|
|
// Remove any empty attributes |
124
|
|
|
$attrs = $this->filterEmptyAttributes($attrs); |
125
|
|
|
// Render the tag |
126
|
|
|
$tag = Html::tag('img', '', $attrs); |
127
|
|
|
|
128
|
|
|
return Template::raw($tag); |
129
|
|
|
} |
130
|
|
|
} |
131
|
|
|
|