⚡ Optimize DateFormatter creation in ActivityHeatmapView#65
⚡ Optimize DateFormatter creation in ActivityHeatmapView#65debugtheworldbot wants to merge 1 commit intomainfrom
Conversation
- Caches `DateFormatter` for month and tooltip formatting as lazy properties. - Caches `Calendar.current` to avoid repeated calls to the system property. - Caches `weekdaySymbols` to avoid re-generating them on every draw call. - Refactors `recalculateLayout()`, `drawMonthLabels()`, `drawWeekdayLabels()`, and `updateTooltip()` to use these cached properties. Co-authored-by: chatgpt-codex-connector[bot] <199175422+chatgpt-codex-connector[bot]@users.noreply.github.com> Co-authored-by: debugtheworldbot <62830430+debugtheworldbot@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
Summary of ChangesHello @debugtheworldbot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly enhances the performance of the Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request effectively optimizes the ActivityHeatmapView by introducing lazy properties for DateFormatter and Calendar instances. This change prevents repeated, expensive object creation during drawing cycles, which is a common performance bottleneck in AppKit/UIKit applications. The approach aligns well with Apple's performance optimization guidelines and should lead to reduced CPU usage and smoother UI performance.
| private lazy var weekdaySymbols: [String] = { | ||
| let formatter = DateFormatter() | ||
| formatter.locale = Locale.current | ||
| return formatter.shortWeekdaySymbols ?? ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"] | ||
| }() |
There was a problem hiding this comment.
The weekdaySymbols lazy property currently initializes a DateFormatter solely to retrieve shortWeekdaySymbols. While this is lazy, DateFormatter is an expensive object to create. The Calendar object, which is already cached as self.calendar, provides shortWeekdaySymbols directly. Using self.calendar.shortWeekdaySymbols would be more efficient and avoid an unnecessary DateFormatter instantiation.
private lazy var weekdaySymbols: [String] = {
return calendar.shortWeekdaySymbols ?? ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
}()There was a problem hiding this comment.
Good catch! I've simplified weekdaySymbols to use the cached calendar object instead of creating a new DateFormatter instance. I've also pre-calculated the 3-character prefixes and converted them to String once during initialization to avoid redundant work in the draw loop.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 83d63b9994
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| private var gridWidth: CGFloat = 0 | ||
|
|
||
| // MARK: - 缓存 | ||
| private lazy var calendar = Calendar.current |
There was a problem hiding this comment.
Use autoupdating calendar for cached date computations
Caching Calendar.current in a lazy property captures a snapshot of calendar settings at first access, so long-running sessions can render stale weekday alignment after the user changes region/first-weekday or time zone in macOS settings. recalculateLayout() and drawWeekdayLabels() now depend on this cached value, which can misplace cells and labels until restart, whereas the previous code re-read Calendar.current on each call. Use Calendar.autoupdatingCurrent (or refresh the cache on locale/time-zone change notifications) to preserve correct rendering.
Useful? React with 👍 / 👎.
This PR optimizes the
ActivityHeatmapViewby caching expensive objects likeDateFormatterandCalendarthat were previously being created repeatedly during the drawing cycle.💡 What
ActivityHeatmapViewto store:calendar(Calendar.current)monthFormatter(DateFormatter with "MMM" format)weekdaySymbols(Localized weekday strings)tooltipDateFormatter(DateFormatter with medium date style)recalculateLayout(),drawMonthLabels(),drawWeekdayLabels(), andupdateTooltip()to use these cached properties.🎯 Why
DateFormatterandCalendarinstantiation are known to be expensive operations in macOS/iOS. Creating them inside a drawing loop or frequently called UI methods can lead to:📊 Measured Improvement
Direct benchmarks could not be performed as the environment does not provide
swiftorxcodebuild. However, this change follows standard Apple performance optimization guidelines and is a net positive for any AppKit view performing frequent redraws.PR created automatically by Jules for task 13101833943979519934 started by @debugtheworldbot