2021-02-17 17:48:52 +00:00
|
|
|
function fancyboxInit(data, explorer)
|
|
|
|
{
|
2022-08-03 10:30:56 +00:00
|
|
|
$('[data-fancybox="exposition"]').fancybox(
|
2021-02-17 17:48:52 +00:00
|
|
|
{
|
|
|
|
selector: '.gallery a',
|
|
|
|
infobar: false,
|
|
|
|
toolbar: true,
|
|
|
|
smallBtn: false,
|
|
|
|
buttons: ["arrowLeft", "arrowRight", "close"],
|
|
|
|
arrows: false,
|
|
|
|
transitionEffect: "fade",
|
|
|
|
baseClass: 'fancybox-custom-layout',
|
|
|
|
mobile: {
|
|
|
|
preventCaptionOverlap: true,
|
|
|
|
},
|
|
|
|
|
2022-08-03 10:30:56 +00:00
|
|
|
caption: function(instance, item) { return caption(item, data); },
|
|
|
|
beforeShow : function(instance, current) { return beforeShow(instance, current); },
|
|
|
|
afterClose : function(instance) { return afterClose(instance); }
|
|
|
|
});
|
2021-02-17 17:48:52 +00:00
|
|
|
|
2022-08-03 10:30:56 +00:00
|
|
|
$('[data-fancybox="exposition-list"]').fancybox(
|
|
|
|
{
|
|
|
|
selector: 'a.list-preview',
|
|
|
|
infobar: false,
|
|
|
|
toolbar: true,
|
|
|
|
smallBtn: false,
|
|
|
|
buttons: ["arrowLeft", "arrowRight", "close"],
|
|
|
|
arrows: false,
|
|
|
|
transitionEffect: "fade",
|
|
|
|
baseClass: 'fancybox-custom-layout',
|
|
|
|
mobile: {
|
|
|
|
preventCaptionOverlap: true,
|
2021-02-17 17:48:52 +00:00
|
|
|
},
|
|
|
|
|
2022-08-03 10:30:56 +00:00
|
|
|
caption: function(instance, item) { return caption(item, data); },
|
|
|
|
beforeShow : function(instance, current) { return beforeShow(instance, current); },
|
|
|
|
afterClose : function(instance) { return afterClose(instance); }
|
|
|
|
});
|
|
|
|
|
|
|
|
function caption(item, data)
|
|
|
|
{
|
|
|
|
var idx = 0; // search the index of the painting of filtered data
|
|
|
|
for (i = 0; i < data.length; i++)
|
|
|
|
{
|
|
|
|
if (data[i].number == item.opts.fancyboxIndex)
|
|
|
|
idx = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
function generateCartel()
|
2021-02-17 17:48:52 +00:00
|
|
|
{
|
2022-08-03 10:30:56 +00:00
|
|
|
cartel = '<div id="info"><span class="info">';
|
|
|
|
cartel += '<a href="painting.html?number=' + data[idx].number + '">ℹ︎</span></a></span>';
|
|
|
|
cartel += '<span class="title">' + data[idx].title + '</span><span class="year">';
|
|
|
|
if (data[idx].month != '—')
|
|
|
|
cartel += data[idx].month + ' ';
|
|
|
|
if (data[idx].year != '—')
|
|
|
|
cartel += data[idx].year;
|
|
|
|
cartel += ' </span><span class="format">' + data[idx].paint + ' sur ' + data[idx].support.toLowerCase();
|
|
|
|
if (data[idx].dimension != '—')
|
|
|
|
cartel += ' (' + data[idx].dimension + ')';
|
|
|
|
cartel += '</span>';
|
|
|
|
if (data[idx].comment != '—')
|
|
|
|
cartel += '<span class="comment">' + data[idx].comment + '</span>';
|
|
|
|
cartel += '</div>';
|
2021-02-17 17:48:52 +00:00
|
|
|
|
2022-08-03 10:30:56 +00:00
|
|
|
return cartel;
|
|
|
|
}
|
|
|
|
|
|
|
|
return generateCartel();
|
|
|
|
}
|
2021-02-17 17:48:52 +00:00
|
|
|
|
2022-08-03 10:30:56 +00:00
|
|
|
function beforeShow(instance, current)
|
|
|
|
{
|
|
|
|
if (current.opts.fancyboxIndex > previousArray[previousArray.length - 1])
|
|
|
|
$('#pagination').pagination('next');
|
|
|
|
|
|
|
|
if (current.opts.fancyboxIndex < previousArray[0])
|
|
|
|
$('#pagination').pagination('previous');
|
|
|
|
}
|
|
|
|
|
|
|
|
function afterClose(instance)
|
|
|
|
{
|
|
|
|
// after closing, changing the URL again. I guess there's no better way except by changing fancybox code...
|
|
|
|
// (apparently fancybox changes back to the original url it had when starting)
|
|
|
|
if (explorer)
|
2021-02-17 17:48:52 +00:00
|
|
|
{
|
2022-08-03 10:30:56 +00:00
|
|
|
urlParams = new URLSearchParams(window.location.search)
|
|
|
|
trimSearch = window.location.search.substr(0, window.location.search.lastIndexOf('&'));
|
|
|
|
window.history.replaceState('', '', window.location.pathname + trimSearch + '&page=' + currentPage + window.location.hash);
|
2021-02-17 17:48:52 +00:00
|
|
|
}
|
2022-08-03 10:30:56 +00:00
|
|
|
else
|
|
|
|
window.history.replaceState('', '', window.location.pathname + '?page=' + currentPage + window.location.hash);
|
|
|
|
}
|
|
|
|
|
2021-02-17 17:48:52 +00:00
|
|
|
}
|