Skip to content

Commit

Permalink
Run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
queengooborg committed Sep 7, 2023
1 parent 8361e82 commit 56d7221
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 18 deletions.
18 changes: 9 additions & 9 deletions files/ru/web/api/backgroundfetchregistration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,19 +77,19 @@ l10n:
```js
navigator.serviceWorker.ready.then(async (swReg) => {
const bgFetch = await swReg.backgroundFetch.fetch(
'my-fetch',
['/ep-5.mp3', 'ep-5-artwork.jpg'],
"my-fetch",
["/ep-5.mp3", "ep-5-artwork.jpg"],
{
title: 'Episode 5: Interesting things.',
title: "Episode 5: Interesting things.",
icons: [
{
sizes: '300x300',
src: '/ep-5-icon.png',
type: 'image/png',
sizes: "300x300",
src: "/ep-5-icon.png",
type: "image/png",
},
],
downloadTotal: 60 * 1024 * 1024,
}
},
);
});
```
Expand All @@ -103,9 +103,9 @@ console.log(bgFetch.id); // "my-fetch"
Метод {{domxref("BackgroundFetchRegistration.match","match()")}} можно использовать для поиска конкретного {{domxref("BackgroundFetchRecord")}} из тех, что были зарегистрированы.

```js
bgFetch.match('/ep-5.mp3').then(async (record) => {
bgFetch.match("/ep-5.mp3").then(async (record) => {
if (!record) {
console.log('No record found');
console.log("No record found");
return;
}

Expand Down
4 changes: 2 additions & 2 deletions files/ru/web/api/backgroundfetchregistration/match/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ match(request, options);
В этом примере мы ищем запись с URL "/ep-5.mp3". Если {{domxref("BackgroundFetchRecord")}} найдена, то мы можем вернуть некоторую информацию ней.

```js
bgFetch.match('/ep-5.mp3').then(async (record) => {
bgFetch.match("/ep-5.mp3").then(async (record) => {
if (!record) {
console.log('Запись не найдена');
console.log("Запись не найдена");
return;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ slug: Web/API/BackgroundFetchRegistration/matchAll
l10n:
sourceCommit: bf30e32f3b51f59080f2c76795beadb247a551eb
---

{{APIRef("Background Fetch API")}}{{SeeCompatTable}}

Метод **`matchAll()`** интерфейса {{domxref("BackgroundFetchRegistration")}} возвращает массив всех совпавших объектов {{domxref("BackgroundFetchRecord")}}.

## Синтаксис

```js
matchAll(request)
matchAll(request,options)
matchAll(request);
matchAll(request, options);
```

### Параметры
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---
title: 'BackgroundFetchRegistration: progress event'
title: "BackgroundFetchRegistration: progress event"
slug: Web/API/BackgroundFetchRegistration/progress_event
l10n:
sourceCommit: 5288fecd2bcd65bde5ecef008684d3cb343c7b34
---

{{APIRef("Background Fetch API")}}{{SeeCompatTable}}

Событие **`progress`** интерфейса {{domxref("BackgroundFetchRegistration")}} происходит когда выполняется связанные фоновый запрос.
Expand All @@ -20,8 +21,8 @@ l10n:
Используйте имя события в таких методах как {{domxref("EventTarget.addEventListener", "addEventListener()")}}, или установите свойство события `onprogress` в соответствующем объекте {{domxref("BackgroundFetchRegistration")}}.

```js
addEventListener('progress', (event) => { })
onprogress = (event) => { }
addEventListener("progress", (event) => {});
onprogress = (event) => {};
```

## Тип события
Expand All @@ -33,9 +34,11 @@ onprogress = (event) => { }
Следующий пример демонстрирует как вывести ход загрузки в консоль. Сначала код проверяет был ли предоставлен `downloadTotal`, когда фоновый запрос был зарегистрирован. The code first checks that a `downloadTotal` was provided when the background fetch was registered. Затем это значение используется для расчета процента на основе свойства `downloaded`.

```js
bgFetch.addEventListener('progress', () => {
bgFetch.addEventListener("progress", () => {
if (!bgFetch.downloadTotal) return;
const percent = Math.round(bgFetch.downloaded / bgFetch.downloadTotal * 100);
const percent = Math.round(
(bgFetch.downloaded / bgFetch.downloadTotal) * 100,
);
console.log(`Download progress: ${percent}%`);
});
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ slug: Web/API/BackgroundFetchRegistration/recordsAvailable
l10n:
sourceCommit: 5288fecd2bcd65bde5ecef008684d3cb343c7b34
---

{{APIRef("Background Fetch API")}}{{SeeCompatTable}}

Доступное только для чтения свойство **`recordsAvailable`** интерфейса {{domxref("BackgroundFetchRegistration")}} возвращает `true` если есть запросы и ответы, к которым необходимо получить доступ. Если же возвращает `false`, то {{domxref("BackgroundFetchRegistration.match()","match()")}} и {{domxref("BackgroundFetchRegistration.matchAll()","matchAll()")}} не могут быть использованы.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ slug: Web/API/BackgroundFetchRegistration/result
l10n:
sourceCommit: 5288fecd2bcd65bde5ecef008684d3cb343c7b34
---

{{APIRef("Background Fetch API")}}{{SeeCompatTable}}

Доступное только для чтения свойство **`result`** интерфейса {{domxref("BackgroundFetchRegistration")}} возвращает строку, которая указывает на то, был фоновый запрос успешным ли неудачным.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ slug: Web/API/BackgroundFetchRegistration/uploaded
l10n:
sourceCommit: 5288fecd2bcd65bde5ecef008684d3cb343c7b34
---

{{APIRef("Background Fetch API")}}{{SeeCompatTable}}

Доступное только для чтения свойство **`uploaded`** интерфейса {{domxref("BackgroundFetchRegistration")}} возвращает количество успешно переданных байт, изначально `0`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ slug: Web/API/BackgroundFetchRegistration/uploadTotal
l10n:
sourceCommit: 5288fecd2bcd65bde5ecef008684d3cb343c7b34
---

{{APIRef("Background Fetch API")}}{{SeeCompatTable}}

Доступное только для чтения свойство **`uploadTotal`** интерфейса {{domxref("BackgroundFetchRegistration")}} возвращает общее число байтов для отправки на сервер.
Expand Down

0 comments on commit 56d7221

Please sign in to comment.