-
Notifications
You must be signed in to change notification settings - Fork 8
feat/light-mode #444
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
base: main
Are you sure you want to change the base?
feat/light-mode #444
Conversation
WalkthroughThis update introduces light mode support across the application by enhancing color theming with new CSS variables, Tailwind configuration, and the Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant App
participant ThemePlugin
participant Component
User->>App: Loads application
App->>ThemePlugin: Detects color scheme (light/dark)
ThemePlugin-->>App: Applies appropriate theme classes/variables
App->>Component: Renders with theme-aware classes (e.g., text-al-primary-foreground)
Component-->>User: Displays UI with correct light/dark styling
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
🧰 Additional context used🧬 Code Graph Analysis (1)libs/blog/articles/feature-comments/src/lib/giscus-comments/giscus-comments.component.ts (1)
🔇 Additional comments (3)
✨ 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 (
|
PR is detected, will deploy to dev environment |
Deployed to dev environment |
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: 6
🧹 Nitpick comments (2)
libs/blog/become-author/feature-become-author-page/src/lib/become-author-page/become-author-page.component.html (2)
34-34
: Consider using theme-aware text color for improved theme compatibilityWhile white text works well on the pink background, if the button background color might change based on theme, consider using a theme-aware text color class.
If the button background remains pink in all themes, this change is fine. Otherwise, consider:
- <p class="text-sm font-bold text-white"> + <p class="text-sm font-bold text-al-pink-foreground">This assumes you have defined appropriate foreground colors for your themed backgrounds.
64-64
: Consider using theme-aware text color for improved theme compatibilitySimilar to the other button, if the background color remains pink in all themes, white text is appropriate. For full theme support, consider a variable-based approach.
If the button background remains pink in all themes, this change is fine. Otherwise, consider using a theme-aware text color that complements the button background.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (2)
apps/blog/src/assets/icons/arrow-down.svg
is excluded by!**/*.svg
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (30)
libs/blog/about-us/feature-about-us/src/lib/feature-about-us/feature-about-us.component.html
(2 hunks)libs/blog/articles/feature-latest-articles/src/lib/feature-latest-articles/feature-latest-articles.component.ts
(0 hunks)libs/blog/articles/ui-article-card/src/lib/components/article-compact-card/article-compact-card.component.html
(1 hunks)libs/blog/articles/ui-article-card/src/lib/components/article-compact-card/article-compact-card.component.ts
(2 hunks)libs/blog/articles/ui-article-card/src/lib/components/article-hero-card/article-hero-card-skeleton.component.ts
(1 hunks)libs/blog/articles/ui-article-card/src/lib/components/article-horizontal-card/article-horizontal-card.component.html
(1 hunks)libs/blog/articles/ui-article-card/src/lib/components/article-regular-card/article-regular-card.component.html
(3 hunks)libs/blog/articles/ui-article-card/src/lib/ui-article-card/ui-article-card.component.html
(1 hunks)libs/blog/articles/ui-article-list-title/src/lib/ui-article-list-title/ui-article-list-title.component.html
(1 hunks)libs/blog/authors/ui-author-card/src/lib/author-card/author-card-template.component.ts
(2 hunks)libs/blog/authors/ui-author-card/src/lib/author-card/author-card.component.html
(1 hunks)libs/blog/become-author/feature-become-author-page/src/lib/become-author-page/become-author-page.component.html
(2 hunks)libs/blog/become-author/feature-become-author-page/src/lib/components/become-author-list-item/become-author-list-item.component.html
(1 hunks)libs/blog/layouts/ui-layouts/src/lib/footer/components/footer-logo.component.ts
(2 hunks)libs/blog/layouts/ui-layouts/src/lib/footer/components/footer-social-media-icons.component.ts
(1 hunks)libs/blog/layouts/ui-layouts/src/lib/footer/footer.component.html
(1 hunks)libs/blog/layouts/ui-layouts/src/lib/footer/footer.component.scss
(1 hunks)libs/blog/layouts/ui-navigation/src/lib/navigation/navigation.component.html
(3 hunks)libs/blog/layouts/ui-navigation/src/lib/navigation/navigation.component.ts
(1 hunks)libs/blog/newsletter/feature-newsletter/src/lib/feature-newsletter/newsletter.component.html
(1 hunks)libs/blog/partners/ui-partners/src/lib/partners-list/partners-list.component.html
(1 hunks)libs/blog/shared/ui-card/src/lib/card.component.ts
(2 hunks)libs/blog/shared/ui-card/src/lib/card.stories.ts
(1 hunks)libs/blog/shared/ui-difficulty/src/lib/ui-difficulty.component.ts
(3 hunks)libs/blog/shared/ui-pill/src/lib/pill.directive.ts
(1 hunks)libs/blog/shared/ui-social-media-icons/src/lib/social-media-icons.component.html
(1 hunks)libs/blog/writing-rules/feature-writing-rules/src/lib/rules-row/rules-row.component.html
(2 hunks)libs/shared/assets/src/lib/styles/main.scss
(1 hunks)package.json
(1 hunks)tailwind.preset.js
(2 hunks)
💤 Files with no reviewable changes (1)
- libs/blog/articles/feature-latest-articles/src/lib/feature-latest-articles/feature-latest-articles.component.ts
🧰 Additional context used
🧬 Code Graph Analysis (1)
libs/blog/articles/ui-article-card/src/lib/components/article-compact-card/article-compact-card.component.ts (1)
libs/blog/shared/types/src/lib/article-card.ts (1)
ArticleCard
(1-13)
🔇 Additional comments (48)
package.json (1)
67-67
: Verify plugin version compatibility
The plugin is added as a beta release; please confirm that2.0.0-beta.0
oftailwindcss-theme-variants
is compatible with Tailwind CSS^3.3.6
and appropriate for production use.libs/blog/shared/ui-card/src/lib/card.stories.ts (1)
61-61
: Demonstration of transparent background variant
This story correctly showcases the transparent background use case by applyingbg-transparent
to the<al-card>
element.libs/blog/newsletter/feature-newsletter/src/lib/feature-newsletter/newsletter.component.html (1)
8-8
: Consistent use of primary-foreground token
Applyingtext-al-primary-foreground
ensures that the heading color adapts to theme variants and remains consistent across light/dark modes.libs/blog/articles/ui-article-card/src/lib/components/article-hero-card/article-hero-card-skeleton.component.ts (1)
10-10
: Consistent transparent background
Addingbg-transparent
aligns the skeleton card with the new light-mode theming, ensuring the skeleton blends correctly across themes.libs/blog/articles/ui-article-card/src/lib/components/article-horizontal-card/article-horizontal-card.component.html (1)
3-3
: Verify removal of fixed height
Removingmax-h-52
in favor of theme-based styling could affect the card's vertical sizing. Please verify that the card height remains consistent and does not overflow its container across breakpoints.libs/blog/authors/ui-author-card/src/lib/author-card/author-card.component.html (1)
45-45
: Apply theme-aware text color
Addingtext-al-foreground
ensures the author name responds to light/dark mode variants and aligns with the new theming tokens. Looks good.libs/blog/partners/ui-partners/src/lib/partners-list/partners-list.component.html (1)
6-6
: Verify dark mode background color
Withbg-white
still applied, this element may not adapt its background in dark mode. Please confirm thatbg-white
is intended, or consider using a theme-variant class (e.g.,dark:bg-al-card
) so the background aligns with dark theme.libs/blog/articles/ui-article-list-title/src/lib/ui-article-list-title/ui-article-list-title.component.html (1)
4-4
: Standardize primary heading color
Addingtext-al-primary-foreground
ensures the title adheres to the new primary text color token and is consistent with other headings across the app.libs/blog/articles/ui-article-card/src/lib/ui-article-card/ui-article-card.component.html (1)
15-18
: LGTM! Improved consistency across card variantsAdding the
imagePriority
input to the compact card variant brings consistency with the other card types and enables image loading optimization.libs/blog/writing-rules/feature-writing-rules/src/lib/rules-row/rules-row.component.html (2)
14-14
: Good addition of explicit text colorAdding the
text-white
class ensures the step numbers maintain proper contrast with the pink background in both light and dark modes.
49-49
: Proper contrast for button textThe addition of
text-white
ensures the button text has adequate contrast against the pink background regardless of theme, supporting accessibility.libs/blog/about-us/feature-about-us/src/lib/feature-about-us/feature-about-us.component.html (3)
2-2
: Good use of semantic color tokenUsing
text-al-primary-foreground
for the title enables proper theme adaptation instead of a hard-coded color value.
6-6
: Appropriate background setting for theme supportSetting the card to
bg-transparent
allows it to properly inherit background colors when switching between light and dark themes.
38-38
: Consistent use of semantic color tokenUsing
text-al-primary-foreground
for the authors title maintains styling consistency with the main title and supports theme adaptation.libs/blog/layouts/ui-navigation/src/lib/navigation/navigation.component.html (3)
9-9
: Improved layout with centered navigationAdding
justify-center
improves the horizontal navigation layout by properly centering the navigation items.
24-25
: Good implementation of theme-aware text stylingReplacing static text color with conditional styling
[ngClass]="whiteFont() ? 'text-white' : 'text-al-foreground'"
enables proper text color adaptation based on context and theme.Make sure the
whiteFont()
input property is properly implemented in the component TypeScript file and documented for consumers of this component.
37-38
: Consistent styling for external linksThe same conditional text styling is correctly applied to external links, maintaining styling consistency across all navigation items.
libs/blog/layouts/ui-layouts/src/lib/footer/components/footer-logo.component.ts (1)
2-2
: Good component simplificationRemoving the unused
input
import and thecurrentYear
property simplifies the component appropriately. This cleanup removes unnecessary functionality while maintaining the component's core purpose.Ensure that any components using
<al-footer-logo>
no longer pass thecurrentYear
input property, as it has been removed.Also applies to: 23-23
libs/blog/become-author/feature-become-author-page/src/lib/components/become-author-list-item/become-author-list-item.component.html (3)
3-5
: Consistent trailing comma in[ngClass]
object literal
The trailing comma after the single entry is valid and aligns with our formatting conventions for multiline object literals.
11-11
: Explicittext-white
class applied for contrast
Addingtext-white
ensures the index label remains legible against the pink background.
15-15
: Use oftext-al-pink
token for the tick icon
Thetext-al-pink
token aligns with our design system’s color palette.libs/blog/layouts/ui-layouts/src/lib/footer/footer.component.html (1)
5-6
: Footer logo and navigation setup looks good
Explicitly centering the logo and passingwhiteFont="true"
to<al-navigation>
ensures consistent styling.libs/blog/layouts/ui-layouts/src/lib/footer/footer.component.scss (2)
15-17
: Updated default grid-template-areas
The new two-row layout ('logo social'
/'nav nav'
) is clear and concise for smaller viewports.
19-23
: Verify breakpoint rename from@screen xl
to@screen lg
Dropping the MD breakpoint and shifting the XL layout to LG may alter mid-size layouts. Please confirm that the updated breakpoints align with the design mockups and QA in all viewport widths.libs/shared/assets/src/lib/styles/main.scss (2)
11-17
: New CSS variables for theming added
Introducing--primary-foreground
and--grey
completes the palette for both light and dark modes. This aligns with the Tailwind configuration’s new tokens.
19-29
: Light-mode media query block implemented
Theprefers-color-scheme: light
override correctly defines lighter values for all variables, enabling automatic theme switching.libs/blog/shared/ui-card/src/lib/card.component.ts (2)
71-73
: GradientCardDirective classes updated for theme variants
Switching to'bg-al-radial-gradient dark:bg-al-background'
removes the border and adds a dark-mode fallback—this matches our updated theming strategy.
99-101
: Ensure component and directivehostClasses
merge correctly
BothCardComponent
and a consumer ofalGradientCard
bind to theclass
attribute. Please verify in the rendered DOM that classes from both the component and the directive are applied and not overridden.libs/blog/authors/ui-author-card/src/lib/author-card/author-card-template.component.ts (3)
11-11
: Great conversion to standalone component!This conversion to a standalone component aligns with modern Angular best practices and improves the component's modularity.
23-24
: Properly implemented light/dark mode stylingThe
alGradientCard
directive and conditional dark/light mode classes are correctly applied, ensuring consistent styling that adapts to the theme. The background styling appropriately uses different colors for each theme variant.
27-28
: LGTM: Content styling with directiveAdding the
alCardContent
directive to the inner content maintains styling consistency with other card components in the application.libs/blog/articles/ui-article-card/src/lib/components/article-compact-card/article-compact-card.component.html (3)
3-3
: Improved positioning and container stylingThe addition of
relative
,overflow-hidden
, andbg-black
classes properly prepares the container for the new image layering approach.
6-13
: Great improvement using proper image elementsReplacing CSS background with an actual
<img>
element is a significant improvement that:
- Enhances accessibility with proper alt text
- Enables image optimization through NgOptimizedImage
- Provides better loading control with the priority attribute
- Makes explicit width/height handling possible
The absolute positioning with opacity control creates a nice background effect while maintaining content readability.
14-14
: Proper text color handlingThe explicit text color setting ensures good contrast over the background image in all scenarios.
libs/blog/articles/ui-article-card/src/lib/components/article-compact-card/article-compact-card.component.ts (2)
1-1
: Well-implemented standalone component conversionThe component has been properly converted to standalone with all necessary imports. Including NgOptimizedImage enables better image loading performance and optimization.
Also applies to: 13-20
25-25
: Good addition of image priority controlThe new
imagePriority
input property allows control over image loading priority, which is important for performance optimization and core web vitals. This aligns with the template changes using this property.libs/blog/articles/ui-article-card/src/lib/components/article-regular-card/article-regular-card.component.html (5)
3-3
: Improved border styling for theme consistencyThe border styling now properly handles light and dark mode variations, maintaining visual separation in light mode while using transparent borders in dark mode.
21-25
: Enhanced avatar component with priority loadingAdding the
[priority]
binding to the avatar component improves loading performance for this important UI element.
26-28
: Proper text color styling for author nameThe explicit text color class ensures consistent styling across light and dark modes.
41-47
: Improved heading styling with proper color and text propertiesThe heading now uses explicit color, font weight, and style classes, ensuring consistent appearance across theme modes.
48-50
: Consistent paragraph styling with theme-aware colorsThe paragraph styling now properly uses theme-specific colors with appropriate font styling.
tailwind.preset.js (4)
1-5
: Excellent addition of theme variant supportGood job introducing the
tailwindcss-theme-variants
plugin which enables media query-based theme switching. This is a more modern approach than the class-based dark mode.
13-14
: New color tokens look goodThe addition of 'al-primary-foreground' and 'al-grey' tokens will help maintain consistent theming across light and dark modes.
Also applies to: 22-22
35-35
: Box shadow color change looks intentionalChanging from
--border
to--grey
for theal-full-border
shadow matches the new theming approach. Just ensure this change doesn't unexpectedly affect existing components.
39-51
: Well-structured theme configurationThe plugin configuration properly sets up light and dark themes using media queries. This approach allows the UI to automatically adapt to the user's system preferences.
libs/blog/shared/ui-difficulty/src/lib/ui-difficulty.component.ts (3)
28-30
: Good adaptation for light/dark mode in left blockThe conditional class application correctly handles both light and dark modes based on the
isColorBackground()
condition:
- Using
dark:bg-al-background bg-transparent
for colored backgrounds- Using
bg-al-grey
for non-colored backgroundsThis approach maintains visual consistency across themes.
47-50
: Well-implemented shadow handling for different themesThe shadow classes are properly updated for the dot container:
dark:shadow-al-full-background shadow-transparent
for colored backgroundsshadow-al-full-border
for non-colored backgroundsThis ensures proper visual representation in both light and dark modes.
80-82
: Consistent styling in right blockThe right block styling matches the left block's implementation, maintaining design consistency throughout the component. The code cleanly handles both light and dark themes.
@@ -9,7 +9,7 @@ import { SocialMediaIconsComponent } from '@angular-love/blog/shared/ui-social-m | |||
<div class="flex flex-col items-start"> | |||
<h3 | |||
id="social-media-title" | |||
class="mb-4 hidden text-sm font-bold lg:block" | |||
class="mb-4 hidden text-sm font-bold text-[#fff] lg:block" |
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.
Use design token instead of hardcoded hex
To support dynamic theming and maintain consistency with other components, replace the literal hex color with the text-al-primary-foreground
token:
- class="mb-4 hidden text-sm font-bold text-[#fff] lg:block"
+ class="mb-4 hidden text-sm font-bold text-al-primary-foreground lg:block"
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
class="mb-4 hidden text-sm font-bold text-[#fff] lg:block" | |
class="mb-4 hidden text-sm font-bold text-al-primary-foreground lg:block" |
@@ -9,7 +9,7 @@ const pillVariants = cva( | |||
{ | |||
variants: { | |||
variant: <Record<AlPillVariant, string>>{ | |||
flat: 'bg-al-primary/90', | |||
flat: 'bg-al-primary/90 text-white', |
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.
🛠️ Refactor suggestion
Use design token for pill text color
For theme variant compatibility, replace text-white
with the text-al-primary-foreground
token in the flat
variant:
- flat: 'bg-al-primary/90 text-white',
+ flat: 'bg-al-primary/90 text-al-primary-foreground',
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
flat: 'bg-al-primary/90 text-white', | |
flat: 'bg-al-primary/90 text-al-primary-foreground', |
<al-social-media-icon-item | ||
class="text-[#fff]" | ||
[socialMediaConfig]="social" | ||
/> |
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.
🛠️ Refactor suggestion
Replace hardcoded color with theme-aware class for light mode compatibility
Using a hardcoded white color (text-[#fff]
) will make the icons difficult to see in light mode. Since this PR is adding light mode support, consider using a theme-aware class that changes based on the current theme.
Replace the hardcoded white color with a theme-aware class:
<al-social-media-icon-item
- class="text-[#fff]"
+ class="text-al-primary-foreground"
[socialMediaConfig]="social"
/>
This way, the icons will automatically adapt to the current theme (white in dark mode, dark in light mode).
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
<al-social-media-icon-item | |
class="text-[#fff]" | |
[socialMediaConfig]="social" | |
/> | |
<al-social-media-icon-item | |
class="text-al-primary-foreground" | |
[socialMediaConfig]="social" | |
/> |
@@ -32,6 +32,7 @@ export type NavItem = { | |||
}) | |||
export class NavigationComponent { | |||
readonly layout = input<'vertical' | 'horizontal'>('horizontal'); | |||
readonly whiteFont = input<boolean>(false); |
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.
🛠️ Refactor suggestion
Consider a more flexible theming approach instead of a boolean flag
While adding a whiteFont
input provides basic text color control, a more comprehensive theming approach would better support light mode implementation.
Consider using a theme enum or string input that supports multiple theme options:
- readonly whiteFont = input<boolean>(false);
+ readonly textTheme = input<'default' | 'light' | 'dark' | 'contrast'>('default');
Then in the template, you could apply different classes based on the selected theme:
[ngClass]="{
'text-white': textTheme() === 'light',
'text-al-foreground': textTheme() === 'default',
'text-al-primary': textTheme() === 'dark',
'text-al-contrast': textTheme() === 'contrast'
}"
This approach would be more maintainable as you add more theme variants beyond just light mode.
<small class="block pb-4 text-center text-xs text-[#6a798b]"> | ||
Copyright © {{ currentYear }} | ||
</small> |
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.
🛠️ Refactor suggestion
Hardcoded text color for copyright; use token
The inline text-[#6a798b]
will not adjust for light mode. Swap in the design token (e.g., text-al-grey
).
- <small class="block pb-4 text-center text-xs text-[#6a798b]">
+ <small class="block pb-4 text-center text-xs text-al-grey">
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
<small class="block pb-4 text-center text-xs text-[#6a798b]"> | |
Copyright © {{ currentYear }} | |
</small> | |
<small class="block pb-4 text-center text-xs text-al-grey"> | |
Copyright © {{ currentYear }} | |
</small> |
@@ -1,17 +1,16 @@ | |||
<footer class="bg-al-card w-full"> | |||
<footer class="w-full bg-[#191a22]"> |
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.
Hardcoded background color blocks theming
Using bg-[#191a22]
ties the footer to one static color and prevents automatic switching in light mode. Replace this with a theme-aware token (e.g., bg-al-background
).
-<footer class="w-full bg-[#191a22]">
+<footer class="w-full bg-al-background">
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
<footer class="w-full bg-[#191a22]"> | |
<footer class="w-full bg-al-background"> |
PR is detected, will deploy to dev environment |
Deployed to dev environment |
PR is detected, will deploy to dev environment |
Deployed to dev environment |
PR is detected, will deploy to dev environment |
Deployed to dev environment |
PR is detected, will deploy to dev environment |
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: 1
🧹 Nitpick comments (1)
libs/blog/app-theme/data-access-app-theme/src/app-theme.store.ts (1)
42-42
: Consider addressing the architectural TODO.The TODO comment highlights a valid architectural concern about decoupling the store from
CCAppThemeConsumer
. Consider creating an interface to improve testability and modularity.Would you like me to help design an interface to decouple the theme store from the consumer implementation?
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (2)
apps/blog/src/assets/icons/moon.svg
is excluded by!**/*.svg
apps/blog/src/assets/icons/sun.svg
is excluded by!**/*.svg
📒 Files selected for processing (5)
libs/blog/app-theme/data-access-app-theme/src/app-theme.store.ts
(3 hunks)libs/blog/layouts/ui-layouts/src/lib/header/header.component.ts
(3 hunks)libs/blog/shared/ui-icon/src/lib/icon/icon.component.ts
(1 hunks)libs/blog/shell/feature-shell-web/src/lib/root-shell.component.ts
(4 hunks)libs/shared/assets/src/lib/styles/main.scss
(2 hunks)
✅ Files skipped from review due to trivial changes (1)
- libs/blog/shared/ui-icon/src/lib/icon/icon.component.ts
🚧 Files skipped from review as they are similar to previous changes (1)
- libs/shared/assets/src/lib/styles/main.scss
🧰 Additional context used
🧬 Code Graph Analysis (1)
libs/blog/shell/feature-shell-web/src/lib/root-shell.component.ts (1)
libs/blog/app-theme/data-access-app-theme/src/app-theme.store.ts (1)
AppThemeStore
(11-34)
🔇 Additional comments (11)
libs/blog/app-theme/data-access-app-theme/src/app-theme.store.ts (4)
3-3
: Good addition of patchState import.The import of
patchState
is necessary for properly updating the signal store state in the new methods.
5-5
: Good export of Theme type for reusability.Exporting the
Theme
type allows other components to import and use the same type definition, promoting type consistency across the application.
27-31
: Excellent implementation of theme toggle functionality.The
toggleTheme
method correctly:
- Toggles between 'dark' and 'light' themes
- Updates the DOM attribute via the consumer
- Patches the store state with the new theme
The logic is clean and follows the signal store pattern properly.
45-47
: Improvement: Using data attributes instead of CSS classes.The change from
setThemeClass
tosetThemeAttribute
is a good architectural improvement. Usingdata-theme
attributes instead of CSS classes provides better separation of concerns and is more semantic for theme management.libs/blog/shell/feature-shell-web/src/lib/root-shell.component.ts (3)
79-81
: Clean integration of theme store.The injection of
AppThemeStore
and creation of a computedtheme
signal provides reactive theme state to the template. This follows Angular best practices for signal-based state management.
31-33
: Proper template integration for theme management.The template correctly:
- Passes the reactive
theme()
signal to the header component- Handles the
themeToggle
event to trigger theme switchingThis creates a clean data flow from store → shell → header.
104-106
: Simple and effective theme toggle handler.The
onThemeToggle
method correctly delegates to the store'stoggleTheme
method, maintaining separation of concerns between UI events and state management.libs/blog/layouts/ui-layouts/src/lib/header/header.component.ts (4)
83-83
: Well-typed theme input.The
theme
input is properly typed as'light' | 'dark'
and marked as required, ensuring type safety and preventing undefined theme states.
87-87
: Clean event-driven architecture.The
themeToggle
output event follows Angular patterns for component communication, allowing the parent component to handle theme changes appropriately.
91-93
: Intuitive icon selection logic.The
themeSwitchIcon
computed property correctly shows:
- Moon icon in light mode (to indicate switching to dark)
- Sun icon in dark mode (to indicate switching to light)
This provides clear visual indication of the toggle action.
41-52
: Excellent accessibility and styling for theme toggle.The theme toggle button implementation includes:
- Proper
aria-label
for screen readers- Clean styling with transparent background
- Proper click event handling
- Test ID for automated testing (once typo is fixed)
- Semantic use of SVG icons
This provides a great user experience for theme switching.
aria-label="Toggle theme" | ||
class="flex items-center bg-transparent p-1" | ||
(click)="themeToggle.emit()" | ||
date-testid="header-theme-switch" |
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.
Fix typo in data attribute.
There's a typo in the test ID attribute.
Apply this diff to fix the typo:
- date-testid="header-theme-switch"
+ data-testid="header-theme-switch"
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
date-testid="header-theme-switch" | |
data-testid="header-theme-switch" |
🤖 Prompt for AI Agents
In libs/blog/layouts/ui-layouts/src/lib/header/header.component.ts at line 45,
there is a typo in the data attribute "date-testid". Change "date-testid" to the
correct attribute "data-testid" to fix the typo.
Deployed to dev environment |
PR is detected, will deploy to dev environment |
Deployed to dev environment |
PR is detected, will deploy to dev environment |
Deployed to dev environment |
Readded light-mode branch in order to have the possibility to test it out.
Summary by CodeRabbit
New Features
Enhancements
Bug Fixes
Chores