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 jumping stats table after switch to last page #713

Open
wants to merge 6 commits into
base: dev
Choose a base branch
from

Conversation

kuba80-02
Copy link
Contributor

No description provided.

@p6te
Copy link
Contributor

p6te commented Mar 28, 2025

the cause of issue is when you zoom out to 90% of view in browser. when is 100% there is no bug on prod as well. static height made another bug when view is on 90% of zoom.
image

@p6te
Copy link
Contributor

p6te commented Mar 31, 2025

bug is not fixed, view is still jumping, when you have zoom for 90% in browser. (btw on solana is the same issue to fix)

@p6te
Copy link
Contributor

p6te commented Mar 31, 2025

the footer of the table should be the same height as header of the table. when there is only one page without pagination
image

Copy link

This pull request has been deployed to Vercel.

Latest commit: 7c5ec79
✅ Preview: https://webapp-eclipse-qdqbox16q-invariantlabs.vercel.app
🔍 Inspect: https://vercel.com/invariantlabs/webapp-eclipse/BLHh7KzY5nTyVSDu2p7FK9dPxo5P

View Workflow Logs

Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR addresses the issue of a jumping stats table after switching to the last page by updating style properties and simplifying pagination logic. Key changes include:

  • Removing the dependency on the initialDataLength prop in style hooks.
  • Standardizing the rendering of empty rows and adjusting inline styles for border handling.
  • Simplifying pagination styling and recalculating page counts in PoolList.

Reviewed Changes

Copilot reviewed 8 out of 8 changed files in this pull request and generated no comments.

Show a summary per file
File Description
src/components/Stats/TokensList/style.ts Removed usage of the initialDataLength parameter and added positioning/overflow styling.
src/components/Stats/TokensList/TokensList.tsx Updated useStyles invocation and adjusted empty rows rendering and pagination styles.
src/components/Stats/TokenListItem/style.ts Added fixed height and boxSizing settings.
src/components/Stats/TokenListItem/TokenListItem.tsx Altered inline styling to use a transparent border for hiding bottom lines.
src/components/Stats/PoolListItem/style.ts Added fixed height settings for list items and headers.
src/components/Stats/PoolListItem/PoolListItem.tsx Updated inline style for border management similar to TokenListItem.
src/components/Stats/PoolList/style.ts Removed initialDataLength dependency and adjusted container and empty row styling.
src/components/Stats/PoolList/PoolList.tsx Updated useStyles, empty row mapping, pagination styling, and recalculated page count logic.
Comments suppressed due to low confidence (3)

src/components/Stats/TokensList/TokensList.tsx:60

  • The state variable 'initialDataLength' is now unused after removing it from useStyles; consider removing it to clean up the component.
const [initialDataLength, setInitialDataLength] = useState(initialLength)

src/components/Stats/PoolList/PoolList.tsx:87

  • Since the initialDataLength prop is no longer passed to useStyles, the corresponding state variable appears unused; removing it may simplify the component.
const [initialDataLength, setInitialDataLength] = useState(initialLength)

src/components/Stats/PoolList/PoolList.tsx:226

  • [nitpick] Ensure that calculating the page count using Math.ceil(data.length / 10) is consistent with other parts of the application and that no off-by-one issues occur.
pages={Math.ceil(data.length / 10)}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants