-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Description
Describe the problem
Currently it is not really possible to communicate directly with tauri from an external website. There is a workaround if you have a static external URL you want to load, but it does not work if you need to inject in arbitrary URLs.
In our case, we have a first window where the user can manage their connection. They can then connect to a remote server which provides the UI. That UI needs to communicate with tauri to store credentials on the user machine, access notifications, etc.
Describe the solution you'd like
Basically I would like a setting in the WindowBuilder to allow injection of the window.__TAURI__ in any website loaded in that window. I do understand that it can be security risk if people are not careful so that could be gated with a feature flag or a general configuration option that needs to be enabled (in the context for example) before the setting has any effect.
Alternatives considered
We are currently investigating our options:
- Create a local server so the remote url can talk to it and in turn execute stuff in the rust context
- Use a static wrapper page with an iframe that loads the remote URL so that the static page can relay the messages from the iframe to tauri
Neither are very elegant solutions and I would prefer to be able to communicate directly with tauri.
Additional context
No response