Skip to content
Snippets Groups Projects
Commit 13909fda authored by Demian Katz's avatar Demian Katz Committed by GitHub
Browse files

Add icons to BrowZine DOI links. (#1261)

parent 872672a8
No related merge requests found
...@@ -63,7 +63,8 @@ class BrowZine implements DoiLinkerInterface, TranslatorAwareInterface ...@@ -63,7 +63,8 @@ class BrowZine implements DoiLinkerInterface, TranslatorAwareInterface
/** /**
* Given an array of DOIs, perform a lookup and return an associative array * Given an array of DOIs, perform a lookup and return an associative array
* of arrays, keyed by DOI. Each array contains one or more associative arrays * of arrays, keyed by DOI. Each array contains one or more associative arrays
* with 'link' and 'label' keys. * with required 'link' (URL to related resource) and 'label' (display text)
* keys and an optional 'icon' (URL to icon graphic) key.
* *
* @param array $doiArray DOIs to look up * @param array $doiArray DOIs to look up
* *
...@@ -71,6 +72,7 @@ class BrowZine implements DoiLinkerInterface, TranslatorAwareInterface ...@@ -71,6 +72,7 @@ class BrowZine implements DoiLinkerInterface, TranslatorAwareInterface
*/ */
public function getLinks(array $doiArray) public function getLinks(array $doiArray)
{ {
$baseIconUrl = 'https://assets.thirdiron.com/images/integrations/';
$response = []; $response = [];
foreach ($doiArray as $doi) { foreach ($doiArray as $doi) {
$data = $this->connector->lookupDoi($doi)['data'] ?? null; $data = $this->connector->lookupDoi($doi)['data'] ?? null;
...@@ -78,6 +80,7 @@ class BrowZine implements DoiLinkerInterface, TranslatorAwareInterface ...@@ -78,6 +80,7 @@ class BrowZine implements DoiLinkerInterface, TranslatorAwareInterface
$response[$doi][] = [ $response[$doi][] = [
'link' => $data['browzineWebLink'], 'link' => $data['browzineWebLink'],
'label' => $this->translate('View Complete Issue'), 'label' => $this->translate('View Complete Issue'),
'icon' => $baseIconUrl . 'browzine-open-book-icon.svg',
'data' => $data, 'data' => $data,
]; ];
} }
...@@ -85,6 +88,7 @@ class BrowZine implements DoiLinkerInterface, TranslatorAwareInterface ...@@ -85,6 +88,7 @@ class BrowZine implements DoiLinkerInterface, TranslatorAwareInterface
$response[$doi][] = [ $response[$doi][] = [
'link' => $data['fullTextFile'], 'link' => $data['fullTextFile'],
'label' => $this->translate('PDF Full Text'), 'label' => $this->translate('PDF Full Text'),
'icon' => $baseIconUrl . 'browzine-pdf-download-icon.svg',
'data' => $data, 'data' => $data,
]; ];
} }
......
...@@ -41,7 +41,8 @@ interface DoiLinkerInterface ...@@ -41,7 +41,8 @@ interface DoiLinkerInterface
/** /**
* Given an array of DOIs, perform a lookup and return an associative array * Given an array of DOIs, perform a lookup and return an associative array
* of arrays, keyed by DOI. Each array contains one or more associative arrays * of arrays, keyed by DOI. Each array contains one or more associative arrays
* with 'link' and 'label' keys. * with required 'link' (URL to related resource) and 'label' (display text)
* keys and an optional 'icon' (URL to icon graphic) key.
* *
* @param array $doiArray DOIs to look up * @param array $doiArray DOIs to look up
* *
......
This source diff could not be displayed because it is too large. You can view the blob instead.
@bp3-icon-path: '../../bootprint3/images/icons'; @bp3-icon-path: '../../bootprint3/images/icons';
.doi-icon { width: 16px; }
.bp-icon { .bp-icon {
background-position: center center; background-position: center center;
background-repeat: no-repeat; background-repeat: no-repeat;
......
$bp3-icon-path: '../../bootprint3/images/icons' !default; $bp3-icon-path: '../../bootprint3/images/icons' !default;
.doi-icon { width: 16px; }
.bp-icon { .bp-icon {
background-position: center center; background-position: center center;
background-repeat: no-repeat; background-repeat: no-repeat;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -29,7 +29,13 @@ VuFind.register('doi', function Doi() { ...@@ -29,7 +29,13 @@ VuFind.register('doi', function Doi() {
for (var i = 0; i < response.data[currentDoi].length; i++) { for (var i = 0; i < response.data[currentDoi].length; i++) {
var newLink = $('<a />'); var newLink = $('<a />');
newLink.attr('href', response.data[currentDoi][i].link); newLink.attr('href', response.data[currentDoi][i].link);
newLink.text(response.data[currentDoi][i].label); newLink.text(' ' + response.data[currentDoi][i].label);
if (typeof response.data[currentDoi][i].icon !== 'undefined') {
var icon = $('<img />');
icon.attr('src', response.data[currentDoi][i].icon);
icon.attr('class', 'doi-icon');
$(doiEl).append(icon);
}
$(doiEl).append(newLink); $(doiEl).append(newLink);
$(doiEl).append("<br />"); $(doiEl).append("<br />");
} }
......
/** /**
* Assign catalog formats to Font Awesome icons * Assign catalog formats to Font Awesome icons
*/ */
.doi-icon {
height: 1em;
width: 14px;
filter: brightness(50%);
}
// Alias // Alias
.fa-printer:before {content: "\f02f";} // .fa-print .fa-printer:before {content: "\f02f";} // .fa-print
// Search Icons // Search Icons
......
/** /**
* Assign catalog formats to Font Awesome icons * Assign catalog formats to Font Awesome icons
*/ */
.doi-icon {
height: 1em;
width: 14px;
filter: brightness(50%);
}
// Alias // Alias
.fa-printer:before {content: "\f02f";} // .fa-print .fa-printer:before {content: "\f02f";} // .fa-print
// Search Icons // Search Icons
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment