Skip to content

Commit 994298a

Browse files
committed
perf: load images lazily on the collection page
Fix #1508
1 parent 75c5589 commit 994298a

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

src/main/scripts/execute-command.sh

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ case ${1:-} in
7777
'An "img" element must have an "alt" attribute' \
7878
'Element "option" without attribute "label" must not be empty' \
7979
'The "width" attribute on the "td" element is obsolete' \
80+
'Attribute "loading" not allowed on element "img" at this point' \
8081
--show-warnings
8182
;;
8283
'integration-tests')

src/main/webapp/WEB-INF/views/collection/info.html

+25-6
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ <h4 class="panel-title" th:text="#{t_stamps_by_categories}">Stamps by categories
140140
<img src="http://via.placeholder.com/250"
141141
alt="Prehistoric animals, Italy, 1999, 7&nbsp;stamps (imperf.)"
142142
title="Prehistoric animals, Italy, 1999, 7&nbsp;stamps (imperf.)"
143+
loading="lazy"
143144
th:alt="${desc}"
144145
th:title="${desc}"
145146
th:src="@{${GET_IMAGE_PREVIEW_PAGE}(id=${series.previewId})}" />
@@ -163,19 +164,28 @@ <h4 class="panel-title" th:text="#{t_stamps_by_categories}">Stamps by categories
163164
</figure>
164165
<figure>
165166
<a href="../series/info.html">
166-
<img src="http://via.placeholder.com/250" alt="Prehistoric animals, Italy, 22&nbsp;stamps" title="Prehistoric animals, Italy, 22&nbsp;stamps" />
167+
<img src="http://via.placeholder.com/250"
168+
alt="Prehistoric animals, Italy, 22&nbsp;stamps"
169+
title="Prehistoric animals, Italy, 22&nbsp;stamps"
170+
loading="lazy" />
167171
</a>
168172
<figcaption><a href="../series/info.html">Prehistoric animals, Italy, 22&nbsp;stamps</a></figcaption>
169173
</figure>
170174
<figure>
171175
<a href="../series/info.html">
172-
<img src="http://via.placeholder.com/250" alt="Cartoons, Italy, 2005, 5&nbsp;stamps" title="Cartoons, Italy, 2005, 5&nbsp;stamps" />
176+
<img src="http://via.placeholder.com/250"
177+
alt="Cartoons, Italy, 2005, 5&nbsp;stamps"
178+
title="Cartoons, Italy, 2005, 5&nbsp;stamps"
179+
loading="lazy" />
173180
</a>
174181
<figcaption><a href="../series/info.html">Cartoons, Italy, 2005, 5&nbsp;stamps</a></figcaption>
175182
</figure>
176183
<figure>
177184
<a href="../series/info.html">
178-
<img src="http://via.placeholder.com/250" alt="Prehistoric animals, Italy, 22&nbsp;stamps" title="Prehistoric animals, Italy, 22&nbsp;stamps" />
185+
<img src="http://via.placeholder.com/250"
186+
alt="Prehistoric animals, Italy, 22&nbsp;stamps"
187+
title="Prehistoric animals, Italy, 22&nbsp;stamps"
188+
loading="lazy" />
179189
<span class="label image-counter">2 images</span>
180190
</a>
181191
<figcaption>
@@ -185,19 +195,28 @@ <h4 class="panel-title" th:text="#{t_stamps_by_categories}">Stamps by categories
185195
</figure>
186196
<figure>
187197
<a href="../series/info.html">
188-
<img src="http://via.placeholder.com/250" alt="Prehistoric animals, Italy, 1983, 5&nbsp;stamps" title="Prehistoric animals, Italy, 1983, 5&nbsp;stamps" />
198+
<img src="http://via.placeholder.com/250"
199+
alt="Prehistoric animals, Italy, 1983, 5&nbsp;stamps"
200+
title="Prehistoric animals, Italy, 1983, 5&nbsp;stamps"
201+
loading="lazy" />
189202
</a>
190203
<figcaption><a href="../series/info.html">Prehistoric animals, Italy, 1983, 5&nbsp;stamps</a></figcaption>
191204
</figure>
192205
<figure>
193206
<a href="../series/info.html">
194-
<img src="http://via.placeholder.com/250" alt="Famous People, Italy, 2003, 4&nbsp;stamps" title="Famous People, Italy, 2003, 4&nbsp;stamps" />
207+
<img src="http://via.placeholder.com/250"
208+
alt="Famous People, Italy, 2003, 4&nbsp;stamps"
209+
title="Famous People, Italy, 2003, 4&nbsp;stamps"
210+
loading="lazy" />
195211
</a>
196212
<figcaption><a href="../series/info.html">Famous People, Italy, 2003, 4&nbsp;stamps</a></figcaption>
197213
</figure>
198214
<figure>
199215
<a href="../series/info.html">
200-
<img src="http://via.placeholder.com/250" alt="Sport, Italy, 1996, 1&nbsp;stamp" title="Sport, Italy, 1996, 1&nbsp;stamp" />
216+
<img src="http://via.placeholder.com/250"
217+
alt="Sport, Italy, 1996, 1&nbsp;stamp"
218+
title="Sport, Italy, 1996, 1&nbsp;stamp"
219+
loading="lazy" />
201220
</a>
202221
<figcaption><a href="../series/info.html">Sport, Italy, 1996, 1&nbsp;stamp</a></figcaption>
203222
</figure>

0 commit comments

Comments
 (0)