1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2024-12-29 12:21:57 +00:00
immich-public-proxy/app/views/gallery.ejs

57 lines
1.9 KiB
Text
Raw Normal View History

2024-10-28 19:47:14 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2024-10-29 09:49:54 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
2024-11-01 13:19:15 +00:00
<title><%- title || 'Gallery' %></title>
<link rel="icon" href="/share/static/favicon.ico" type="image/x-icon">
<link type="text/css" rel="stylesheet" href="/share/static/style.css"/>
<link type="text/css" rel="stylesheet" href="/share/static/lg/lightgallery-bundle.min.css"/>
2024-10-28 19:47:14 +00:00
</head>
<body>
2024-11-15 14:48:12 +00:00
<div id="header">
<% if (showTitle) { %>
<h1><%- title || 'Gallery' %></h1>
<% } %>
<% if (showDownload) { %>
<div id="download-all">
<a href="<%- path %>/download" title="Download all"><img src="/images/download-all.svg" height="24" width="24" alt="Download all"></a>
</div>
<% } %>
</div>
2024-10-28 19:47:14 +00:00
<div id="lightgallery">
2024-10-29 09:29:14 +00:00
<% items.forEach(item => {
if (item.video) { %>
<a data-video='<%- item.video %>'>
<img alt="" src="<%- item.thumbnailUrl %>"/>
<div class="play-icon"></div>
2024-10-28 19:47:14 +00:00
</a>
2024-10-29 09:29:14 +00:00
<% } else { %>
2024-11-15 14:48:12 +00:00
<a href="<%- item.previewUrl %>"
<% if (item.downloadUrl) { %>
data-download-url="<%- item.downloadUrl %>"
<% } %>
>
2024-10-29 09:29:14 +00:00
<img alt="" src="<%- item.thumbnailUrl %>"/>
</a>
<% }
}) %>
2024-10-28 19:47:14 +00:00
</div>
<script src="/share/static/web.js"></script>
<script src="/share/static/lg/lightgallery.min.js"></script>
<script src="/share/static/lg/lg-fullscreen.min.js"></script>
<script src="/share/static/lg/lg-thumbnail.min.js"></script>
<script src="/share/static/lg/lg-video.min.js"></script>
<script src="/share/static/lg/lg-zoom.min.js"></script>
2024-10-28 19:47:14 +00:00
<script type="text/javascript">
2024-11-01 14:36:53 +00:00
initLightGallery(<%- JSON.stringify(lgConfig) %>) // initLightGallery imported from web.js
2024-10-29 09:29:14 +00:00
<% if (openItem) { %>
const openItem = <%- openItem %>
const thumbs = document.querySelectorAll('#lightgallery a')
if (thumbs.length >= openItem) {
thumbs[openItem - 1].click()
}
<% } %>
2024-10-28 19:47:14 +00:00
</script>
</body>
</html>