forked from mozillascience/PaperBadger
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New widget with different display options (see docs/widger.js) and demos (in public/widgets/demos). Also provides solutions for mozillascience#142 (loading spinner) and mozillascience#135 (DOIs with extra slashes)
- Loading branch information
Showing
9 changed files
with
530 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
.env | ||
env.docker | ||
node_modules/ | ||
npm-debug.log | ||
npm-debug.log.* | ||
public/js/ | ||
|
||
.DS_Store | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# paper-badger-widget.js Documentation | ||
1. To use the widget on your own site, include a `<div>` with your custom class in your view file, for example: | ||
`<div class="my-container"></div>` | ||
|
||
2. Above the closing `<body>` tag, add | ||
|
||
```html | ||
<script type="text/javascript"> | ||
var script = document.createElement("script"); | ||
script.type = "text/javascript"; | ||
script.src = "https://badges.mozillascience.org/widgets/paper-badger-widget.js"; | ||
document.write(decodeURIComponent("%3Cscript src='https://badges.mozillascience.org/widgets/paper-badger-widget.js' type='text/javascript'%3E%3C/script%3E")); | ||
</script> | ||
``` | ||
|
||
3. In your scripts, include your custom values: | ||
* the class name where your widget will appear for the `container-class` key and | ||
* the doi for the paper you are interested in as the `article-doi` key | ||
|
||
```html | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
<head> | ||
<title>Paper view snippet example | Paper Badger</title> | ||
</head> | ||
<body> | ||
|
||
<div class="my-container"></div> | ||
|
||
<script type="text/javascript"> | ||
var script = document.createElement("script"); | ||
script.type = "text/javascript"; | ||
script.src = "https://badges.mozillascience.org/widgets/paper-badger-widget.js"; | ||
document.write(decodeURIComponent("%3Cscript src='https://badges.mozillascience.org/widgets/paper-badger-widget.js' type='text/javascript'%3E%3C/script%3E")); | ||
</script> | ||
<script> | ||
var conf={"article-doi": "10.1186/2047-217X-3-18", "container-class": "my-container"}; | ||
showBadges(conf); | ||
</script> | ||
</body> | ||
</html> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# widget.js Documentation | ||
This shows what the Paper Badger Widget can do and how to use it. | ||
|
||
## Usage | ||
1. To use the widget on your own site, include a `<div>` with your custom class in your view file, for example: | ||
`<div class="my-container"></div>` | ||
|
||
2. Above the closing `<body>` tag, add | ||
```html | ||
<script> | ||
(function () { | ||
var d=document,g=d.createElement("script");g.type="text/javascript";g.async=!0;g.defer=!0; | ||
g.src="https://badges.mozillascience.org/widgets/paper-badger-widget.js";g.onload=load;d.body.appendChild(g); | ||
function load() { | ||
new PaperBadgerWidget({ | ||
DOI: "10.1186/2047-217X-3-18", | ||
containerClass: "my-container" | ||
}); | ||
} | ||
})(); | ||
</script> | ||
``` | ||
|
||
3. In the load method, include your custom values: | ||
* the element class where your widget will appear for the `containerClass` key and | ||
* either the doi for the paper you are interested in as the `DOI` key or the ORCID for the author you are interesed in as the `ORCID` key | ||
|
||
## Required configuration options | ||
* the `containerClass` key: contains the class of the element which will contain the Paper Badger widget | ||
* either the `DOI` or the `ORCID` key: defines which information the widget will display | ||
|
||
## Optional configuration options | ||
* the `ORCIDWidgetType` key (only in combination with the `ORCID` key): set the key to the value `default` to show names below the badges, set it to `DOI` to show DOIs | ||
* the `loaderText` key: changes the default text shown while the Paper Badger widget is loading | ||
* the `removeClass` key: the widget will remove this class from all elements once it has loaded, if this is a non-empty string | ||
* the `clickCallback` key: a method that gets called when a link under a badge gets clicked. The method is called with an object containing either the DOI or ORCID of the link and the badge taxonomy: | ||
|
||
``` | ||
{ | ||
doi: '10.1186/2047-217X-3-18', // either DOI | ||
orcid: '0000-0001-5207-5061', // or ORCID | ||
taxonomy: 'data_curation' | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
<head> | ||
<title>Paper view snippet example | Paper Badger</title> | ||
<style>.my-remove-class { display: none; } .my-element { overflow: hidden; }</style> | ||
</head> | ||
|
||
<body> | ||
<div class="my-element"></div> | ||
<div class="my-remove-class">This text is only shown when the API returns badges.</div> | ||
|
||
<script> | ||
(function () { | ||
var d=document,g=d.createElement("script");g.type="text/javascript";g.async=!0;g.defer=!0; | ||
g.src="../widget.js";g.onload=load;d.body.appendChild(g); | ||
|
||
function load() { | ||
new PaperBadgerWidget({ | ||
DOI: "10.1186/2047-217X-3-18", | ||
containerClass: "my-element", | ||
removeClass: "my-remove-class" | ||
}); | ||
} | ||
})(); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
<head> | ||
<title>Paper view snippet example | Paper Badger</title> | ||
</head> | ||
<body> | ||
|
||
<div class="my-element"></div> | ||
|
||
<script> | ||
(function () { | ||
var d=document,g=d.createElement("script");g.type="text/javascript";g.async=!0;g.defer=!0; | ||
g.src="../widget.js";g.onload=load;d.body.appendChild(g); | ||
|
||
function load() { | ||
new PaperBadgerWidget({ | ||
ORCID: "0000-0001-5207-5061", | ||
ORCIDWidgetType: "DOI", | ||
containerClass: "my-element" | ||
}); | ||
} | ||
})(); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
<head> | ||
<title>Paper view snippet example | Paper Badger</title> | ||
</head> | ||
<body> | ||
|
||
<div class="my-element"></div> | ||
|
||
<script> | ||
(function () { | ||
var d=document,g=d.createElement("script");g.type="text/javascript";g.async=!0;g.defer=!0; | ||
g.src="../widget.js";g.onload=load;d.body.appendChild(g); | ||
|
||
function load() { | ||
new PaperBadgerWidget({ | ||
ORCID: "0000-0001-5207-5061", | ||
containerClass: "my-element" | ||
}); | ||
} | ||
})(); | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.