-
Notifications
You must be signed in to change notification settings - Fork 55
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
TemplateContext debugDescription: fallback to action type name #398
Conversation
WalkthroughThe changes introduce a new method Changes
Poem
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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 (
|
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.
Actionable comments posted: 0
🧹 Nitpick comments (1)
CleverTapSDK/InApps/CustomTemplates/CTTemplateContext.m (1)
264-273
: Add input validation and documentation for the new method.The method implementation looks good, but could benefit from:
- Input validation for nil action parameter
- Documentation explaining the method's purpose and fallback behavior
Consider adding validation and documentation:
+/** + * Returns the name for the given notification action. + * @param action The notification action (must not be nil) + * @return The action name, falling back to action type if template name is not available, + * or empty string if both are unavailable + */ - (NSString *)actionName:(CTNotificationAction *)action { + if (!action) { + CleverTapLogStaticDebug(@"%@: Cannot get action name for nil action", [self class]); + return @""; + } NSString *name = action.customTemplateInAppData.templateName; if (!name) { name = [CTInAppUtils inAppActionTypeString:action.type]; } if (!name) { name = @""; } return name; }
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
CleverTapSDK/InApps/CustomTemplates/CTTemplateContext.m
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: build
🔇 Additional comments (1)
CleverTapSDK/InApps/CustomTemplates/CTTemplateContext.m (1)
281-281
: LGTM! Good refactoring to use the centralized method.The change improves code consistency by using the new
actionName:
method instead of directly accessing the template name.
Base branch should be develop |
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.
LGTM
Summary by CodeRabbit
New Features
Refactor