BackgroundFetchUpdateUIEvent.updateUI()
The updateUI()
method of the BackgroundFetchUpdateUIEvent
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.
Syntax
let updateUI = BackgroundFetchUpdateUIEvent.updateUI(options);
Parameters
-
options
Optional -
An object containing any of the following:
-
icons
Optional -
A list of one or more image resources, containing icons for use in the user interface. An image resource is an object containing:
-
title
Optional -
A
string
containing text to update the title of the user interface.
-
Return value
A Promise
.
Exceptions
- A
DOMException
InvalidStateError
-
Thrown if any of the following are true:
- The
isTrusted
property isfalse
. - The
BackgroundFetchUpdateUIEvent
UI updated flag is already set, indicating that theupdateUI()
method has already been called. - The
BackgroundFetchUpdateUIEvent
is 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
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
updateUI |
74 |
79 |
No |
No |
62 |
No |
No |
74 |
No |
53 |
No |
11.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/BackgroundFetchUpdateUIEvent/updateUI