Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(AppFrame): Use dynamic view height in app frame #1440

Merged
merged 2 commits into from
Nov 28, 2024

Conversation

rafalluksza
Copy link
Contributor

@rafalluksza rafalluksza commented Nov 27, 2024

Resolves: LC-3261

Description

Use dynamic 100dvh to prevent scroll on mobile devices.

Storybook

https://feature-lc-3261--613a8e945a5665003a05113b.chromatic.com

Checklist

Obligatory:

  • Self review (use this as your final check for proposed changes before requesting the review)
  • Add correct label
  • Assign pull request with the correct issue

Summary by CodeRabbit

  • Style
    • Updated the app frame height styling for improved responsiveness by changing from a fixed viewport height to a dynamic viewport height.

Copy link
Contributor

coderabbitai bot commented Nov 27, 2024

Walkthrough

The changes involve updating the CSS in the AppFrame.module.scss file, specifically modifying the height property of the base class from height: 100vh; to height: 100dvh;. This adjustment alters how the app frame's height is calculated, transitioning to a dynamic viewport height unit that adapts to the visible area of the viewport.

Changes

File Path Change Summary
packages/react-components/src/components/AppFrame/AppFrame.module.scss Changed height from 100vh to 100dvh in base class

Assessment against linked issues

Objective Addressed Explanation
Adjust app frame height for iPad vertical scroll (LC-3261)

📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between a1d452a and e38680e.

📒 Files selected for processing (1)
  • packages/react-components/src/components/AppFrame/AppFrame.module.scss (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/react-components/src/components/AppFrame/AppFrame.module.scss

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (1)
packages/react-components/src/components/AppFrame/AppFrame.module.scss (1)

8-8: Consider adding a fallback for older browsers

While dvh is well-supported in modern browsers, consider adding a fallback:

.#{$base-class} {
+  height: 100vh; /* Fallback for older browsers */
   height: 100dvh;
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 75e7e14 and a1d452a.

📒 Files selected for processing (1)
  • packages/react-components/src/components/AppFrame/AppFrame.module.scss (1 hunks)
🔇 Additional comments (1)
packages/react-components/src/components/AppFrame/AppFrame.module.scss (1)

8-8: LGTM! Good choice using dvh

The change from vh to dvh is an excellent solution for the iPad scrolling issues. Dynamic viewport height (dvh) accounts for dynamic UI elements like address bars, providing a more stable layout on mobile devices.

Let's check browser support for dvh:

✅ Verification successful

dvh usage is safe and appropriate

The change to dvh is the only instance in the codebase, replacing the previous vh unit. Since this is a modern design system (using React 17+, Vite, and modern tooling), the browser support for dvh (92.71% global coverage) is sufficient for the target audience.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for dvh unit in browserslist config
fd -t f "package.json|.browserslistrc" -x cat {} | grep -i "browserslist"

# Check if there are any CSS fallbacks for dvh
rg -i "(?:height:\s*100vh|@supports.*dvh)" 

Length of output: 120


Script:

#!/bin/bash
# Let's check package.json files for browserslist config
fd "package.json" -x cat {}

# Check for any existing vh units in SCSS files
rg -i "height:\s*\d+vh" -g "*.scss"

# Check for any dvh units in SCSS files
rg -i "height:\s*\d+dvh" -g "*.scss"

Length of output: 7066

@rafalluksza rafalluksza changed the title (fix) Use dynamic view height in app frame fix(AppFrame): Use dynamic view height in app frame Nov 27, 2024
@VadymBezpalko VadymBezpalko merged commit 90ba344 into main Nov 28, 2024
7 checks passed
@VadymBezpalko VadymBezpalko deleted the feature/LC-3261 branch November 28, 2024 08:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants