Fixes storage reactivity by reimplementing useAsyncStorage from vueuse and replacing the storage listener on window by a custom one using the polyfill webextension storage API.
Linked Issues
fix #111
Additional Context
The missing reactivity is very noticeable and anoying if u have a background worker changing any data in the storage. This PR should fix that. In the long term, it might be better to address this issue by exposing additional options in useAsyncStorage.
151 and this PR will conflict with each other, so some conflict resolving of either one will be required.
Description
Fixes storage reactivity by reimplementing useAsyncStorage from vueuse and replacing the storage listener on window by a custom one using the polyfill webextension storage API.
Linked Issues
fix #111
Additional Context
The missing reactivity is very noticeable and anoying if u have a background worker changing any data in the storage. This PR should fix that. In the long term, it might be better to address this issue by exposing additional options in useAsyncStorage.
151 and this PR will conflict with each other, so some conflict resolving of either one will be required.