forked from vibemafiaclub/argos
-
Notifications
You must be signed in to change notification settings - Fork 0
perf(web): avoid repeated timeline timestamp parsing #592
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
Draft
seonghobae
wants to merge
12
commits into
developmental
Choose a base branch
from
bolt-optimize-timeline-chart-12312213715592720606
base: developmental
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+10
−5
Draft
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
9b0213c
⚡ Bolt: [성능 개선] 타임라인 차트 렌더링 시 중복 Date.parse() 최적화
seonghobae 237f832
⚡ Bolt: [성능 개선] 타임라인 차트 렌더링 시 중복 Date.parse() 최적화
seonghobae e2843da
⚡ Bolt: [성능 개선] 타임라인 차트 렌더링 시 중복 Date.parse() 최적화
seonghobae b2858c3
⚡ Bolt: [성능 개선] 타임라인 차트 렌더링 시 중복 Date.parse() 최적화
seonghobae 2127435
security: remove unrelated scanner suppressions
seonghobae 4ef97ee
style: remove self-evident optimization comments
seonghobae 20062e7
fix: preserve chart output while cleaning comments
seonghobae da5b786
⚡ Bolt: [성능 개선] 타임라인 차트 렌더링 시 중복 Date.parse() 최적화
seonghobae d657c83
style: preserve only non-obvious timeline contracts
seonghobae 15e3136
⚡ Bolt: [성능 개선] 타임라인 차트 렌더링 시 중복 Date.parse() 최적화
seonghobae 05eb87b
style: remove regenerated self-evident optimization comments
seonghobae 0f7c88b
⚡ Bolt: [성능 개선] 타임라인 차트 렌더링 시 중복 Date.parse() 최적화
seonghobae File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| CVE-2026-40345 | ||
| CVE-2026-73088 | ||
| CVE-2026-73089 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀 Performance & Scalability | 🟡 Minor | ⚡ Quick win
🔎 Supported by static analysis
🏁 Script executed:
Repository: ContextualWisdomLab/argos
Length of output: 50382
🏁 Script executed:
Repository: ContextualWisdomLab/argos
Length of output: 3569
formatRelativeTime의 재파싱을 제거하세요.buildChartData는Date.parse(usage.timestamp)결과를 계산하지만,formatRelativeTime(usage.timestamp, sessionStartedAt)가timestamp와sessionStartedAt을 다시new Date(...)로 파싱합니다. 각 항목의 타임스탬프가 중복 파싱되고, 세션 시작 시각도 항목마다 다시 파싱됩니다. 파싱된 숫자 값을 전달하는 경로를 추가하세요.🤖 Prompt for AI Agents