Browse Source
Merge pull request #14092 from abpframework/EngincanV/cli-theme-warning
CLI: Add warning for Angular theme selection
pull/14093/head
Alper Ebiçoğlu
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
9 additions and
0 deletions
-
docs/en/UI/Angular/Theme-Configurations.md
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/TemplateProjectBuilder.cs
|
|
|
@ -0,0 +1,3 @@ |
|
|
|
# Angular UI: Theme Configurations |
|
|
|
|
|
|
|
> This document is in draft version. |
|
|
|
@ -235,6 +235,12 @@ public class TemplateProjectBuilder : IProjectBuilder, ITransientDependency |
|
|
|
if (args.Theme.HasValue) |
|
|
|
{ |
|
|
|
Logger.LogInformation("Theme: " + args.Theme); |
|
|
|
|
|
|
|
if (args.UiFramework == UiFramework.Angular && (args.Theme != AppTemplate.DefaultTheme || args.Theme != AppProTemplate.DefaultTheme)) |
|
|
|
{ |
|
|
|
Logger.LogWarning("You may need to make some additional changes for this theme. " + |
|
|
|
"See the documentation for more information: https://docs.abp.io/en/abp/latest/UI/Angular/Theme-Configurations"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if(args.ThemeStyle.HasValue) |
|
|
|
|