1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { generateFilePath } from '@nextcloud/router'
const loadedScripts = {}
const loadedStylesheets = {}
/**
* @namespace OCP
* @class Loader
*/
export default {
/**
* Load a script asynchronously
*
* @param {string} app the app name
* @param {string} file the script file name
* @return {Promise}
*/
loadScript(app, file) {
const key = app + file
if (Object.prototype.hasOwnProperty.call(loadedScripts, key)) {
return Promise.resolve()
}
loadedScripts[key] = true
return new Promise(function(resolve, reject) {
const scriptPath = generateFilePath(app, 'js', file)
const script = document.createElement('script')
script.src = scriptPath
script.setAttribute('nonce', btoa(OC.requestToken))
script.onload = () => resolve()
script.onerror = () => reject(new Error(`Failed to load script from ${scriptPath}`))
document.head.appendChild(script)
})
},
/**
* Load a stylesheet file asynchronously
*
* @param {string} app the app name
* @param {string} file the script file name
* @return {Promise}
*/
loadStylesheet(app, file) {
const key = app + file
if (Object.prototype.hasOwnProperty.call(loadedStylesheets, key)) {
return Promise.resolve()
}
loadedStylesheets[key] = true
return new Promise(function(resolve, reject) {
const stylePath = generateFilePath(app, 'css', file)
const link = document.createElement('link')
link.href = stylePath
link.type = 'text/css'
link.rel = 'stylesheet'
link.onload = () => resolve()
link.onerror = () => reject(new Error(`Failed to load stylesheet from ${stylePath}`))
document.head.appendChild(link)
})
},
}
|