From 272303183cf62bfe0c79abd9472fd478e308d820 Mon Sep 17 00:00:00 2001 From: SergeiTarkhanov Date: Wed, 13 Nov 2024 17:02:42 +0300 Subject: [PATCH 1/3] Timeout for Ping service --- src/components/services/Ping.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/services/Ping.vue b/src/components/services/Ping.vue index 8492c55c..8af12339 100644 --- a/src/components/services/Ping.vue +++ b/src/components/services/Ping.vue @@ -60,8 +60,14 @@ export default { } const startTime = performance.now(); + const timeout = parseInt(this.item.timeout, 10) || 2000; + const params = { + method, + cache: "no-cache", + signal: AbortSignal.timeout(timeout) + }; - this.fetch("/", { method, cache: "no-cache" }, false) + this.fetch("/", params, false) .then(() => { this.status = "online"; const endTime = performance.now(); From 98e8500d2aa048cda3b4dac9b3b1999d46a2edc1 Mon Sep 17 00:00:00 2001 From: SergeiTarkhanov Date: Wed, 13 Nov 2024 17:09:16 +0300 Subject: [PATCH 2/3] Update docs --- docs/customservices.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/customservices.md b/docs/customservices.md index 6ceb76f5..a380c276 100644 --- a/docs/customservices.md +++ b/docs/customservices.md @@ -153,6 +153,7 @@ This card checks if the target link is available. All you need is to set the `ty logo: "assets/tools/sample.png" url: "https://www.wikipedia.org/" # method: "head" + # timeout: 500 # subtitle: "Bookmark example" # By default, request round trip time is displayed when subtitle is not set. ``` From 9d420238dfd383bc33c5dac4f8f0e22ffd7af345 Mon Sep 17 00:00:00 2001 From: Sergey Date: Thu, 14 Nov 2024 10:57:00 +0300 Subject: [PATCH 3/3] Update docs/customservices.md Co-authored-by: Bastien Wirtz --- docs/customservices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/customservices.md b/docs/customservices.md index a380c276..a914d00f 100644 --- a/docs/customservices.md +++ b/docs/customservices.md @@ -153,7 +153,7 @@ This card checks if the target link is available. All you need is to set the `ty logo: "assets/tools/sample.png" url: "https://www.wikipedia.org/" # method: "head" - # timeout: 500 + # timeout: 500 # in ms. default 2000 # subtitle: "Bookmark example" # By default, request round trip time is displayed when subtitle is not set. ```