Browse Source

CLI: Add warning for Angular theme selection

pull/14092/head
Engincan VESKE 3 years ago
parent
commit
6ec59db4a5
  1. 3
      docs/en/UI/Angular/Theme-Configurations.md
  2. 6
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/TemplateProjectBuilder.cs

3
docs/en/UI/Angular/Theme-Configurations.md

@ -0,0 +1,3 @@
# Angular UI: Theme Configurations
> This document is in draft version.

6
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/TemplateProjectBuilder.cs

@ -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)

Loading…
Cancel
Save