BackgroundFetchUpdateUIEvent: updateUI() method
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental:This is anexperimental technology
Check theBrowser compatibility table carefully before using this in production.
Note: This feature is only available inService Workers.
TheupdateUI() method of theBackgroundFetchUpdateUIEvent interface updates the title and icon in the user interface to show the status of a background fetch.
This method may only be run once, to notify the user on a failed or a successful fetch.
In this article
Syntax
updateUI()updateUI(options)Parameters
optionsOptionalAn object containing any of the following:
iconsOptionalA list of one or more image resources, containing icons for use in the user interface. An image resource is an object containing:
srcA string which is a URL of an image.
sizesOptionalA string which is equivalent to the
sizesattribute of the<link>element.typeOptionalA string containing an image MIME type.
labelOptionalA string providing a name for the associated image.
titleOptionalA string containing the new title of the user interface.
Return value
APromise.
Exceptions
InvalidStateErrorDOMExceptionThrown if any of the following are true:
- The
isTrustedproperty isfalse. - The
BackgroundFetchUpdateUIEventUI updated flag is already set, indicating that theupdateUI()method has already been called. - The
BackgroundFetchUpdateUIEventis not active.
- The
Examples
The following example demonstrates updating the UI with a title and image icon on a successful fetch.
addEventListener("backgroundfetchsuccess", (event) => { event.updateUI({ title: "Episode 5 ready to listen!", icon: { src: "path/to/success.ico", sizes: "16x16 32x32 64x64", }, });});Specifications
| Specification |
|---|
| Background Fetch> # background-fetch-update-ui-event-update-ui> |