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

feat(web): tooltip-improvement-and-line-draw #1651

Merged
merged 1 commit into from
Jul 18, 2024

Conversation

Harman-singh-waraich
Copy link
Contributor

@Harman-singh-waraich Harman-singh-waraich commented Jul 16, 2024

  • adds linear graident to line in Line Charts
  • updates tooltip ui to match our theme
  • added a line draw at the point of interaction as per figma
  • added custom tooltip to position the tooltip dynamically, without covering the lines

PR-Codex overview

The focus of this PR is to add custom tooltip positioning and gradient border color to charts using chart.js.

Detailed summary

  • Added custom tooltip positioning for Chart.tsx and TimeSeriesChart.tsx
  • Implemented gradient border color for the chart in TimeSeriesChart.tsx
  • Added a plugin for drawing a dashed line on hover in TimeSeriesChart.tsx

✨ Ask PR-Codex anything about this PR by commenting with /codex {your question}

Summary by CodeRabbit

  • New Features
    • Introduced a custom tooltip positioner in the Chart component for dynamically positioning tooltips.
    • Enhanced the TimeSeriesChart with gradient border colors and custom line drawing behaviors for better data visualization.

Copy link
Contributor

coderabbitai bot commented Jul 16, 2024

Walkthrough

Recent updates to the chart functionalities include the addition of a custom tooltip positioner and enhancements to the TimeSeriesChart component. The custom tooltip positioner dynamically adjusts tooltip placement based on chart dimensions and the hovered element. Additionally, the TimeSeriesChart now boasts gradient borders for datasets and a new plugin for customizing line drawing after datasets are rendered, enhancing the visual appeal and interactivity of charts.

Changes

File Summary of Changes
web/global.d.ts Declared a new custom positioner in the "chart.js" module for TooltipPositionerMap with TooltipPositionerFunction<ChartType>.
web/src/pages/Home/CourtOverview/Chart.tsx Added a custom tooltip positioner to dynamically calculate tooltip positioning based on the chart's size and hovered element's position.
web/src/pages/Home/CourtOverview/TimeSeriesChart.tsx Expanded imports from "chart.js", modified tooltip plugin's position and background color, added gradient border color function, and added a new plugin for line drawing behavior.

Poem

In charts, a dance of data and light,
Tooltips now align just right,
With gradients that glow and lines anew,
A visual feast, for me and you.
Code and art in harmony blend,
Charting tales, from start to end.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
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>.
    • 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 generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @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 as 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.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration 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

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: 1

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between a7f7b65 and e5a300e.

Files selected for processing (3)
  • web/global.d.ts (1 hunks)
  • web/src/pages/Home/CourtOverview/Chart.tsx (2 hunks)
  • web/src/pages/Home/CourtOverview/TimeSeriesChart.tsx (3 hunks)
Additional context used
Biome
web/src/pages/Home/CourtOverview/Chart.tsx

[error] 107-107: This aliasing of this is unnecessary.

Arrow functions inherits this from their enclosing scope.
Safe fix: Use this instead of an alias.

(lint/complexity/noUselessThisAlias)

Additional comments not posted (3)
web/global.d.ts (1)

21-24: New Tooltip Positioner Function Added

The addition of the custom tooltip positioner function to the TooltipPositionerMap interface is a significant enhancement for custom tooltip positioning in charts. Ensure that this new function is properly integrated and utilized in the codebase.

Verification successful

New Tooltip Positioner Function Added

The addition of the custom tooltip positioner function to the TooltipPositionerMap interface is a significant enhancement for custom tooltip positioning in charts. The function is properly integrated and utilized in the codebase, as evidenced by its usage in web/src/pages/Home/CourtOverview/Chart.tsx.

  • web/src/pages/Home/CourtOverview/Chart.tsx: Tooltip.positioners.custom = function (elements) {
Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the usage of the custom tooltip positioner in the codebase.

# Test: Search for the usage of the `custom` tooltip positioner. Expect: Proper integration and usage.
rg --type typescript -A 5 $'TooltipPositionerMap'

Length of output: 83


Script:

#!/bin/bash
# Description: Verify the usage of the custom tooltip positioner in the codebase.

# Test: Search for the usage of the `custom` tooltip positioner. Expect: Proper integration and usage.
rg -t ts -t tsx -A 5 'TooltipPositionerMap' | grep -A 5 'custom'

Length of output: 90


Script:

#!/bin/bash
# Description: Verify the usage of the custom tooltip positioner in the codebase.

# Test: Search for the usage of the `custom` tooltip positioner. Expect: Proper integration and usage.
rg '\.ts$' -A 5 'TooltipPositionerMap' | grep -A 5 'custom'
rg '\.tsx$' -A 5 'TooltipPositionerMap' | grep -A 5 'custom'

Length of output: 238


Script:

#!/bin/bash
# Description: Verify the usage of the custom tooltip positioner in the codebase.

# Test: Search for the usage of the `custom` tooltip positioner. Expect: Proper integration and usage.
rg 'TooltipPositionerMap' -g '*.ts' -g '*.tsx' -A 5 | rg 'custom'

Length of output: 129


Script:

#!/bin/bash
# Description: Verify the usage of the custom tooltip positioner in the codebase.

# Test: Search for any references to the `custom` tooltip positioner property. Expect: Proper integration and usage.
rg '\.custom\b' -g '*.ts' -g '*.tsx'

Length of output: 132

web/src/pages/Home/CourtOverview/TimeSeriesChart.tsx (2)

4-13: Updated Imports from "chart.js"

The imports from "chart.js" have been expanded to include Tooltip and ScriptableContext, and a new plugin configuration has been introduced. This expansion supports the new functionalities added in this file.


Line range hint 63-96: Enhancements to Tooltip and Line Drawing Plugin

The tooltip now uses a custom position, and its background color and other properties have been adjusted to match the theme. Additionally, the borderColor function introduces a gradient, enhancing the visual appeal.

The new plugin for line drawing (id: "line-draw") is a significant addition. It dynamically draws a line at the point of interaction, which is a feature specified in the PR description. Ensure that this plugin is correctly functioning by testing it in the appropriate environments.

Also applies to: 102-124

Verification successful

Verified the implementation of the line-draw plugin.

The line-draw plugin is correctly implemented and included in the plugins array of the Line component in TimeSeriesChart.tsx. It uses the afterDatasetsDraw hook to draw a line from the tooltip's active point to the bottom of the y-axis.

  • web/src/pages/Home/CourtOverview/TimeSeriesChart.tsx: Implementation of the line-draw plugin.
Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the correct functionality of the new line drawing plugin.

# Test: Search for the usage of the `line-draw` plugin. Expect: Correct implementation and functioning.
rg --type typescript -A 5 $'line-draw'

Length of output: 72


Script:

#!/bin/bash
# Description: Verify the correct functionality of the new line drawing plugin.

# Test: Search for the usage of the `line-draw` plugin. Expect: Correct implementation and functioning.
rg --glob '*.ts' -A 5 'line-draw'

Length of output: 33


Script:

#!/bin/bash
# Description: Verify the implementation and configuration of the Line component for custom plugins or line drawing functionalities.

# Test: Search for the implementation of the Line component. Expect: Identification of custom plugins or configurations.
rg 'Line' -A 10 --glob '*.ts*'

Length of output: 13960


Script:

#!/bin/bash
# Description: Extract the full content of TimeSeriesChart.tsx for detailed inspection.

# Test: Extract the content of TimeSeriesChart.tsx. Expect: Detailed inspection of line drawing functionality.
cat web/src/pages/Home/CourtOverview/TimeSeriesChart.tsx

Length of output: 3326

Comment on lines +105 to +122
// custom positioner for tooltip, we need dynamic top positioning, which is not available by default.
Tooltip.positioners.custom = function (elements) {
const tooltip = this;
const height = tooltip.chart.chartArea.height;
const width = tooltip.chart.chartArea.width;

const x = elements[0]?.element.x;
const y = elements[0]?.element.y;
const isAtTop = height > y + tooltip.height;
const isAtEnd = width < x + tooltip.width;

return {
x: elements[0]?.element.x,
y: elements[0]?.element.y,
xAlign: isAtTop ? (isAtEnd ? "right" : "left") : "center",
yAlign: isAtTop ? "center" : "bottom",
};
};
Copy link
Contributor

Choose a reason for hiding this comment

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

Custom Tooltip Positioner Implemented

The custom tooltip positioner dynamically calculates positions based on chart dimensions and hovered elements, which is a key feature for improving user interaction. However, the static analysis tool flagged an unnecessary aliasing of this in the arrow function, which should be corrected.

- Tooltip.positioners.custom = function (elements) {
+ Tooltip.positioners.custom = (elements) => {

This change ensures that this is correctly bound in the context of the arrow function, improving readability and adhering to best practices.

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
// custom positioner for tooltip, we need dynamic top positioning, which is not available by default.
Tooltip.positioners.custom = function (elements) {
const tooltip = this;
const height = tooltip.chart.chartArea.height;
const width = tooltip.chart.chartArea.width;
const x = elements[0]?.element.x;
const y = elements[0]?.element.y;
const isAtTop = height > y + tooltip.height;
const isAtEnd = width < x + tooltip.width;
return {
x: elements[0]?.element.x,
y: elements[0]?.element.y,
xAlign: isAtTop ? (isAtEnd ? "right" : "left") : "center",
yAlign: isAtTop ? "center" : "bottom",
};
};
// custom positioner for tooltip, we need dynamic top positioning, which is not available by default.
Tooltip.positioners.custom = (elements) => {
const tooltip = this;
const height = tooltip.chart.chartArea.height;
const width = tooltip.chart.chartArea.width;
const x = elements[0]?.element.x;
const y = elements[0]?.element.y;
const isAtTop = height > y + tooltip.height;
const isAtEnd = width < x + tooltip.width;
return {
x: elements[0]?.element.x,
y: elements[0]?.element.y,
xAlign: isAtTop ? (isAtEnd ? "right" : "left") : "center",
yAlign: isAtTop ? "center" : "bottom",
};
};
Tools
Biome

[error] 107-107: This aliasing of this is unnecessary.

Arrow functions inherits this from their enclosing scope.
Safe fix: Use this instead of an alias.

(lint/complexity/noUselessThisAlias)

Copy link
Contributor

@alcercu alcercu left a comment

Choose a reason for hiding this comment

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

lgtm

@alcercu alcercu merged commit b81afc4 into feat/cases-by-court-chart Jul 18, 2024
7 of 8 checks passed
@jaybuidl jaybuidl deleted the feat/chart-tooltip-and-line branch October 8, 2024 16:19
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.

None yet

2 participants