Skip to content
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

Add explainer for launch_handler member #14

Closed
wants to merge 19 commits into from
283 changes: 283 additions & 0 deletions launch_handler-explainer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,283 @@
# Web App Launch Handling

Authors: alancutter@, mgiuca@, dominickn@
Last updated: 2021-07-09


## Overview

This document describes a new `launch_handler` manifest member that enables
web apps to customise their launch behaviour across all types of app launch
triggers.

We found that almost all "launch" use cases could be covered by a select few
fixed rules (for example, "choose an existing window in the same app, focus it,
and navigate it to the launched URL"). This `launch_handler` proposal enables
sites to specify a set of fixed rules without having to implement custom
[service worker `launch`][sw-launch-explainer] event logic, which should satisfy
most use cases, and simplify the implementation in browsers and sites.


## Use cases

- Single-window web apps: a web app that prefers to only have a single instance
of itself open at any time, with new navigations focusing the existing
instance.\
Sub-use cases include:
- Apps that generally only make sense to have one instance running
(e.g., a music player, a game).
- Apps that include multi-document management within a single instance
(e.g., an HTML-implemented tab strip, floating sub-windows like Gmail).


## Non-goals

- Forcing a web app to only ever appear in a single client (e.g. blocking being
opened in a browser tab while already opened in an app window).
- Configuring whether link navigations into the scope of a web app launch the
web app (this is out of scope and may be handled by a future version of the
[Declarative Link Capturing][dlc-explainer] spec).
- Multi-document-instance web apps: a web app that opens documents in their own
instances but wishes to refocus an already open document instead of opening
duplicate instances for it. This would instead by handled by the [service
worker `launch` event][sw-launch-explainer].



## Background

- There are several ways for a web app window to be opened:
- [File handling](https://github.com/WICG/file-handling/blob/main/explainer.md)
- [In scope link capturing](https://github.com/WICG/sw-launch/blob/master/declarative_link_capturing.md)
- [Note taking](https://wicg.github.io/manifest-incubations/index.html#note_taking-member)
- Platform specific app launch surface
- [Protocol handling](https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/URLProtocolHandler/explainer.md)
- [Share target](https://w3c.github.io/web-share-target/)
- [Shortcuts](https://www.w3.org/TR/appmanifest/#dfn-shortcuts)

Web apps launched via these triggers will open in a new or existing app window
depending on the user agent platform. There is currently no mechanism for the
web app to configure this behaviour.

- This is a refactor of the [Declarative Link Capturing][dlc-explainer]
explainer with a reduced behaviour scope. This does not prescribe link
capturing as a means of launching a web app, instead it describes how the
launch of a web app (via link capturing or any other means) may be configured
by the manifest and service worker.


## Proposal


### `LaunchQueue` and `LaunchParams` interfaces

Add two new interfaces; `LaunchParams` and `LaunchQueue`. Add a global instance
of `LaunchQueue` to the `window` object named `launchQueue`.

Whenever a web app is launched (via any launch trigger) a `LaunchParams` object
will be enqueued in the `launchQueue` global `LaunchQueue` instance for the
browsing context that handled the launch. Scripts can provide a single
`LaunchConsumer` function to receive enqueued `LaunchParams`.

This functions similarly to an event listener but avoids the problem where
scripts may "miss" events if they're too slow to register their event listeners,
this problem is particularly pronounced for launch events as they occur
during the page's initialization. `LaunchParams` are buffered indefinitely until
they are consumed.

```
[Exposed=Window] interface LaunchParams {
readonly attribute DOMString? targetURL;
};

callback LaunchConsumer = any (LaunchParams params);

[Exposed=Window] interface LaunchQueue {
void setConsumer(LaunchConsumer consumer);
};

partial interface Window {
readonly attribute LaunchQueue launchQueue;
};
```

Example usage for a single-window music player app:
```javascript
launchQueue.setConsumer(launchParams => {
const songID = extractSongId(launchParams.targetURL);
if (songID) {
playSong(songID);
}
});
```

The `targetURL` member in `LaunchParams` will only be set if the launch did not
create a new browsing context or navigate an existing one.

Other web app APIs that involve launching may extend `LaunchParams` with
additional members containing data specific to the method of launching e.g. a
[share target](https://w3c.github.io/web-share-target/) payload.


### `launch_handler` manifest member

Add a `launch_handler` member to the web app manifest specifying the default
client selection and navigation behaviour for web app launches.
The shape of this member is as follows:
```
"launch_handler": {
"route_to": "new-client" | "existing-client" | "auto",
"navigate_existing_client": "always" | "never",
}
```

If unspecified then `launch_handler` defaults to
`{"route_to": "auto", "navigate_existing_client": "always"}`.

`route_to`:
- `new-client`: A new browsing context is created in a web app window to load
the launch's target URL.
- `existing-client`: The most recently interacted with browsing context in a web
app window for the app being launched is chosen to handle the launch. How the
launch is handled within that browsing context depends on
`navigate_existing_client`.
- `auto`: The behaviour is up to the user agent to decide what works best for
the platform. E.g. mobile devices only support single clients and would use
`existing-client` while desktop devices support multiple windows and would use
`new-client` to avoid data loss.

`navigate_existing_client`:
- `always`: existing browsing contexts chosen for launch will navigate the
browsing context to the launch's target URL.
- `never`: existing browsing contexts chosen for launch will not be navigated
and instead have `targetURL` in the enqueued `LaunchParams` set to the
launch's target URL.

Both `route_to` and `navigate_client` also accept a list of values, the
first valid value will be used. This is to allow new values to be added to
the spec without breaking backwards compatibility with old implementations by
using them.\
For example if `"matching-url-client"` were added sites would specify
`"route_to": ["matching-url-client", "existing-client"]` to continue
to control the behaviour of older browsers that didn't support
`"matching-url-client"`.

Example manifest that choses to receive all app launches as events in existing
web app windows:
```json
{
"name": "Example app",
"start_url": "/index.html",
"launch_handler": {
"route_to": "existing",
"navigate_existing_client": "never"
}
}
```


## Possible extensions to this proposal

- Add two members:
```
"launch_handler": {
"navigate_new_clients": "always" | "never",
"new_client_url": <URL>,
}
```
This allows web apps to intercept new client navigations and provide a
constant alternative URL to handle the enqueued `LaunchParams` with
`targetURL` set.

- Add the `launch_handler` field to other launch methods to allow sites to
customise the launch behaviour for specfic launch methods. E.g.:
```json
{
"name": "Example app",
"description": "This app will navigate existing clients unless it was launched via the share target API.",
"launch_handler": {
"route_to": "existing",
"navigate_client": true
},
"share_target": {
"action": "share.html",
"params": {
"title": "name",
"text": "description",
"url": "link"
},
"launch_handler": {
"navigate_client": false
}
}
}
```

- Add `attribute readonly LaunchConsumer? consumer` to `LaunchQueue`. This will
allow sites to chain `LaunchConsumers` together more independently.
```js
function addLaunchConsumer(launchConsumer) {
const existingLaunchConsumer = launchQueue.consumer;
launchQueue.setConsumer(launchParams => {
existingLaunchConsumer?.(launchParams);
launchConsumer(launchParams);
});
}
```
Or maybe the `LaunchQueue` interface should be `addConsumer`/`removeConsumer`
like `addEventListener`/`removeEventListener` but with buffering.


## Related proposals


### [Service Worker launch event][sw-launch-explainer]

This proposal is declarative alternative to the [service worker `launch`](
sw-launch-explainer) proposal in WICG. It covers many of the same
use cases, but omits the more advanced use cases (specifically, the option to
choose which client to focus).

Use of `launch_handler` in the manifest would provide a "default" launch
behaviour that the service worker `launch` event handler can choose to override.


### [Declarative Link Capturing][dlc-explainer]

This `launch_handler` proposal is intended to be a successor to the "launch"
components of DLC and decouple launch configuration from "link capturing"
behaviour.

`launch_handler` generalises the concept of a launch into two core primitive
actions; launch client selection and navigation, and explicitly decouples them
from the "link capturing" launch trigger.


### [WICG: URL Handlers](https://github.com/WICG/pwa-url-handler/blob/master/explainer.md)

Similarly to Declarative Link Capturing this `launch_handler` proposal refactors
out the "launch" component from the URL Handler proposal. `launch_handler`
behaviour is intended for being "invoked" by URL Handlers at the point in which
a web app has been chosen to handle an out-of-browser link navigation.


### [File Handling](https://github.com/WICG/file-handling/blob/main/explainer.md)

This proposal takes `LaunchQueue` and `LaunchParams` from the File Handling
proposal with a few changes:
- Instead of enqueuing `LaunchParams` for specific types of launches they will
be enqueued for every type of web app launch.
- An optional targetURL field is added.
- The interface is explicitly intended to be extended by other launch related
specs to contain launch specific data e.g. file handles or share data.


### [Tabbed Application Mode](https://github.com/w3c/manifest/issues/737)

This proposal is intended to work in tandem with tabbed mode web app windows.
The behaviour of `"route_to": "new-client"` with an already open tabbed window
is to open a new tab in that window.


[sw-launch-explainer]: https://github.com/WICG/sw-launch/blob/main/explainer.md
[dlc-explainer]: https://github.com/WICG/sw-launch/blob/main/declarative_link_capturing.md