-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTopicViewModelLookupService.cs
69 lines (60 loc) · 3.81 KB
/
TopicViewModelLookupService.cs
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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using System.Reflection;
using OnTopic.Lookup;
namespace OnTopic.ViewModels {
/*============================================================================================================================
| CLASS: TYPE INDEX
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// The <see cref="TopicViewModelLookupService"/> can be configured to provide a lookup of .
/// </summary>
public class TopicViewModelLookupService : StaticTypeLookupService {
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a new instance of a <see cref="DefaultTopicLookupService"/>. Optionally accepts a list of <see
/// cref="Type"/> instances and a default <see cref="Type"/> value.
/// </summary>
/// <remarks>
/// Any <see cref="Type"/> instances submitted via <paramref name="types"/> should be unique by <see
/// cref="MemberInfo.Name"/>; if they are not, they will be removed.
/// </remarks>
/// <param name="types">The list of <see cref="Type"/> instances to expose as part of this service.</param>
public TopicViewModelLookupService(IEnumerable<Type>? types = null) : base(types) {
/*------------------------------------------------------------------------------------------------------------------------
| Ensure local view models are accounted for
\-----------------------------------------------------------------------------------------------------------------------*/
TryAdd(typeof(ContentListTopicViewModel));
TryAdd(typeof(IndexTopicViewModel));
TryAdd(typeof(NavigationTopicViewModel));
TryAdd(typeof(PageGroupTopicViewModel));
TryAdd(typeof(PageTopicViewModel));
TryAdd(typeof(SectionTopicViewModel));
TryAdd(typeof(SlideshowTopicViewModel));
TryAdd(typeof(TopicViewModel));
TryAdd(typeof(VideoTopicViewModel));
/*------------------------------------------------------------------------------------------------------------------------
| Add item types
\-----------------------------------------------------------------------------------------------------------------------*/
TryAdd(typeof(ItemTopicViewModel));
TryAdd(typeof(ContentItemTopicViewModel));
TryAdd(typeof(CacheProfileTopicViewModel));
TryAdd(typeof(LookupListItemTopicViewModel));
TryAdd(typeof(SlideTopicViewModel));
/*------------------------------------------------------------------------------------------------------------------------
| Add obsolete types
>-------------------------------------------------------------------------------------------------------------------------
| These will be removed in the next major version of OnTopic.
\-----------------------------------------------------------------------------------------------------------------------*/
TryAdd(typeof(ListTopicViewModel));
/*------------------------------------------------------------------------------------------------------------------------
| Add support types
\-----------------------------------------------------------------------------------------------------------------------*/
}
} //Class
} //Namespace