New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

solidjs-div-100vh

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

solidjs-div-100vh

A workaround for the '100vh' issue in mobile browsers

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Div100vh SolidJS component and create100vh signal

This is a workaround for iOS Safari and other mobile browsers.

Forked from react-div-100vh by mvasin.

The problem

In mobile browsers, the real height of the viewport is dynamic, as browser "chrome" (panels) slide away on scrolling. The browser developers faced two choices: either to reflow the page as the pixel value of a vh changes, or ignore the fact that the browser panel covers part of the screen.

The browser panels are supposed to slide away smoothly, and because the layout reflow during scrolling will not look smooth, the browser developers went for the second option.

It may work for the most of use cases, but if you're looking for an app-like full-screen experience, or want to make sure that the call to action button at the bottom of your splash screen isn't covered, you may need to know the fair value of a vh.

<div style={{ height: "100vh" }}><Div100vh>
Page cropped by bottom Safari chromePage cropped by bottom Safari chrome

More on this issue here.

The solution

Div100vh SolidJS component is the default export:

import Div100vh from "solidjs-div-100vh"

const MyFullHeightComponent = () => (
  <Div100vh>
    <span>Look ma, no crop!</span>
  </Div100vh>
)

For more advanced use cases (for instance, if you need 50% of the real height), there is a named export create100vh. This SolidJS signal provides an accurate vertical height in pixels. The return type is a number in a browser and null in Node environment. You may need to check if it's not null if you're doing SSR, otherwise, manipulate the value as you wish:

import { create100vh } from "solidjs-div-100vh"

const HalfHeightComponent = ({ children }) => {
  const height = create100vh()
  // This *must* be a function,
  // otherwise SolidJS won't track the changes.
  const halfHeight = () => (height() ? height() / 2 : "50vh")
  return <div style={{ height: halfHeight }}>{children}</div>
}

const FourthHeightComponent = ({ children }) => {
  const height = create100vh()
  return (
    <div style={{ height: height() ? height() / 4 : "25vh" }}>
      {children}
    </div>
  )
}

Under the hood create100vh uses measureHeight function which is exported as well, so feel free to use it, even without SolidJS. Currently it returns document.documentElement?.clientHeight || window.innerHeight if executed in a browser or null if on a server.

Keywords

FAQs

Package last updated on 01 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc