-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathRenderingEngineOptionsExtensions.cs
More file actions
313 lines (274 loc) · 14.7 KB
/
Copy pathRenderingEngineOptionsExtensions.cs
File metadata and controls
313 lines (274 loc) · 14.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Sitecore.AspNetCore.SDK.LayoutService.Client.Request;
using Sitecore.AspNetCore.SDK.LayoutService.Client.Response.Model;
using Sitecore.AspNetCore.SDK.RenderingEngine.Configuration;
using Sitecore.AspNetCore.SDK.RenderingEngine.Rendering;
namespace Sitecore.AspNetCore.SDK.RenderingEngine.Extensions;
/// <summary>
/// Extensions to help configure <see cref="RenderingEngineOptions"/>.
/// </summary>
public static class RenderingEngineOptionsExtensions
{
/// <summary>
/// Maps a Sitecore layout component name to a partial view rendering. The view will receive a <see cref="Component"/> model.
/// </summary>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="partialViewPath">The path of the partial view. The file name of the partial view will be the registered Sitecore layout component name.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddPartialView(
this RenderingEngineOptions options,
string partialViewPath)
{
ArgumentNullException.ThrowIfNull(options);
ArgumentNullException.ThrowIfNull(partialViewPath);
string layoutComponentName = ExtractComponentNameFromViewPath(partialViewPath);
return AddPartialView(
options,
layoutComponentName,
partialViewPath);
}
/// <summary>
/// Maps a Sitecore layout component name to a partial view rendering. The view will receive a <see cref="Component"/> model.
/// </summary>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="layoutComponentName">The name of the layout component.</param>
/// <param name="partialViewPath">The path of the partial view.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddPartialView(
this RenderingEngineOptions options,
string layoutComponentName,
string partialViewPath)
{
ArgumentNullException.ThrowIfNull(options);
ArgumentException.ThrowIfNullOrWhiteSpace(layoutComponentName);
ArgumentException.ThrowIfNullOrWhiteSpace(partialViewPath);
return AddPartialView(
options,
name => layoutComponentName.Equals(name, StringComparison.OrdinalIgnoreCase),
partialViewPath,
layoutComponentName);
}
/// <summary>
/// Maps a Sitecore layout component name to a partial view rendering. The view will receive a <see cref="Component"/> model.
/// </summary>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="match">The predicate to use when attempting to match a layout component.</param>
/// <param name="partialViewPath">The path of the partial view.</param>
/// <param name="sitecoreComponentName">The name of the component as defined on the Sitecore Rendering Item.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddPartialView(
this RenderingEngineOptions options,
Predicate<string> match,
string partialViewPath,
string sitecoreComponentName = "")
{
ArgumentNullException.ThrowIfNull(options);
ArgumentNullException.ThrowIfNull(match);
ArgumentException.ThrowIfNullOrWhiteSpace(partialViewPath);
ComponentRendererDescriptor descriptor = PartialViewComponentRenderer.Describe(match, partialViewPath, sitecoreComponentName);
options.RendererRegistry.Add(options.RendererRegistry.Count, descriptor);
return options;
}
/// <summary>
/// Maps any unmatched Sitecore layout component to a default partial view.
/// This provides a visual appearance when the Sitecore layout service returns a component name that no implementation exists for.
/// The view will receive a <see cref="Component"/> model.
/// Ensure this is registered last as this mapping will override any subsequent component registrations.
/// </summary>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="partialViewPath">The path of the partial view.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddDefaultPartialView(
this RenderingEngineOptions options,
string partialViewPath)
{
return AddPartialView(options, _ => true, partialViewPath);
}
/// <summary>
/// Maps a Sitecore layout component name to a view component rendering.
/// </summary>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="viewComponentName">The view component name. This is also used as the layout component registration name.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddViewComponent(
this RenderingEngineOptions options,
string viewComponentName)
{
ArgumentNullException.ThrowIfNull(options);
ArgumentException.ThrowIfNullOrWhiteSpace(viewComponentName);
return AddViewComponent(
options,
viewComponentName,
viewComponentName);
}
/// <summary>
/// Maps a Sitecore layout component name to a view component rendering.
/// </summary>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="layoutComponentName">The name of the layout component.</param>
/// <param name="viewComponentName">The view component name.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddViewComponent(
this RenderingEngineOptions options,
string layoutComponentName,
string viewComponentName)
{
ArgumentNullException.ThrowIfNull(options);
ArgumentException.ThrowIfNullOrWhiteSpace(layoutComponentName);
ArgumentException.ThrowIfNullOrWhiteSpace(viewComponentName);
return AddViewComponent(
options,
name => layoutComponentName.Equals(name, StringComparison.OrdinalIgnoreCase),
viewComponentName);
}
/// <summary>
/// Maps a Sitecore layout component name to a view component rendering.
/// </summary>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="match">A predicate to use when attempting to match a layout component.</param>
/// <param name="viewComponentName">The view component name.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddViewComponent(
this RenderingEngineOptions options,
Predicate<string> match,
string viewComponentName)
{
ArgumentNullException.ThrowIfNull(options);
ArgumentNullException.ThrowIfNull(match);
ArgumentException.ThrowIfNullOrWhiteSpace(viewComponentName);
ComponentRendererDescriptor descriptor = ViewComponentComponentRenderer.Describe(match, viewComponentName, viewComponentName);
options.RendererRegistry.Add(options.RendererRegistry.Count, descriptor);
return options;
}
/// <summary>
/// Maps a Sitecore layout component name to a partial view rendering, using the default Sitecore view component to model bind it.
/// </summary>
/// <typeparam name="TModel">The model type to use for view binding.</typeparam>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="viewName">The view name and layout component name. If the view name is a full path, the view's file name will be the layout component name.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddModelBoundView<TModel>(
this RenderingEngineOptions options,
string viewName)
{
ArgumentNullException.ThrowIfNull(options);
ArgumentException.ThrowIfNullOrWhiteSpace(viewName);
return AddModelBoundView<TModel>(
options,
ExtractComponentNameFromViewPath(viewName),
viewName);
}
/// <summary>
/// Maps a Sitecore layout component name to a partial view rendering, using the default Sitecore view component to model bind it.
/// </summary>
/// <typeparam name="TModel">The model type to use for view binding.</typeparam>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="layoutComponentName">The name of the layout component.</param>
/// <param name="viewName">The view name.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddModelBoundView<TModel>(
this RenderingEngineOptions options,
string layoutComponentName,
string viewName)
{
ArgumentNullException.ThrowIfNull(options);
ArgumentException.ThrowIfNullOrWhiteSpace(layoutComponentName);
ArgumentException.ThrowIfNullOrWhiteSpace(viewName);
return AddModelBoundView<TModel>(
options,
match => match.Equals(layoutComponentName, StringComparison.OrdinalIgnoreCase),
viewName,
layoutComponentName);
}
/// <summary>
/// Maps a Sitecore layout component name to a partial view rendering, using the default Sitecore view component to model bind it.
/// </summary>
/// <typeparam name="TModel">The model type to use for view binding.</typeparam>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="match">A predicate to use when attempting to match a layout component.</param>
/// <param name="viewName">The view name.</param>
/// <param name="sitecoreComponentName">The Component name as defined on the Sitecore Rendering Item.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddModelBoundView<TModel>(
this RenderingEngineOptions options,
Predicate<string> match,
string viewName,
string sitecoreComponentName = "")
{
ArgumentNullException.ThrowIfNull(options);
ArgumentNullException.ThrowIfNull(match);
ArgumentException.ThrowIfNullOrWhiteSpace(viewName);
ComponentRendererDescriptor descriptor = new(
match,
sp => ActivatorUtilities.CreateInstance<ModelBoundViewComponentComponentRenderer<TModel>>(
sp,
RenderingEngineConstants.SitecoreViewComponents.DefaultSitecoreViewComponentName,
viewName),
sitecoreComponentName);
options.RendererRegistry.Add(options.RendererRegistry.Count, descriptor);
return options;
}
/// <summary>
/// Maps a default <see cref="IComponentRenderer"/>.
/// </summary>
/// <typeparam name="T">The <see cref="IComponentRenderer"/> to use for the default renderer.</typeparam>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddDefaultComponentRenderer<T>(
this RenderingEngineOptions options)
where T : IComponentRenderer
{
ArgumentNullException.ThrowIfNull(options);
ComponentRendererDescriptor descriptor = new(_ => true, services => ActivatorUtilities.CreateInstance<T>(services), "defaultComponent");
options.DefaultRenderer = descriptor;
return options;
}
/// <summary>
/// Maps a default <see cref="IComponentRenderer"/>.
/// </summary>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddDefaultComponentRenderer(
this RenderingEngineOptions options)
{
ArgumentNullException.ThrowIfNull(options);
return options.AddDefaultComponentRenderer<LoggingComponentRenderer>();
}
/// <summary>
/// Adds <see cref="SitecoreLayoutRequest"/> mapping action.
/// </summary>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="mapAction">The mapping action to configure <see cref="SitecoreLayoutRequest"/>.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions MapToRequest(this RenderingEngineOptions options, Action<HttpRequest, SitecoreLayoutRequest> mapAction)
{
ArgumentNullException.ThrowIfNull(options);
ArgumentNullException.ThrowIfNull(mapAction);
options.RequestMappings.Add(mapAction);
return options;
}
/// <summary>
/// Adds post rendering action to be executed after Rendering engine logic.
/// </summary>
/// <param name="options">The <see cref="RenderingEngineOptions"/> to configure.</param>
/// <param name="postAction">The action to execute after rendering engine/>.</param>
/// <returns>The <see cref="RenderingEngineOptions"/> so that additional calls can be chained.</returns>
public static RenderingEngineOptions AddPostRenderingAction(this RenderingEngineOptions options, Action<HttpContext> postAction)
{
ArgumentNullException.ThrowIfNull(options);
ArgumentNullException.ThrowIfNull(postAction);
options.PostRenderingActions.Add(postAction);
return options;
}
/// <summary>
/// Extracts the final name of a path that may be full or not to a view.
/// </summary>
/// <example>"Foo" => "Foo", "~/bar/Baz.cshtml" => "Baz".</example>
/// <param name="partialViewPath">The path to the partial view to resolve.</param>
/// <returns>The file name of the partial view.</returns>
private static string ExtractComponentNameFromViewPath(string partialViewPath)
{
return Path.GetFileNameWithoutExtension(partialViewPath);
}
}