html5please icon indicating copy to clipboard operation
html5please copied to clipboard

Visibility API

Open justmarkup opened this issue 14 years ago • 14 comments

I think the Visibility API is worth a mention.

Currently there is native support for Chrome > 13, IE 10 and Firefox 10 although only with prefixes.

Pollyfills:

  • https://github.com/addyosmani/visibly.js
  • https://github.com/evilmartians/visibility.js

In my opinion the status should be "Use with pollyfills" .

What do you think?

justmarkup avatar Jan 24 '12 18:01 justmarkup

I've used both of the above polyfills/shims in production. I think mine and evilmartians both need more/tests, but they do the trick. I would say 'use with polyfills'.

addyosmani avatar Jan 24 '12 18:01 addyosmani

Defiantly worth mentioning. Neiter appear to be polyfills they are just feature equivelant emulation using propietory APIs.

Writing a real polyfill shouldn't be too difficult though.

Raynos avatar Jan 24 '12 18:01 Raynos

If this is proprietary API I think we should mention with 'avoid'. We shouldnt have to face the trauma of flexbox again.

nimbupani avatar Jan 24 '12 18:01 nimbupani

That's not what I meant. I meant the polyfills don't use the native API. (the polyfills use their own propietory API, except the term "propietory API" is poorly used to describe that).

Page Visibility is a proper w3c specification.

Raynos avatar Jan 24 '12 18:01 Raynos

ohh i see. perhaps then we need a good polyfill that DOES use the native API?

nimbupani avatar Jan 24 '12 18:01 nimbupani

So, to add some further clarity to the comment from @Raynos, both solutions do use the Page Visibility API in it's native form if it's present, but do so and provide fallbacks through an abstraction layer. This was necessary as we were experiencing (IE) issues related to just firing off simulated 'visibilityChanged' events that prevented us from just doing a 100% polyfill. If anyone feels they can improve on that, by all means please do :)

addyosmani avatar Jan 24 '12 18:01 addyosmani

Would firing visibilityChanged events through an emulated DOM2 events (addEventListener) API in oldIE count as a 100% polyfill? That should be possible. Also DOM 0 event listeners like document.onvisibilitychange should also be possible.

I'll add writing a page visibility polyfill to the list.

Raynos avatar Jan 24 '12 18:01 Raynos

It would cover the most important part of the spec, but if you're going for completeness there's a little more to it such as exposing the actual state and not just that it's changed :)

On 24 Jan 2012, at 18:54, [email protected] wrote:

Would firing visibilityChanged events through an emulated DOM2 events (addEventListener) API in oldIE count as a 100% polyfill? That should be possible. Also DOM 0 event listeners like document.onvisibilitychange should also be possible.

I'll add writing a page visibility polyfill to the list.


Reply to this email directly or view it on GitHub: https://github.com/h5bp/html5please/issues/87#issuecomment-3638075

addyosmani avatar Jan 24 '12 19:01 addyosmani

The following polyfill : https://gist.github.com/1677020 given some polish and testing should work correctly.

Note that legacy browser support in this case requires polyfilling addEventListener, [].forEach and Object.defineProperty which should all be shimmable back to oldIE.

Raynos avatar Jan 25 '12 18:01 Raynos

If it helps make things feel more native in old ie, you could use a combination onpropertychange and toString = function() to make your polyfill act and feel more native (i use it as a poor man's object.watch)

jonathantneal avatar Jan 29 '12 15:01 jonathantneal

@Raynos that works for me, thank you thank you!

reconbot avatar Feb 01 '12 14:02 reconbot

@Raynos what is your view on this? Would you be up to making a new post on Visibility API?

nimbupani avatar Feb 19 '13 02:02 nimbupani

Its worth mentioning yes, not sure what I would write about it, may get around to it.

Raynos avatar Feb 19 '13 03:02 Raynos

Do you guys think there's still a need for 'use with polyfill'? Take a look at the caniuse page, but looks like it's overall quite green.

arthurvr avatar Nov 12 '14 06:11 arthurvr