-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// eslint-disable-next-line no-unused-vars | ||
/* global __webpack_public_path__:writable */ | ||
|
||
import { Setup } from "ruffle-core"; | ||
|
||
let currentScriptURL = null; | ||
|
||
try { | ||
if ( | ||
document.currentScript !== undefined && | ||
document.currentScript !== null && | ||
"src" in document.currentScript && | ||
document.currentScript.src !== "" | ||
) { | ||
let src = document.currentScript.src; | ||
|
||
// CDNs allow omitting the filename. If it's omitted, append a slash to | ||
// prevent the last component from being dropped. | ||
if (!src.endsWith(".js") && !src.endsWith("/")) { | ||
src += "/"; | ||
} | ||
|
||
currentScriptURL = new URL(".", src); | ||
} | ||
// eslint-disable-next-line no-unused-vars | ||
} catch (_e) { | ||
console.warn("Unable to get currentScript URL"); | ||
} | ||
|
||
function publicPath(config) { | ||
// Default to the directory where this script resides. | ||
let path = currentScriptURL?.href ?? ""; | ||
if ( | ||
"publicPath" in config && | ||
config.publicPath !== null && | ||
config.publicPath !== undefined | ||
) { | ||
path = config.publicPath; | ||
} | ||
|
||
// Webpack expects the paths to end with a slash. | ||
if (path !== "" && !path.endsWith("/")) { | ||
path += "/"; | ||
} | ||
|
||
return path; | ||
} | ||
|
||
Setup.installRuffle("local", { | ||
onFirstLoad: () => { | ||
__webpack_public_path__ = publicPath(window.RufflePlayer?.config); | ||
}, | ||
}); |