cordova-plugin-splashscreen
cordova-plugin-splashscreen copied to clipboard
Electron/Browser JS crash, SplashScreenProxy
Bug Report
Command or Code
cordova plugin add cordova-plugin-splashscreen@latest
cordova platform add electron@latest
cordova run electron --nobuild
<platform name="browser">
<preference name="SplashScreen" value="/res/screens/browser/land-480x320-screen.png" />
<preference name="AutoHideSplashScreen" value="true" />
<preference name="SplashScreenDelay" value="3000" />
<preference name="ShowSplashScreen" value="true" />
<preference name="SplashScreenWidth" value="480" />
<preference name="SplashScreenHeight" value="320" />
</platform>
What does actually happen?
adding proxy for SplashScreen
SplashScreenProxy.js:80 Uncaught TypeError: Cannot read property 'appendChild' of null
at Object.show (SplashScreenProxy.js:80)
at showAndHide (SplashScreenProxy.js:143)
at SplashScreenProxy.js:158
at XMLHttpRequest.xhrStatusChangeHandler (cordova.js:902)
Environment, Platform, Device
[email protected] [email protected] [email protected] [email protected].
Checklist
- [X] I searched for existing GitHub issues
- [X] I updated all Cordova tooling to most recent version
- [X] I included all the necessary information above
Did you try <platform name="electron"> ?
Try where?
in config.xml
<platform name="electron">
<preference name="ElectronSettingsFilePath" value="res/electron/settings.json" />
</platform>
dude, just put what you have under browser platform under electron platform
@Kepro, please stop being so cryptic ... No idea what you mean. Post code or just .... you know?
this
<platform name="electron"> <preference name="SplashScreen" value="/res/screens/browser/land-480x320-screen.png" /> <preference name="AutoHideSplashScreen" value="true" /> <preference name="SplashScreenDelay" value="3000" /> <preference name="ShowSplashScreen" value="true" /> <preference name="SplashScreenWidth" value="480" /> <preference name="SplashScreenHeight" value="320" /> </platform>
Thanks I will try that
<platform name="electron">
<preference name="ElectronSettingsFilePath" value="res/electron/settings.json" />
<preference name="SplashScreen" value="res/screens/electron/land-480x320-screen.png" />
<preference name="AutoHideSplashScreen" value="true" />
<preference name="SplashScreenDelay" value="3000" />
<preference name="ShowSplashScreen" value="true" />
<preference name="SplashScreenWidth" value="480" />
<preference name="SplashScreenHeight" value="320" />
</platform>
adding proxy for SplashScreen
SplashScreenProxy.js:80 Uncaught TypeError: Cannot read property 'appendChild' of null
at Object.show (SplashScreenProxy.js:80)
at showAndHide (SplashScreenProxy.js:143)
at SplashScreenProxy.js:158
at XMLHttpRequest.xhrStatusChangeHandler (cordova.js:902)
land-480x320-screen.png:1 Failed to load resource: net::ERR_FILE_NOT_FOUND
I guess image is not copied over? Note that res/screens/electron/land-480x320-screen.png exists.
run cordova with -d to see log
copy platforms\electron\platform_www\plugins\cordova-plugin-splashscreen\src\browser\SplashScreenProxy.js platforms\electron\www\plugins\cordova-plugin-splashscreen\src\browser\SplashScreenProxy.js (updated file)
copy platforms\electron\platform_www\plugins\cordova-plugin-splashscreen\www\splashscreen.js platforms\electron\www\plugins\cordova-plugin-splashscreen\www\splashscreen.js (updated file)
This app does not have splash screens defined.
The file is never moved.
I know that this is really old and I apologize for grave digging, but I just wanted to provide some information in regards to this and how I got cordova-plugin-splashscreen to work with Electron. This issue is what helped me troubleshoot the issue... especially with the recommendation of the -d command line option.
- Issue 1: Regardless of what's mentioned in the docs, not only do you need to define the
SplashScreenpreference, but you MUST also define the<splash>tag as a relative path to your project directory (i.e. "res/splash.png"). - Issue 2: The value defined for
SplashScreendoes not get honored or maintained. The image defined by the<splash>tag will get copied to a newplatform/electron/www/.cdv/directory, and the image will get renamed tosplashScreen.png. Theplatform/electron/config.xmlfile will then get updated such that both the<splash>tag and theSplashScreenpreference will get (force) set to.cdv/splashScreen.png, not matter what. - Issue 3: Basically, the JavaScript errors that @globules-io mentioned above were being caused by a timing issue. More specifically, the
initAndShow()function inplatform/electron/www/plugins/cordova-plugin-splashscreen/src/browser/SplashScreenProxy.jswould get called/executed before the<body>tag was fully initialized in the DOM. Thedocumentnode would exist, but notdocument.body, as as result producing the appendChild error.
Basically, the way I resolved this issue was by:
- Adding
<splash>toconfig.xmlwithin<platform name="electron"> - Adding the
SplashScreenpreference as well, but leaving the value empty. It doesn't appear to matter if it's populated or not. - Wrapping the
(function initAndShow () {block of code inplatform/electron/platform_www/plugins/cordova-plugin-splashscreen/src/browser/SplashScreenProxy.jsin asetTimeout(). There's no need to specify a delay. Just usingsetTimeout()will cause a long enough delay to wait fordocument.bodyto initialize.
For that last bullet, please take note that I specifically mentioned the platform_www directory and not www. Whenever you run/build the app, the plugin(s) will get copied from platform_www/plugins/ to www/pugins/.
I hope anyone who comes across this will find this useful. I wasted 2-3 days just trying to figure all this out.
As far as whose responsible for fixing what, for sure the maintainers of cordova-plugin-splashscreen must fix SplashScreenProxy.js. However, in regards to <splash> and the SplashScreen preference, I have no clue who needs to address that.
This is bug for Browser platform because the cordova-plugin-splashscreen is not properly configured
Go to your config.xml file and add this
<platform name="browser">
<preference name="SplashScreen" value="/img/logo.png" /> <!-- defaults to "/img/logo.png" -->
<preference name="AutoHideSplashScreen" value="true" /> <!-- defaults to "true" -->
<preference name="SplashScreenDelay" value="3000" /> <!-- defaults to "3000" -->
<preference name="SplashScreenBackgroundColor" value="green" /> <!-- defaults to "#464646" -->
<preference name="ShowSplashScreen" value="false" /> <!-- defaults to "true" -->
<preference name="SplashScreenWidth" value="600" /> <!-- defaults to "170" -->
<preference name="SplashScreenHeight" value="300" /> <!-- defaults to "200" -->
</platform>
HEY BRO U SAVED ME LOVE U LOTS OF LOVE
@gnardydev You are welcome 🙏 thanks to add me an emoji 👍