-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New widget #150
Merged
Merged
New widget #150
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,48 @@ | ||
# widget.js Documentation | ||
This shows what the Paper Badger Widget can do and how to use it. | ||
|
||
## Demos | ||
The demos can be found in [public/widgets/demos](../public/widgets/demos). | ||
|
||
## 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/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' | ||
} | ||
``` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you link to the demos you made here somewhere? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just pushed a new commit and added a seperate heading for demos. Is it ok like that? |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like how you handled this! Thanks.
We may want to start a wiki and move those docs there, but in the meantime this is great.