-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(plugin): add codesponsor plugin
- Loading branch information
1 parent
44dc68c
commit 46ac4c3
Showing
5 changed files
with
97 additions
and
3 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
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,86 @@ | ||
const DEFAULT_OPTIONS = { | ||
theme: 'light', | ||
image: 'show' | ||
} | ||
|
||
function tpl (id, options) { | ||
const qs = [] | ||
|
||
for (let key in options) { | ||
qs.push(`${key}=${options[key]}`) | ||
} | ||
|
||
const div = Docsify.dom.create('div') | ||
|
||
Docsify.dom.toggleClass(div, 'codesponsor') | ||
div.innerHTML = `<iframe | ||
scrolling=0 | ||
frameborder=0 | ||
width=250 | ||
height=250 | ||
id="code-sponsor-embed-iframe" | ||
src="https://app.codesponsor.io/widgets/${id}?${qs.join('&')}"> | ||
</iframe>` | ||
|
||
return div | ||
} | ||
|
||
function appIframe (id, opts) { | ||
const html = tpl(id, opts) | ||
|
||
Docsify.dom.before(Docsify.dom.find('section.content'), html) | ||
} | ||
|
||
function appendStyle () { | ||
Docsify.dom.style(` | ||
.codesponsor { | ||
position: relative; | ||
float: right; | ||
right: 10px; | ||
top: 10px; | ||
} | ||
@media screen and (min-width: 1300px) { | ||
body.sticky .codesponsor { | ||
position: fixed; | ||
} | ||
.codesponsor { | ||
position: absolute; | ||
bottom: 10px; | ||
top: auto; | ||
float: none; | ||
} | ||
} | ||
`) | ||
} | ||
|
||
const install = function (hook, vm) { | ||
let config = vm.config.codesponsor | ||
let id | ||
|
||
if (typeof config === 'string') { | ||
id = config | ||
config = {} | ||
} else { | ||
id = config.id | ||
} | ||
|
||
const opts = Docsify.util.merge(DEFAULT_OPTIONS, config) | ||
|
||
if (!id) { | ||
throw Error('codesponsor plugin need id') | ||
} | ||
|
||
if (Docsify.util.isMobile) { | ||
return | ||
} | ||
|
||
// Append style | ||
hook.ready(() => { | ||
appendStyle() | ||
appIframe(id, opts) | ||
}) | ||
} | ||
|
||
window.$docsify.plugins = [].concat(install, window.$docsify.plugins) |
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