dart-lang / sdk

The Dart SDK, including the VM, dart2js, core libraries, and more.
https://dart.dev
BSD 3-Clause "New" or "Revised" License
9.94k stars 1.53k forks source link

dart:indexed_db from service worker & IdbFactory.supported #31401

Open jimmyff opened 6 years ago

jimmyff commented 6 years ago

dart:indexed_db from service worker IdbFactory.supported doesn't work as window is not available from a service worker.

vsmenon commented 6 years ago

I don't believe dart:html, dart:indexed_db will work in a service worker context without some surgery.

Some folks have worked around using:

https://github.com/isoos/service_worker

@terrylucas

jimmyff commented 6 years ago

It's working for me (although I am only using quite a simple implementation). it was only the IdbFactory.supported that I ran in to that didn't work.