- Sync
window.whateverwithvalues.anything. - Sync on window onscroll & onresize events.
import { windowValuesPlugin } from 'kea-window-values'
resetContext({
plugins: [windowValuesPlugin({ window: window })]
}), kea({
windowValues: {
isSmallScreen: window => window.innerWidth < 640,
isRetina: window => window.devicePixelRatio > 2,
scrollBarWidth: window => window.innerWidth - window.body.clientWidth
}
})