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(animated-fab): label styling (web) #4567

Merged
merged 2 commits into from
Feb 18, 2025

Conversation

BogiKay
Copy link
Contributor

@BogiKay BogiKay commented Nov 28, 2024

Motivation

Currently, whole styling related logic in AnimatedFAB component relies on onTextLayout, which is mobile specific, so FAB's label is not styled well in web.

Related issue

#4478

Test plan

  • Animated FAB is looking good when example app is running in web browser and there's no regression for mobile devices.

@BogiKay BogiKay requested review from gedu and lukewalczak November 28, 2024 13:37
@BogiKay BogiKay self-assigned this Nov 28, 2024
@callstack-bot
Copy link

callstack-bot commented Nov 28, 2024

Hey @BogiKay, thank you for your pull request 🤗. The documentation from this branch can be viewed here.

@ericpoulinnz
Copy link

@BogiKay is this able to be merged in soon? I'd like to use this component on our web app

@BogiKay
Copy link
Contributor Author

BogiKay commented Jan 17, 2025

@BogiKay is this able to be merged in soon? I'd like to use this component on our web app

I'll take care of it. I'll do my best to have it merged by the end of next week.

@@ -428,3 +435,36 @@ export const getExtendedFabStyle = ({

return isV3 ? v3Extended : extended;
};

const getCanvasContext = () => {
Copy link
Contributor

Choose a reason for hiding this comment

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

I'm not expert on web, won't impact the performance creating everytime a canvas? will work cache it? something like

let cachedCanvasContext: CanvasRenderingContext2D | null = null;

const getCanvasContext = () => {
  if (!cachedCanvasContext) {
    const canvas = document.createElement('canvas');
    cachedCanvasContext = canvas.getContext('2d');
  }
  return cachedCanvasContext;
};

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Valid suggestion

I did some performance testing for 100 FAB component instances rendered and TBH I didn't notice significant difference between variant with caching and the one without it except little memory consumption improvement, but still it's improvement, so caching added. 💪

Screenshot 2025-01-24 at 21 11 01

@ericpoulinnz
Copy link

This looks good to me! Is it able to be merged? It's one of a couple of issues holding up a new web launch for my team.

Copy link
Contributor

@gedu gedu left a comment

Choose a reason for hiding this comment

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

LGTM

@BogiKay BogiKay merged commit 366e0d6 into callstack:main Feb 18, 2025
3 checks passed
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.

4 participants