Code Monkey home page Code Monkey logo

Comments (2)

svilenmarkov avatar svilenmarkov commented on July 19, 2024

Hey,

The issue with this is that the entire page becomes visible only when all widgets are done loading. If you were to set the timeout to 20 seconds and had 3 retries, you're potentially going to be staring at the loading indicator for a whole minute. I went with this approach rather than displaying each widget when it's done loading because I didn't want things to jarringly jump up and down as widgets load one by one (layout shifting).

Technically this can be done for the monitor widget since the height of each site is constant so it shouldn't result in a layout shift, though I don't currently have the required functionality in place to be able to do this easily.

Would it help if you were able to choose the method of the request that the widget makes? It does a GET request currently which fetches the headers and body, if you were to change it to a HEAD request it would only fetch the headers, meaning there's less data being sent so in theory should load much more quickly, assuming the site you're checking has an endpoint that supports HEAD requests.

from glance.

samcro1967 avatar samcro1967 commented on July 19, 2024

Being able to change the default request type to a head should do the trick. I have tested a couple of IoT devices that are failing the get request from time to time and they both seem to support a head request. Example of one is below.

curl -I -k https://192.168.1.122:8080/ui/
HTTP/1.1 200 OK
Content-Type: text/html
Accept-Ranges: bytes
ETag: "2365067868"
Last-Modified: Mon, 11 Oct 2021 09:00:13 GMT
Content-Length: 202279
Date: Mon, 24 Jun 2024 16:17:46 GMT
Server: <redacted>

from glance.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.