mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-06 03:50:26 +02:00
Support plugin hooks in embed
This commit is contained in:
parent
a9f6802e7d
commit
f95628636b
8 changed files with 217 additions and 114 deletions
|
@ -148,41 +148,6 @@ function scrollToTop () {
|
|||
window.scroll(0, 0)
|
||||
}
|
||||
|
||||
// Thanks: https://github.com/uupaa/dynamic-import-polyfill
|
||||
function importModule (path: string) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const vector = '$importModule$' + Math.random().toString(32).slice(2)
|
||||
const script = document.createElement('script')
|
||||
|
||||
const destructor = () => {
|
||||
delete window[ vector ]
|
||||
script.onerror = null
|
||||
script.onload = null
|
||||
script.remove()
|
||||
URL.revokeObjectURL(script.src)
|
||||
script.src = ''
|
||||
}
|
||||
|
||||
script.defer = true
|
||||
script.type = 'module'
|
||||
|
||||
script.onerror = () => {
|
||||
reject(new Error(`Failed to import: ${path}`))
|
||||
destructor()
|
||||
}
|
||||
script.onload = () => {
|
||||
resolve(window[ vector ])
|
||||
destructor()
|
||||
}
|
||||
const absURL = (environment.apiUrl || window.location.origin) + path
|
||||
const loader = `import * as m from "${absURL}"; window.${vector} = m;` // export Module
|
||||
const blob = new Blob([ loader ], { type: 'text/javascript' })
|
||||
script.src = URL.createObjectURL(blob)
|
||||
|
||||
document.head.appendChild(script)
|
||||
})
|
||||
}
|
||||
|
||||
function isInViewport (el: HTMLElement) {
|
||||
const bounding = el.getBoundingClientRect()
|
||||
return (
|
||||
|
@ -216,7 +181,6 @@ export {
|
|||
getAbsoluteEmbedUrl,
|
||||
objectLineFeedToHtml,
|
||||
removeElementFromArray,
|
||||
importModule,
|
||||
scrollToTop,
|
||||
isInViewport,
|
||||
isXPercentInViewport
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue