coil-kt/coil

Support saving images to the origin private file system on Js and wasmJs.

Open

#1951 aperta il 13 dic 2023

Vedi su GitHub
 (1 commento) (0 reazioni) (0 assegnatari)Kotlin (757 fork)batch import
enhancementhelp wanted

Metriche repository

Star
 (11.779 star)
Metriche merge PR
 (Merge medio 20h 14m) (28 PR mergiate in 30 g)

Descrizione

This is out of date. See below.

Is your feature request related to a problem? Please describe. One of the downsides of running Kotlin Multiplatform code on browser-based Javascript is that it's not possible to read from or write to the device's file system. Currently, that means NetworkFetcher can't cache images on disk and can only store them in memory.

Describe the solution you'd like Due to the nature of browser-based Javascript, it's not possible to write a FileSystem implementation for Javascript. As such it's not possible to write a Ktor response body to disk. This means we need to write a separate fetcher since we can't rely on Ktor or Okio.

The <img> tag in Javascript has special privileges to write to a disk cache on browsers. Using this tag we may be able to fetch the image data using a hidden <img> tag and then read and wrap its binary data as an ImageSource. Ideally, we would avoid the <img> tag decoding the image into memory, but I'm not sure if that's possible.

Additional context This may or may not happen as there might be blockers or performance issues. I'm not very familiar with the web's APIs and their constraints.

Guida contributor