Library which allows to determine current browser UI state (address bar visibility, on-screen keyboard, etc)
npm install browser-ui-stateLive Demo - Open in Chrome, emulate to Nexus 5X and play with
different modes (look for state property with values e.g. EXPANDED, COLLAPSED, KEYBOARD, etc)
!Live Demo Preview
Such need exist for SPAs (usually games or
video content) which does not have long body to scroll through so that browser UI disappears.
So they need some way to "expand" the browser to some kind of "full screen" to provide immersive user-experience.
There is HTML5 Fullscreen API to solve
this problem, but it is not supported cross-browser (for example
not supported in iOS as well as on some Android stock browsers). Also not all browsers are using unprefixed version of the API,
leading to creation of vendor-agnostic wrapper libraries like Fscreen.
Fortunately with the help of a bit of mathematics, spreadsheets and some gathered browser's statistics -
it is possible to determine the state by calculating deviation between current viewport aspect ratio
(reported by window.innerWidth and height) and static screen aspect ratio (reported by screen.width and height).
This, being packaged into library, allows to build on top of it cross-browser full screen solutions like
displaying overlay (only when needed) with message to the user e.g. "To use this app please swipe up the page".
This very library does not provide (and does not intended to) any out-of-the-box full screen solutions.
shell
$ npm i browser-ui-state
`
Don't be afraid of caret (^) in your package.json for this dependency - semver will be used correctly for sure :hand::expressionless: :one:.:zero:.:zero:.
Usage
The library's API intended to be called whenever browser resize or orientation change happens:`javascript
import BrowserUiState from 'browser-ui-state'
const browserUiState = new BrowserUiState()
const resizeHandler = () => {
console.log(browserUiState.orientation) //LANDSCAPE or PORTRAIT
console.log(browserUiState.state) //COLLAPSED or EXPANDED or KEYBOARD or other, see states.js below
}
window.addEventListener('load', resizeHandler)
window.addEventListener('resize', resizeHandler)
window.addEventListener('orientationchange', resizeHandler)
`
states.js -
see all supported statesOld school:
`javascript
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
`$3
You might wonder why this library also reports orientation.Well... because it needs it for internal calculations and there is also a problem in Web to
correctly determine current device's orientation: just check what your orientation media query
will report to you in portrait when on-screen keyboard is shown (and it resizes viewport like in Chrome).
There is HTML5 Screen Orientation API
but it's browser support is similar to the one with HTML5 Fullscreen API.
Advanced
Library also allows to access its internal calculations for whatever advanced usage:
`javascript
console.log(browserUiState.screenAspectRatio.toFixed(2))
//Wider side devided to narrower side (screen.width & screen.height)
console.log(browserUiState.viewportAspectRatio.toFixed(2))
//Same as above but for window.innerWidth & window.innerHeight
console.log(browserUiState.delta.toFixed(2))
//Absolute delta between the 2 above
console.log(${browserUiState.deviation.toFixed(2)}%)
//Deviation between delta and screen aspect ratio
console.log(${browserUiState.collapsedThreshold}%)
//Deviation threshold for current user agent to treat state as collapsed (with address bar visible)
console.log(${browserUiState.keyboardThreshold}%)
//Deviation threshold for current user agent to treat state as the one when on-screen keyboard is visible
``