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

Stats: decouple real-time line charts #100200

Merged
merged 11 commits into from
Feb 24, 2025
Merged

Conversation

kangzj
Copy link
Contributor

@kangzj kangzj commented Feb 23, 2025

Related to #

Proposed Changes

  • Decouple the usage of a shared line component on real-time page, because it's very different.

Why are these changes being made?

  • Maintenance

Testing Instructions

  • Open http://calypso.localhost:3000/stats/subscribers/day/yoursite.com?flags=stats/chart-library
  • Ensure chart look okay
  • Open http://calypso.localhost:3000/stats/realtime/yoursite.com
  • Ensure real-time chart still works like it was

Pre-merge Checklist

  • Has the general commit checklist been followed? (PCYsg-hS-p2)
  • Have you written new tests for your changes?
  • Have you tested the feature in Simple (P9HQHe-k8-p2), Atomic (P9HQHe-jW-p2), and self-hosted Jetpack sites (PCYsg-g6b-p2)?
  • Have you checked for TypeScript, React or other console errors?
  • Have you used memoizing on expensive computations? More info in Memoizing with create-selector and Using memoizing selectors and Our Approach to Data
  • Have we added the "[Status] String Freeze" label as soon as any new strings were ready for translation (p4TIVU-5Jq-p2)?
    • For UI changes, have we tested the change in various languages (for example, ES, PT, FR, or DE)? The length of text and words vary significantly between languages.
  • For changes affecting Jetpack: Have we added the "[Status] Needs Privacy Updates" label if this pull request changes what data or activity we track or use (p4TIVU-aUh-p2)?

@kangzj kangzj added the [Feature] Stats Everything related to our analytics product at /stats/ label Feb 23, 2025
@kangzj kangzj requested a review from annacmc February 23, 2025 22:55
@kangzj kangzj self-assigned this Feb 23, 2025
@matticbot matticbot added the [Status] Needs Review The PR is ready for review. This also triggers e2e canary tests and wp-desktop tests automatically. label Feb 23, 2025
@matticbot
Copy link
Contributor

matticbot commented Feb 23, 2025

This PR modifies the release build for the following Calypso Apps:

For info about this notification, see here: PCYsg-OT6-p2

  • notifications
  • odyssey-stats
  • wpcom-block-editor

To test WordPress.com changes, run install-plugin.sh $pluginSlug update/decouple-all-new-line-charts on your sandbox.

@kangzj kangzj requested a review from a team February 23, 2025 23:04
x: {
tickFormat: formatTime,
numTicks: xAxisNumTicks ?? dataSeries.length,
{ ! isEmpty && (
Copy link
Contributor Author

Choose a reason for hiding this comment

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

We don't want chart to show up the same time as its empty state.

@matticbot
Copy link
Contributor

matticbot commented Feb 23, 2025

Here is how your PR affects size of JS and CSS bundles shipped to the user's browser:

App Entrypoints (~17 bytes added 📈 [gzipped])

name                   parsed_size           gzip_size
entry-subscriptions          +80 B  (+0.0%)      +19 B  (+0.0%)
entry-stepper                +80 B  (+0.0%)      +17 B  (+0.0%)
entry-main                   +80 B  (+0.0%)      +19 B  (+0.0%)
entry-login                  +80 B  (+0.0%)      +19 B  (+0.0%)
entry-domains-landing        +80 B  (+0.0%)      +19 B  (+0.0%)
entry-browsehappy            +80 B  (+0.0%)      +19 B  (+0.0%)

Common code that is always downloaded and parsed every time the app is loaded, no matter which route is used.

Sections (~43 bytes removed 📉 [gzipped])

name   parsed_size           gzip_size
stats        -83 B  (-0.0%)      -43 B  (-0.0%)

Sections contain code specific for a given set of routes. Is downloaded and parsed only when a particular route is navigated to.

Async-loaded Components (~587 bytes added 📈 [gzipped])

name                                                     parsed_size            gzip_size
async-load-calypso-my-sites-stats-pages-realtime-chart     +333584 B     (new)   +91049 B     (new)
async-load-calypso-my-sites-stats-pages-realtime             -1425 B  (-27.8%)     -565 B  (-28.0%)
async-load-calypso-my-sites-stats-pages-subscribers           -104 B   (-0.1%)      -23 B   (-0.0%)
async-load-calypso-my-sites-stats-components-line-chart        +89 B   (+0.0%)      +26 B   (+0.0%)

React components that are loaded lazily, when a certain part of UI is displayed for the first time.

Legend

What is parsed and gzip size?

Parsed Size: Uncompressed size of the JS and CSS files. This much code needs to be parsed and stored in memory.
Gzip Size: Compressed size of the JS and CSS files. This much data needs to be downloaded over network.

Generated by performance advisor bot at iscalypsofastyet.com.

hour: '2-digit',
minute: '2-digit',
hour12: true,
return date.toLocaleDateString( undefined, {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Default formatting to dates.

@kangzj kangzj marked this pull request as ready for review February 23, 2025 23:06
Copy link
Contributor

@annacmc annacmc left a comment

Choose a reason for hiding this comment

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

This is great, both charts still work as expected and the code separation looks good & makes sense to me. 👍

);

// TODO: we should have this in charts lib.
const chartDataSorted = useMemo(
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This fixes the issue when the series is not in the order of date asc, which cuases an issue where the tooltip is not showing.

@annacmc we should deal with the sorting from the charts lib side I think

Copy link
Contributor

Choose a reason for hiding this comment

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

yeah, I think that's wise. Adding to my list ✔️

Remote outdated comments
const dataSeries = chartData?.[ 0 ].data || [];
const isEmpty = ( chartData?.[ 0 ].data || [] ).length === 0;

const maxViews = useMemo(
Copy link
Contributor Author

Choose a reason for hiding this comment

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

We should probably rename all the variables with name views as it doesn't necessarily to be views - they could be anything

Copy link
Contributor

Choose a reason for hiding this comment

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

yeah sounds like a good idea. I can tackle that in another PR so this one doesn't end up too massive.

@kangzj kangzj merged commit a4497ff into trunk Feb 24, 2025
13 checks passed
@kangzj kangzj deleted the update/decouple-all-new-line-charts branch February 24, 2025 02:35
@github-actions github-actions bot removed the [Status] Needs Review The PR is ready for review. This also triggers e2e canary tests and wp-desktop tests automatically. label Feb 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[Feature] Stats Everything related to our analytics product at /stats/
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants