ruffle/web/packages/core/src/public-path.ts

53 lines
1.8 KiB
TypeScript
Raw Normal View History

2020-11-17 21:01:56 +00:00
import { Config } from "./config";
2019-10-15 02:52:53 +00:00
/**
* Attempt to discover the public path of the current Ruffle source. This can
* be used to configure Webpack.
*
2019-10-15 02:52:53 +00:00
* We have several points of configuration for how the Ruffle public path can
* be determined:
*
2019-10-15 02:52:53 +00:00
* 1. The public path can be specified on a per-source basis using the
* RufflePlayer config, for example:
* `window.RufflePlayer.config.public_paths.local = "/dist/";`
2019-10-15 02:52:53 +00:00
* 2. A global public path can be specified for all sources, also in config.
* `window.RufflePlayer.config.public_path = "/dist/";`
2019-10-15 02:52:53 +00:00
* 3. If there is absolutely no configuration that yields a public path then we
* return the parent path of where this script is hosted, which should be
* the correct default in most cases.
*
* @param config The `window.RufflePlayer.config` object.
* @param source_name The name of the source.
* @returns The public path for the given source.
2019-10-15 02:52:53 +00:00
*/
export function public_path(config: Config, source_name: string): string {
2020-11-17 22:16:35 +00:00
let path = "";
if (
config !== undefined &&
config.public_paths !== undefined &&
config.public_paths[source_name] !== undefined
) {
2020-11-17 22:16:35 +00:00
path = config.public_paths[source_name];
} else if (config !== undefined && config.public_path !== undefined) {
2020-11-17 22:16:35 +00:00
path = config.public_path;
} else if (
document.currentScript !== undefined &&
document.currentScript !== null &&
"src" in document.currentScript
) {
// Default to the directory where this script resides.
try {
2020-11-17 22:16:35 +00:00
path = new URL(".", document.currentScript.src).href;
} catch (e) {
console.warn("Unable to get currentScript URL");
}
2019-10-15 02:52:53 +00:00
}
// Webpack expects the paths to end with a /.
2020-11-17 22:16:35 +00:00
if (path !== "" && !path.endsWith("/")) {
path += "/";
}
2020-11-17 22:16:35 +00:00
return path;
}