This patch updates the OPAC and staff interface to use Bootstrap 5. Bootstrap CSS assets are now pulled from node_modules and compiled into staff-global.css and opac.css at build time. This update lays the foundations of some other chnages, especially the addition of a dark mode in the future. Hundreds of templates have been updated, mostly with updates to the grid markup. Most of the responsive behavior is still the same with the exception of improved flexibility of headers and footers in both the OPAC and staff interface. The other most common change is to add a new "namespace" to data attributes used by Bootstrap, e.g. "data-bs-target" or "data-bs-toggle". Modal markup has also been updated everywhere. Other common changes: dropdown button markup, alert markup (we now use Bootstrap's "alert alert-warning" and "alert alert-info" instead of our old "dialog alert" and "dialog info"). Bootstrap 5 now uses CSS variables which we can override in our own '_variables.scss' (in both the OPAC and staff) to accomplish a lot of the style overrides which we previously put in staff-global.scss. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
(function () {
|
|
// Enable the modal to be opened from anywhere
|
|
// If we're working with an existing batch, set the ID so the
|
|
// modal can access it
|
|
window.openBatchModal = function (id, backend) {
|
|
var idEl = document.getElementById('ill-batch-details');
|
|
idEl.dataset.backend = backend;
|
|
if (id) {
|
|
idEl.dataset.batchId = id;
|
|
}
|
|
$('#ill-batch-modal').modal("show");
|
|
};
|
|
|
|
// Make a batch API call, returning the resulting promise
|
|
window.doBatchApiRequest = function (url, options) {
|
|
var batchListApi = '/api/v1/ill/batches';
|
|
var fullUrl = batchListApi + (url ? url : '');
|
|
return doApiRequest(fullUrl, options);
|
|
};
|
|
|
|
// Make a "create local ILL submission" call
|
|
window.doCreateSubmission = function (body, options) {
|
|
options = Object.assign(
|
|
options || {},
|
|
{
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
method: 'POST',
|
|
body: JSON.stringify(body)
|
|
}
|
|
);
|
|
return doApiRequest(
|
|
'/api/v1/ill/requests',
|
|
options
|
|
)
|
|
}
|
|
|
|
// Make an API call, returning the resulting promise
|
|
window.doApiRequest = function (url, options) {
|
|
return fetch(url, options);
|
|
};
|
|
|
|
// Display an API error
|
|
window.handleApiError = function (error) {
|
|
alert(error);
|
|
};
|
|
|
|
})();
|