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 #121

Merged
merged 2 commits into from
May 23, 2024
Merged

Fix #121

merged 2 commits into from
May 23, 2024

Conversation

confxsd
Copy link
Contributor

@confxsd confxsd commented May 23, 2024

Summary by CodeRabbit

  • New Features

    • Introduced event tracking for user actions such as item addition, chat start, index creation, and wallet connection using Plausible analytics.
  • Enhancements

    • Updated LinkInput component to improve popover handling and added a close button.
    • Improved layout behavior by removing overflow: "hidden" from the TabContainer component.
  • Tracking Enhancements

    • Added tracking for:
      • Item starred
      • Item added
      • Chat started with discovery type
      • Index created
      • Wallet connected

Copy link

coderabbitai bot commented May 23, 2024

Walkthrough

The recent updates to the web-app introduce event tracking using the plausible-tracker library. Various components now track specific user actions like item addition, chat initiation, and wallet connection. Additionally, the LinkInput component's popover behavior has been refined, and minor style adjustments have been made to the TabContainer component.

Changes

File Path Summary
web-app/package.json Added plausible-tracker dependency version 0.3.8.
web-app/src/components/sections/IndexConversation/IndexConversationHeader.tsx Added trackEvent(ITEM_STARRED) call.
web-app/src/components/sections/IndexConversation/TabContainer/IndexItemsTab.tsx Added trackEvent(ITEM_ADDED) call.
web-app/src/components/sections/IndexConversation/TabContainer/index.tsx Removed overflow: "hidden" style property.
web-app/src/components/site/indexes/AskIndexes/index.tsx Added trackEvent(CHAT_STARTED) with discoveryType tracking.
web-app/src/components/site/input/LinkInput/index.tsx Updated Popover component to handle close events, adjusted styles, and modified showPopover state behavior.
web-app/src/context/AppContext.tsx Added trackEvent(INDEX_CREATED) call.
web-app/src/context/AuthContext.tsx Added trackEvent(WALLET_CONNECTED) call.
web-app/src/services/tracker.ts Introduced event tracking functionality with Plausible analytics.

In the code where rabbits play,
Events are tracked in a new way.
With Plausible's help, we see the light,
When users click and wallets unite.
Popovers now close with a gentle touch,
Our app evolves, thank you so much!
🐇✨


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.

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 a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @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.

@confxsd confxsd merged commit 7d6bc3f into dev May 23, 2024
Copy link

@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

Review Details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits Files that changed from the base of the PR and between a9d1bee and e28411d.
Files ignored due to path filters (2)
  • web-app/public/images/ic_close.svg is excluded by !**/*.svg
  • web-app/yarn.lock is excluded by !**/*.lock
Files selected for processing (9)
  • web-app/package.json (1 hunks)
  • web-app/src/components/sections/IndexConversation/IndexConversationHeader.tsx (2 hunks)
  • web-app/src/components/sections/IndexConversation/TabContainer/IndexItemsTab.tsx (3 hunks)
  • web-app/src/components/sections/IndexConversation/TabContainer/index.tsx (1 hunks)
  • web-app/src/components/site/indexes/AskIndexes/index.tsx (3 hunks)
  • web-app/src/components/site/input/LinkInput/index.tsx (6 hunks)
  • web-app/src/context/AppContext.tsx (2 hunks)
  • web-app/src/context/AuthContext.tsx (2 hunks)
  • web-app/src/services/tracker.ts (1 hunks)
Files skipped from review due to trivial changes (3)
  • web-app/package.json
  • web-app/src/components/sections/IndexConversation/TabContainer/index.tsx
  • web-app/src/services/tracker.ts
Additional comments not posted (7)
web-app/src/context/AuthContext.tsx (1)

3-3: Import of trackEvent and WALLET_CONNECTED used appropriately to enhance event tracking when a wallet is connected.

web-app/src/components/site/input/LinkInput/index.tsx (2)

Line range hint 22-79: Enhancements to the Popover component, including an onClose prop and a close button, improve usability and interactivity.


137-137: Setting the default state of showPopover to true enhances feature discoverability. Verify its impact on user experience to ensure it's not intrusive.

web-app/src/components/sections/IndexConversation/TabContainer/IndexItemsTab.tsx (1)

10-10: Import of trackEvent and ITEM_ADDED used appropriately to enhance event tracking when an item is added.

Also applies to: 130-130

web-app/src/components/sections/IndexConversation/IndexConversationHeader.tsx (1)

6-6: Import of trackEvent and ITEM_STARRED used appropriately to enhance event tracking when an item is starred.

Also applies to: 87-87

web-app/src/components/site/indexes/AskIndexes/index.tsx (1)

5-5: Import of trackEvent and CHAT_STARTED used appropriately to enhance event tracking when a chat starts.

Also applies to: 261-263

web-app/src/context/AppContext.tsx (1)

21-21: Import of trackEvent and INDEX_CREATED used appropriately to enhance event tracking when an index is created.

Also applies to: 249-249

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.

1 participant