npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-dynamic-viewport-height

v1.0.4

Published

A React hook for handling viewport height and keyboard adjustments on mobile devices. This hook sets a CSS variable (`--vh`) representing the available viewport height, making it easy to create mobile layouts that adapt to browser UI elements and keyboard

Downloads

330

Readme

React Dynamic Viewport Height

A React hook for handling viewport height and keyboard adjustments on mobile devices. This hook sets a CSS variable (--vh) representing the available viewport height, making it easy to create mobile layouts that adapt to browser UI elements and keyboard presence.

Installation

Install the library from npm:

npm install react-dynamic-viewport-height

Usage

First, import and call the useDynamicViewportHeight hook at the top level of any component where you want dynamic viewport height adjustments.

import { useDynamicViewportHeight } from "react-dynamic-viewport-height";

const App = () => {
  useDynamicViewportHeight();
  return <div className="viewport-height">Your content here</div>;
};
export default App;

Option 1: Plain CSS

In your CSS file, use the --vh variable to set dynamic height on elements. Here’s how to add a viewport-height class in plain CSS:

/* App.css */
.viewport-height {
  height: calc(var(--vh, 1vh) * 100);
  background-color: lightblue; /* Example background */
  display: flex;
  align-items: center;
  justify-content: center;
}

Then, in your component, apply the CSS class:

// App.tsx
import React from "react";
import { useDynamicViewportHeight } from "react-dynamic-viewport-height";
import "./App.css";

const App: React.FC = () => {
  useDynamicViewportHeight();

  return (
    <div className="viewport-height">
      <p style={{ color: "white", fontSize: "20px" }}>
        Content fits the viewport height!
      </p>
    </div>
  );
};

export default App;

Option 2: Tailwind CSS

If you’re using Tailwind CSS, you can directly use the --vh variable in Tailwind’s h-[calc(...)] syntax to achieve the same effect. Add the following Tailwind class to any element you want to fill the viewport height.

// App.tsx
import React from "react";
import { useDynamicViewportHeight } from "react-dynamic-viewport-height";

const App: React.FC = () => {
  useDynamicViewportHeight();

  return (
    <div className="h-[calc(var(--vh)_* 100)] bg-blue-500 flex items-center justify-center">
      <p className="text-white text-lg">Content fits to viewport height!</p>
    </div>
  );
};

export default App;

Option 3: Styled Components

If you’re using styled-components, you can set the height property using the --vh variable directly within a styled component.

Install Styled Components (if needed)

npm install styled-components @types/styled-components

Usage with Styled Components

// App.tsx
import React from "react";
import styled from "styled-components";
import { useDynamicViewportHeight } from "react-dynamic-viewport-height";

const FullHeightDiv = styled.div`
  height: calc(var(--vh, 1vh) * 100);
  background-color: #87ceeb;
  display: flex;
  align-items: center;
  justify-content: center;
`;

const App: React.FC = () => {
  useDynamicViewportHeight();

  return (
    <FullHeightDiv>
      <p style={{ color: "white", fontSize: "20px" }}>
        Viewport height with styled-components!
      </p>
    </FullHeightDiv>
  );
};

export default App;

How It Works

The useDynamicViewportHeight hook sets a --vh CSS variable to dynamically reflect the current viewport height. This variable is recalculated on load and resize events, ensuring your content always fits within the visible viewport. The --vh variable can be used in any CSS solution to ensure the element takes up 100% of the viewport height.

Contributing to React Dynamic Viewport Height

Thank you for considering contributing to react-dynamic-viewport-height! This guide provides best practices and requirements for making contributions.

Getting Started

  1. Clone the repository and create a new branch for each feature, bug fix, or enhancement.
  2. Install dependencies by running npm install.
  3. Link the library locally to test changes in a sample project:
    • Run npm link in the library root directory.
    • In your test project, run npm link react-dynamic-viewport-height to link it.

Development Guidelines

  • Write clear and concise code: Follow consistent code formatting and use TypeScript for type safety.
  • Test your changes: Verify that your changes work as expected in a local project before opening a pull request.

Versioning

This project uses semantic versioning:

  • Patch versions for bug fixes (1.0.x).
  • Minor versions for new features that are backward-compatible (1.x.0).
  • Major versions for breaking changes (x.0.0).

To increment versions, use:

npm version patch   # For bug fixes
npm version minor   # For new features
npm version major   # For breaking changes

Pull Requests

  • Ensure each pull request addresses only one feature, bug, or enhancement.
  • Include a clear description of the changes.
  • Reference related issues if applicable (e.g., "Fixes #123").

Code of Conduct

Please maintain a respectful and inclusive environment for all contributors. See Contributor Covenant Code of Conduct for details.

License

By contributing, you agree that your contributions will be licensed under the MIT License.