-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTopicViewModel.cs
122 lines (107 loc) · 6.64 KB
/
TopicViewModel.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
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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using OnTopic.Mapping.Annotations;
namespace OnTopic.ViewModels {
/*============================================================================================================================
| VIEW MODEL: TOPIC
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides a model for feeding views general information about a <see cref="Topic"/>.
/// </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 TopicViewModel: ITopicViewModel, ICoreTopicViewModel, IAssociatedTopicBindingModel, ITopicBindingModel {
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Initializes a new <see cref="TopicViewModel"/> with an <paramref name="attributes"/> dictionary.
/// </summary>
/// <param name="attributes">An <see cref="AttributeDictionary"/> of attribute values.</param>
public TopicViewModel(AttributeDictionary attributes) {
Contract.Requires(attributes, nameof(attributes));
IsHidden = attributes.GetBoolean("IsHidden")?? IsHidden;
View = attributes.GetValue("View");
}
/// <summary>
/// Initializes a new <see cref="TopicViewModel"/> with no parameters.
/// </summary>
public TopicViewModel() { }
/*==========================================================================================================================
| ID
\-------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc />
public int Id { get; init; }
/*==========================================================================================================================
| KEY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc />
[Required]
public string Key { get; init; } = default!;
/*==========================================================================================================================
| CONTENT TYPE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc />
[Required]
public string ContentType { get; init; } = default!;
/*==========================================================================================================================
| UNIQUE KEY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc />
[Required]
public string UniqueKey { get; init; } = default!;
/*==========================================================================================================================
| WEB PATH
\-------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc />
[Required]
public string WebPath { get; init; } = default!;
/*==========================================================================================================================
| VIEW
\-------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc />
public string? View { get; init; }
/*==========================================================================================================================
| TITLE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc />
[Required]
public string Title { get; init; } = default!;
/*==========================================================================================================================
| IS HIDDEN?
\-------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc/>
[ExcludeFromCodeCoverage]
[Obsolete($"The {nameof(IsHidden)} property is no longer supported by {nameof(TopicViewModel)}.", true)]
[DisableMapping]
public bool IsHidden { get; init; }
/*==========================================================================================================================
| LAST MODIFIED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// The date that the topic was last modified on.
/// </summary>
public DateTime LastModified { get; init; }
/*==========================================================================================================================
| PARENT
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides a reference to the parent <see cref="TopicViewModel"/> in the topic hierarchy.
/// </summary>
/// <remarks>
/// If the current <see cref="TopicViewModel"/> is being mapped as part of another <see cref="TopicViewModel"/>, then the
/// <see cref="Parent"/> property will only be mapped if that association includes a <see cref="IncludeAttribute"/> with a
/// value including <see cref="AssociationTypes.Parents"/>. If it does, all <see cref="Parent"/> topics will be mapped up
/// to the root of the site. No other associations on the <see cref="Parent"/> view models will be mapped, even if they
/// are annotated with a <see cref="IncludeAttribute"/>.
/// </remarks>
[Include(AssociationTypes.Parents)]
public TopicViewModel? Parent { get; init; }
} //Class
} //Namespace