web api instance method
ContentIndex: getAll() method
Limited availabilityAvailable in workers
The getAll() method of the
ContentIndex interface returns a Promise that resolves with
an iterable list of content index entries.
Syntax
getAll()
Parameters
None.
Return value
Returns a Promise that resolves with an Array of
contentDescription items.
contentDescription- : Each item returned is an
Objectcontaining the following data:-
id- : A unique
Stringidentifier.
- : A unique
-
title- : A
Stringtitle of the item. Used in user-visible lists of content.
- : A
-
description- : A
Stringdescription of the item. Used in user-visible lists of content.
- : A
-
url- : A
Stringcontaining the URL of the corresponding HTML document. Needs to be under the scope of the current service worker.
- : A
-
categoryOptional -
iconsOptional
-
- : Each item returned is an
Exceptions
No exceptions are thrown. If there are no items in the Content Index, an empty
Array is returned.
Examples
The below example shows an asynchronous function that retrieves items within the content index and iterates over each entry, building a list for the interface.
async function createReadingList() {
// access our service worker registration
const registration = await navigator.serviceWorker.ready;
// get our index entries
const entries = await registration.index.getAll();
// create a containing element
const readingListElem = document.createElement("div");
// test for entries
if (entries.length === 0) {
// if there are no entries, display a message
const message = document.createElement("p");
message.innerText =
"You currently have no articles saved for offline reading.";
readingListElem.append(message);
} else {
// if entries are present, display in a list of links to the content
const listElem = document.createElement("ul");
for (const entry of entries) {
const listItem = document.createElement("li");
const anchorElem = document.createElement("a");
anchorElem.innerText = entry.title;
anchorElem.setAttribute("href", entry.url);
listElem.append(listItem);
}
readingListElem.append(listElem);
}
}
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.