-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Exclude ContentWidgets layer by default in order to increase performance #8750
Closed
gdessimoneinvalle
wants to merge
1
commit into
OrchardCMS:1.10.x
from
INVA-Spa:8749_Performance_issue_opening_widget_admin_page
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -63,6 +63,8 @@ public ActionResult Index(int? layerId, string culture) { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IEnumerable<LayerPart> layers = _widgetsService.GetLayers().OrderBy(x => x.Name).ToList(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!layers.Any()) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Services.Notifier.Error(T("There are no widget layers defined. A layer will need to be added in order to add widgets to any part of the site.")); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return RedirectToAction("AddLayer"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -84,14 +86,27 @@ public ActionResult Index(int? layerId, string culture) { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
string zonePreviewImagePath = string.Format("{0}/{1}/ThemeZonePreview.png", currentTheme.Location, currentTheme.Id); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
string zonePreviewImage = _virtualPathProvider.FileExists(zonePreviewImagePath) ? zonePreviewImagePath : null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
86
to
87
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var widgets = _widgetsService.GetWidgets(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
//Only when "ContentWidgets" layer is explicitly chosen the widgets are listed, not by default (for performance reasons) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IEnumerable<WidgetPart> widgets; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var IdLayerContentWidget = layers.Where(x => x.Name.ToLowerInvariant() == "contentwidgets").Select(x => x.Id).FirstOrDefault(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (IdLayerContentWidget > 0) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
//Ok the layer exists | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var IdsLayers = layers.Where(x => x.Name.ToLowerInvariant() != "contentwidgets").Select(x => x.Id).ToList().ToArray(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (layerId != null && (int)layerId == IdLayerContentWidget) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
//If ContentWidgets is chosen explicitly then IdsLayers is not filtered, note that the editors should be advised that this can take lot of time | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IdsLayers = layers.Select(x => x.Id).ToList().ToArray(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
widgets = _widgetsService.GetWidgets(IdsLayers); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
widgets = _widgetsService.GetWidgets(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+89
to
+103
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Simplified logic with corrected variable naming.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!String.IsNullOrWhiteSpace(culture)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
widgets = widgets.Where(x => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (x.Has<ILocalizableAspect>()) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return String.Equals(x.As<ILocalizableAspect>().Culture, culture, StringComparison.InvariantCultureIgnoreCase); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return false; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}).ToList(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.