-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathContentItemTopicViewModel.cs
76 lines (67 loc) · 4.22 KB
/
ContentItemTopicViewModel.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
70
71
72
73
74
75
76
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
namespace OnTopic.ViewModels {
/*============================================================================================================================
| VIEW MODEL: CONTENT ITEM TOPIC
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides a strongly-typed model for feeding views with information about a <c>ContentItem</c> topic, as used in the <see
/// cref="ContentListTopicViewModel"/> model, and its derivatives.
/// </summary>
/// <remarks>
/// Typically, view models should be created as part of the presentation layer. The <see cref="Models"/> namespace contains
/// default implementations that can be used directly, used as base classes, or overwritten at the presentation level. They
/// are supplied for convenience to model factory default settings for out-of-the-box content types.
/// </remarks>
public record ContentItemTopicViewModel: ItemTopicViewModel {
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Initializes a new <see cref="ContentItemTopicViewModel"/> with an <paramref name="attributes"/> dictionary.
/// </summary>
/// <param name="attributes">An <see cref="AttributeDictionary"/> of attribute values.</param>
public ContentItemTopicViewModel(AttributeDictionary attributes): base(attributes) {
Contract.Requires(attributes, nameof(attributes));
Description = attributes.GetValue(nameof(Description))!;
LearnMoreUrl = attributes.GetUri(nameof(LearnMoreUrl));
ThumbnailImage = attributes.GetUri(nameof(ThumbnailImage));
Category = attributes.GetValue(nameof(Category));
}
/// <summary>
/// Initializes a new <see cref="ContentItemTopicViewModel"/> with no parameters.
/// </summary>
public ContentItemTopicViewModel() { }
/*==========================================================================================================================
| DESCRIPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Gets the description; for Content Items, this is effectively the body.
/// </summary>
public string Description { get; init; } = default!;
/*==========================================================================================================================
| LEARN MORE URL
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Gets an optional URL for additional information that should be linked to.
/// </summary>
public Uri? LearnMoreUrl { get; init; }
/*==========================================================================================================================
| THUMBNAIL IMAGE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Gets an optional path to a thumbnail image that should accompany the content item.
/// </summary>
public Uri? ThumbnailImage { get; init; }
/*==========================================================================================================================
| CATEGORY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Gets the category that the content item should be grouped under.
/// </summary>
public string? Category { get; init; }
} //Class
} //Namespace