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 LinkPreloadTag extends BaseTag |
23
|
|
|
{ |
24
|
|
|
/** |
|
|
|
|
25
|
|
|
* @var array array of tag attributes for the <link rel="preload"> tag |
26
|
|
|
*/ |
27
|
|
|
public array $linkAttrs = []; |
28
|
|
|
|
29
|
|
|
/** |
|
|
|
|
30
|
|
|
* @inheritDoc |
31
|
|
|
*/ |
|
|
|
|
32
|
|
|
public function init(): void |
33
|
|
|
{ |
34
|
|
|
parent::init(); |
35
|
|
|
// Any web browser that supports link rel="preload" as="image" also supports webp, so prefer that |
36
|
|
|
$srcset = $this->optimizedImage->optimizedImageUrls; |
37
|
|
|
if (!empty($this->optimizedImage->optimizedWebPImageUrls)) { |
38
|
|
|
$srcset = $this->optimizedImage->optimizedWebPImageUrls; |
39
|
|
|
} |
40
|
|
|
// Populate the $imageAttrs |
41
|
|
|
$this->linkAttrs = [ |
42
|
|
|
'rel' => 'preload', |
43
|
|
|
'as' => 'image', |
44
|
|
|
'href' => reset($srcset), |
|
|
|
|
45
|
|
|
'imagesrcset' => $this->optimizedImage->getSrcsetFromArray($srcset), |
|
|
|
|
46
|
|
|
'imagesizes' => '100vw', |
47
|
|
|
]; |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* Merge the passed array of tag attributes into $linkAttrs |
52
|
|
|
* |
53
|
|
|
* @param array $value |
|
|
|
|
54
|
|
|
* @return $this |
|
|
|
|
55
|
|
|
*/ |
56
|
|
|
public function linkAttrs(array $value): LinkPreloadTag |
57
|
|
|
{ |
58
|
|
|
$this->linkAttrs = array_merge($this->linkAttrs, $value); |
59
|
|
|
|
60
|
|
|
return $this; |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* Generate a complete <link rel="preload"> tag for the $optimizedImage OptimizedImage model |
65
|
|
|
* ref: https://web.dev/preload-responsive-images/#imagesrcset-and-imagesizes |
66
|
|
|
* |
67
|
|
|
* @return Markup |
68
|
|
|
*/ |
69
|
|
|
public function render(): Markup |
70
|
|
|
{ |
71
|
|
|
$attrs = $this->linkAttrs; |
72
|
|
|
// Remove any empty attributes |
73
|
|
|
$attrs = $this->filterEmptyAttributes($attrs); |
74
|
|
|
// Render the tag |
75
|
|
|
$tag = Html::tag('link', '', $attrs); |
76
|
|
|
|
77
|
|
|
return Template::raw($tag); |
78
|
|
|
} |
79
|
|
|
} |
80
|
|
|
|