-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
registerProtocolHandler
support triggering events in service worker instead of navigating to page
#8596
Comments
Why do you think that's an accurate rephrasing of the spec? The spec allows the browser to choose; there's no requirement that "the current page" (whatever that is) is chosen. |
My intent is not to explain the spec, but to describe current browser behavior. At present, Chrome navigate the page to registered URL. If |
Ah, OK. If you want to change browsers, I suggest you open bugs on their bug trackers. This is the bug tracker for the specification. |
I want to proposal a new behavior, because the spec doesn't describe the detailed behavior what happen when click the link. It is not a browser bug. |
Right. The spec does not mandate browser UI behavior. Each browser gets to choose that. If you want them to change it, you need to engage with them. |
To support different behaviors, the api may need to add a new parameter. For example, |
I don't think so; I think browser vendors are able to implement the behavior you want with the current spec. But sure, we can reopen the issue to see if that's what browser vendors want. Again, you need to engage them to find out. |
Ok, I will also file bugs in browser vendors' bug trackers. |
I added issues in Chrome and Firefox's bug trackers respectively: chromium-1399753 and mozilla-1804856. Because Safari doesn't support Sync some information. For now, this is not a detailed design, but to ask whether browser vendors would like to support this function. Current Native Apps BehaviorWhen click a registered protocol link, the native app is woken up and the link is passed to the app for processing. Note: the current page are not closed or navigate to other page, you can continue to click other links in the page that active the native app again. Current Web BehaviorAt present, when click a registered protocol link, Chrome navigate current page to the registered URL. In other words, current page is unload, you can't continue to click other links in this page. In some scenarios, this behavior is not expected, instead users expect the behavior like native apps. Of course, if the link has At present, the spec of registerProtocolHandler doesn't describe the detailed behavior what happen when click the link. The behavior depends on how the browser implements it. ProposalI hope registerProtocolHandler() can support native apps' behavior. When users click the link, fire an event with the link information in service worker, then the website(web app) can handle it in service worker, and the current page stay there. This approach is more flexible for developers, and the current page does not navigate to other page. For example, in service worker, developers can open a new tab or popup window, or active(focus) an already opened page or popup window to handle it. Below is a sample code for demonstration purpose:
|
Below is Andrew(Firefox)'s reply:
|
Here is my extended explanation. 1. PWA "protocol_handlers"https://developer.chrome.com/articles/url-protocol-handler/ 2. Firefox extension's "protocol_handlers"https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/protocol_handlers So both 1) and 2) are declarative ways, and are not general(universal) solution. My proposalMy proposal expands
|
In WICG/web-app-launch#86 , the owner would like to support Let me further explain why the current click behavior (navigation behavior) on custom protocol link is not ideal. Traditional web page links are used to display a content for human, but some other URI protocols are not designed for human to see. For example, magnet link is designed for adding a download task in BitTorrent clients, it is not designed for human to see something. These links are not suitable for navigating to a register page. Instead, handling these links in the background is the best way. |
(I post this on both service worker spec #1665 and whatwg spec here)
I want to compare the behavior of web apps(and browser extensions) and native apps for a registered protocol.
Native apps behavior
When click a registered protocol link, the native app is woken up and the link is passed to the app for processing. Note: the current page doesn't be closed or navigate to other page, you can continue to click other links in the page and active the native app again.
Web behavior
Current
registerProtocolHandler()
spec says the behavior is "Navigate an appropriate navigable to resultURL". In other words, the current page is unload and navigate to another page. In some scenarios, this behavior is not expected, instead users expect the behavior like native apps.Proposal
I hope
registerProtocolHandler()
support another behavior like native apps behavior. When users click a registered protocol link, fire an event with the link information in service worker, then the website(web app) handle it in service worker. This approach is more flexible for developers, and the current page does not navigate to other page. For example, in service worker, developers can open a new tab or popup window, or active(focus) an already opened page or popup window to handle it.The text was updated successfully, but these errors were encountered: