-
-
Notifications
You must be signed in to change notification settings - Fork 70
feat(lang-service): support track virtual code generation #284
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
Conversation
✅ Deploy Preview for vue-vine ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Caution Review failedThe pull request is closed. WalkthroughA tracking system was introduced across the language server and VSCode extension packages. New modules for tracking were added, existing code was refactored to use a shared Changes
Sequence Diagram(s)sequenceDiagram
participant VSCodeExt as VSCode Extension
participant Track as Track (language-service)
participant LangServer as Language Server
participant Umami as Umami Analytics
VSCodeExt->>Track: useDataTrack(envInfo, outputChannel)
Track-->>VSCodeExt: Track instance
VSCodeExt->>LangServer: Start with envInfo (including tracking config)
LangServer->>track: Initialize with env vars
LangServer->>Track: trackEvent('virtual_code_created')
Track->>Umami: Send event with metadata
Umami-->>Track: Acknowledge/response
Track-->>LangServer: Log tracking result
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (9)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. 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 using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
@vue-vine/compiler
create-vue-vine
@vue-vine/eslint-config
@vue-vine/eslint-parser
@vue-vine/eslint-plugin
@vue-vine/language-server
@vue-vine/language-service
@vue-vine/nuxt
vue-vine-tsc
@vue-vine/vite-plugin
vue-vine
commit: |
Description
We add one more event for track, since
extension_activated
is too general and actually the extension is activated when opening any TS file.Summary by CodeRabbit