mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 03:52:41 +08:00
39 lines
961 B
JavaScript
39 lines
961 B
JavaScript
/*
|
|
_ __ _ __
|
|
| | / /___ _(_) /____
|
|
| | /| / / __ `/ / / ___/
|
|
| |/ |/ / /_/ / / (__ )
|
|
|__/|__/\__,_/_/_/____/
|
|
The electron alternative for Go
|
|
(c) Lea Anthony 2019-present
|
|
*/
|
|
/* jshint esversion: 6 */
|
|
|
|
/**
|
|
* WailsInvoke sends the given message to the backend
|
|
*
|
|
* @param {string} message
|
|
*/
|
|
|
|
(function () {
|
|
// Credit: https://stackoverflow.com/a/2631521
|
|
let _deeptest = function (s) {
|
|
var obj = window[s.shift()];
|
|
while (obj && s.length) obj = obj[s.shift()];
|
|
return obj;
|
|
};
|
|
let windows = _deeptest(["chrome", "webview", "postMessage"]);
|
|
let mac_linux = _deeptest(["webkit", "messageHandlers", "external", "postMessage"]);
|
|
|
|
if (!windows && !mac_linux) {
|
|
console.error("Unsupported Platform");
|
|
return;
|
|
}
|
|
|
|
if (windows) {
|
|
window.WailsInvoke = (message) => window.chrome.webview.postMessage(message);
|
|
}
|
|
if (mac_linux) {
|
|
window.WailsInvoke = (message) => window.webkit.messageHandlers.external.postMessage(message);
|
|
}
|
|
})(); |