Skip to content

Commit ffa8e05

Browse files
committed
Add json converter for layoutgroups
1 parent 410f9cd commit ffa8e05

8 files changed

+263
-57
lines changed

Contentful.AspNetCore/Contentful.AspNetCore.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Description>Official .NET SDK for the Contentful Content Delivery and Management API for ASP.NET core.</Description>
44
<PackageId>contentful.aspnetcore</PackageId>
55
<NeutralLanguage>en-US</NeutralLanguage>
6-
<VersionPrefix>7.2.9</VersionPrefix>
6+
<VersionPrefix>7.2.10</VersionPrefix>
77
<TargetFramework>netstandard2.0</TargetFramework>
88
<Authors>Contentful</Authors>
99
<Copyright>Contentful GmbH.</Copyright>
@@ -13,10 +13,10 @@
1313
<PackageProjectUrl>https://github.com/contentful/contentful.net</PackageProjectUrl>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1515
<RepositoryType>git</RepositoryType>
16-
<Version>7.2.9</Version>
17-
<AssemblyVersion>7.2.9.0</AssemblyVersion>
16+
<Version>7.2.10</Version>
17+
<AssemblyVersion>7.2.10.0</AssemblyVersion>
1818
<RepositoryUrl>https://github.com/contentful/contentful.net</RepositoryUrl>
19-
<FileVersion>7.2.9.0</FileVersion>
19+
<FileVersion>7.2.10.0</FileVersion>
2020
</PropertyGroup>
2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
2222
<DocumentationFile>bin\Release\netstandard1.5\Contentful.AspNetCore.xml</DocumentationFile>
@@ -25,7 +25,7 @@
2525
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
2626
</PropertyGroup>
2727
<ItemGroup>
28-
<PackageReference Include="contentful.csharp" Version="7.2.9" />
28+
<PackageReference Include="contentful.csharp" Version="7.2.10" />
2929
<PackageReference Include="gitlink" Version="3.1.0">
3030
<PrivateAssets>all</PrivateAssets>
3131
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>

Contentful.Core.Tests/Contentful.Core.Tests.csproj

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<ItemGroup>
77
<None Remove="JsonFiles\ApiKey.json" />
88
<None Remove="JsonFiles\ApiUsage.json" />
9+
<None Remove="JsonFiles\EditorInterfaceWithMetadata.json" />
910
<None Remove="JsonFiles\EntriesCollectionWithCrossReference.json" />
1011
<None Remove="JsonFiles\EntriesCollectionWithRichTextField.json" />
1112
<None Remove="JsonFiles\EntriesCollectionWithRichTextFieldCalledFields.json" />
@@ -23,6 +24,7 @@
2324
</ItemGroup>
2425
<ItemGroup>
2526
<EmbeddedResource Include="JsonFiles\ApiKey.json" />
27+
<EmbeddedResource Include="JsonFiles\EditorInterfaceWithMetadata.json" />
2628
<EmbeddedResource Include="JsonFiles\EntriesCollectionWithCrossReference.json" />
2729
<EmbeddedResource Include="JsonFiles\EntriesCollectionWithRichTextFieldTable.json" />
2830
<EmbeddedResource Include="JsonFiles\EntriesCollectionWithRichTextFieldCalledFields.json" />

Contentful.Core.Tests/ContentfulManagementClientTests.cs

+16
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,22 @@ public async Task EditorInterfaceShouldDeserializeCorrectly()
195195
Assert.IsType<BooleanEditorInterfaceControlSettings>(res.Controls[4].Settings);
196196
}
197197

198+
[Fact]
199+
public async Task EditorInterfaceShouldDeserializeCorrectlyWithMetadata()
200+
{
201+
//Arrange
202+
_handler.Response = GetResponseFromFile(@"EditorInterfaceWithMetadata.json");
203+
204+
//Act
205+
var res = await _client.GetEditorInterface("someid");
206+
207+
//Assert
208+
Assert.Equal(7, res.Controls.Count);
209+
Assert.Equal(2, res.EditorLayout.Count);
210+
Assert.Equal(2, res.GroupControls.Count);
211+
Assert.IsType<BooleanEditorInterfaceControlSettings>(res.Controls[4].Settings);
212+
}
213+
198214
[Fact]
199215
public async Task CreateSpaceShouldCreateCorrectObject()
200216
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
{
2+
"controls": [
3+
{
4+
"fieldId": "field1",
5+
"widgetId": "singleLine"
6+
},
7+
{
8+
"fieldId": "field2",
9+
"widgetId": "locationEditor"
10+
},
11+
{
12+
"fieldId": "field3",
13+
"widgetId": "markdown"
14+
},
15+
{
16+
"fieldId": "field4",
17+
"widgetId": "assetLinkEditor"
18+
},
19+
{
20+
"fieldId": "field5",
21+
"widgetId": "boolean",
22+
"settings": {
23+
"helpText": "Should the post be featured on the homepage?",
24+
"trueLabel": "absolutely",
25+
"falseLabel": "rather not"
26+
}
27+
},
28+
{
29+
"fieldId": "field6",
30+
"widgetId": "rating",
31+
"settings": {
32+
"helpText": "How many do you likez?",
33+
"stars": "7"
34+
}
35+
},
36+
{
37+
"fieldId": "field7",
38+
"widgetId": "datePicker",
39+
"settings": {
40+
"helpText": "When do we should getz?",
41+
"format": "time",
42+
"ampm": "12"
43+
}
44+
}
45+
],
46+
"editorLayout": [
47+
{
48+
"groupId": "content",
49+
"name": "Content",
50+
"items": [
51+
{ "fieldId": "title" },
52+
{ "fieldId": "body" }
53+
]
54+
},
55+
{
56+
"groupId": "settings",
57+
"name": "Settings",
58+
"items": [
59+
{
60+
"groupId": "seo",
61+
"name": "Seo",
62+
"items": [ { "fieldId": "slug" } ]
63+
}
64+
]
65+
}
66+
],
67+
"groupControls": [
68+
{
69+
"groupId": "content",
70+
"widgetId": "topLevelTab",
71+
"widgetNamespace": "builtin"
72+
},
73+
{
74+
"groupId": "settings",
75+
"widgetId": "topLevelTab",
76+
"widgetNamespace": "builtin"
77+
}
78+
],
79+
"sys": {
80+
"id": "default",
81+
"type": "EditorInterface",
82+
"version": 1,
83+
"createdAt": "2016-11-23T07:37:45.356Z",
84+
"createdBy": {
85+
"sys": {
86+
"type": "Link",
87+
"linkType": "User",
88+
"id": "0w7AzFDgzUA8MWo79R1Qf7"
89+
}
90+
},
91+
"space": {
92+
"sys": {
93+
"type": "Link",
94+
"linkType": "Space",
95+
"id": "gw484zixu8ng"
96+
}
97+
},
98+
"contentType": {
99+
"sys": {
100+
"type": "Link",
101+
"linkType": "ContentType",
102+
"id": "testagain"
103+
}
104+
},
105+
"updatedAt": "2016-11-23T07:37:45.357Z",
106+
"updatedBy": {
107+
"sys": {
108+
"type": "Link",
109+
"linkType": "User",
110+
"id": "0w7AzFDgzUA8MWo79R1Qf7"
111+
}
112+
}
113+
}
114+
}

Contentful.Core/Configuration/EditorInterfaceSettingsJsonConverter.cs

+15-51
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
namespace Contentful.Core.Configuration
1010
{
1111
/// <summary>
12-
/// JsonConverter for converting <see cref="Contentful.Core.Models.Management.EditorInterface"/>.
12+
/// JsonConverter for converting <see cref="Contentful.Core.Models.Management.EditorLayoutGroup"/>.
1313
/// </summary>
14-
public class EditorInterfaceControlJsonConverter : JsonConverter
14+
public class EditorLayoutGroupJsonConverter : JsonConverter
1515
{
1616
/// <summary>
1717
/// Determines whether this instance can convert the specified object type.
1818
/// </summary>
1919
/// <param name="objectType">The type to convert to.</param>
20-
public override bool CanConvert(Type objectType) => objectType == typeof(EditorInterfaceControl);
20+
public override bool CanConvert(Type objectType) => objectType == typeof(EditorLayoutGroup);
2121

2222
/// <summary>
2323
/// Gets a value indicating whether this JsonConverter can write JSON.
@@ -38,60 +38,24 @@ public override object ReadJson(JsonReader reader, Type objectType, object exist
3838
return null;
3939

4040
var jsonObject = JObject.Load(reader);
41-
var settings = new EditorInterfaceControlSettings();
42-
43-
var editorInterfaceControl = new EditorInterfaceControl()
44-
{
45-
FieldId = jsonObject["fieldId"]?.ToString(),
46-
WidgetId = jsonObject["widgetId"]?.ToString()
47-
};
48-
49-
if (jsonObject["settings"] == null)
50-
{
51-
return editorInterfaceControl;
52-
}
53-
54-
if (jsonObject["widgetId"]?.ToString() == "boolean")
55-
{
56-
var boolSettings = new BooleanEditorInterfaceControlSettings()
57-
{
58-
FalseLabel = jsonObject["settings"]?["falseLabel"]?.ToString(),
59-
TrueLabel = jsonObject["settings"]?["trueLabel"]?.ToString()
60-
};
61-
settings = boolSettings;
62-
}
63-
64-
if (jsonObject["widgetId"]?.ToString() == "rating")
41+
var group = new EditorLayoutGroup();
42+
group.GroupId = jsonObject["groupId"].Value<string>();
43+
group.Name = jsonObject["name"].Value<string>();
44+
group.Items = new List<IEditorLayoutGroupItem>();
45+
foreach (var item in jsonObject["items"])
6546
{
66-
var ratingSettings = new RatingEditorInterfaceControlSettings();
67-
68-
var stars = 0;
69-
70-
if (!int.TryParse(jsonObject["settings"]?["stars"]?.ToString(), out stars))
47+
if(item["fieldId"] != null)
7148
{
72-
stars = 5;
49+
group.Items.Add(item.ToObject<EditorLayoutFieldItem>());
7350
}
74-
75-
ratingSettings.NumberOfStars = stars;
76-
77-
settings = ratingSettings;
78-
}
79-
80-
if (jsonObject["widgetId"]?.ToString() == "datePicker")
81-
{
82-
var dateSettings = new DatePickerEditorInterfaceControlSettings()
51+
else
8352
{
84-
ClockFormat = jsonObject["settings"]?["ampm"]?.ToString(),
85-
DateFormat = (EditorInterfaceDateFormat)Enum.Parse(typeof(EditorInterfaceDateFormat), jsonObject["settings"]?["format"]?.ToString(), true)
86-
};
87-
settings = dateSettings;
53+
group.Items.Add(item.ToObject<EditorLayoutGroup>());
54+
}
8855
}
56+
8957

90-
settings.HelpText = jsonObject["settings"]?["helpText"]?.ToString();
91-
92-
editorInterfaceControl.Settings = settings;
93-
94-
return editorInterfaceControl;
58+
return group;
9559
}
9660

9761
/// <summary>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
using Contentful.Core.Models;
2+
using Contentful.Core.Models.Management;
3+
using Newtonsoft.Json;
4+
using Newtonsoft.Json.Linq;
5+
using System;
6+
using System.Collections.Generic;
7+
using System.Text;
8+
9+
namespace Contentful.Core.Configuration
10+
{
11+
/// <summary>
12+
/// JsonConverter for converting <see cref="Contentful.Core.Models.Management.EditorInterface"/>.
13+
/// </summary>
14+
public class EditorInterfaceControlJsonConverter : JsonConverter
15+
{
16+
/// <summary>
17+
/// Determines whether this instance can convert the specified object type.
18+
/// </summary>
19+
/// <param name="objectType">The type to convert to.</param>
20+
public override bool CanConvert(Type objectType) => objectType == typeof(EditorInterfaceControl);
21+
22+
/// <summary>
23+
/// Gets a value indicating whether this JsonConverter can write JSON.
24+
/// </summary>
25+
public override bool CanWrite => false;
26+
27+
/// <summary>
28+
/// Reads the JSON representation of the object.
29+
/// </summary>
30+
/// <param name="reader">The reader to use.</param>
31+
/// <param name="objectType">The object type to serialize into.</param>
32+
/// <param name="existingValue">The current value of the property.</param>
33+
/// <param name="serializer">The serializer to use.</param>
34+
/// <returns>The deserialized <see cref="Asset"/>.</returns>
35+
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
36+
{
37+
if (reader.TokenType == JsonToken.Null)
38+
return null;
39+
40+
var jsonObject = JObject.Load(reader);
41+
var settings = new EditorInterfaceControlSettings();
42+
43+
var editorInterfaceControl = new EditorInterfaceControl()
44+
{
45+
FieldId = jsonObject["fieldId"]?.ToString(),
46+
WidgetId = jsonObject["widgetId"]?.ToString()
47+
};
48+
49+
if (jsonObject["settings"] == null)
50+
{
51+
return editorInterfaceControl;
52+
}
53+
54+
if (jsonObject["widgetId"]?.ToString() == "boolean")
55+
{
56+
var boolSettings = new BooleanEditorInterfaceControlSettings()
57+
{
58+
FalseLabel = jsonObject["settings"]?["falseLabel"]?.ToString(),
59+
TrueLabel = jsonObject["settings"]?["trueLabel"]?.ToString()
60+
};
61+
settings = boolSettings;
62+
}
63+
64+
if (jsonObject["widgetId"]?.ToString() == "rating")
65+
{
66+
var ratingSettings = new RatingEditorInterfaceControlSettings();
67+
68+
var stars = 0;
69+
70+
if (!int.TryParse(jsonObject["settings"]?["stars"]?.ToString(), out stars))
71+
{
72+
stars = 5;
73+
}
74+
75+
ratingSettings.NumberOfStars = stars;
76+
77+
settings = ratingSettings;
78+
}
79+
80+
if (jsonObject["widgetId"]?.ToString() == "datePicker")
81+
{
82+
var dateSettings = new DatePickerEditorInterfaceControlSettings()
83+
{
84+
ClockFormat = jsonObject["settings"]?["ampm"]?.ToString(),
85+
DateFormat = (EditorInterfaceDateFormat)Enum.Parse(typeof(EditorInterfaceDateFormat), jsonObject["settings"]?["format"]?.ToString(), true)
86+
};
87+
settings = dateSettings;
88+
}
89+
90+
settings.HelpText = jsonObject["settings"]?["helpText"]?.ToString();
91+
92+
editorInterfaceControl.Settings = settings;
93+
94+
return editorInterfaceControl;
95+
}
96+
97+
/// <summary>
98+
/// Writes the JSON representation of the object.
99+
/// **NOTE: This method is not implemented and will throw an exception.**
100+
/// </summary>
101+
/// <param name="writer"></param>
102+
/// <param name="value"></param>
103+
/// <param name="serializer"></param>
104+
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
105+
{
106+
throw new NotImplementedException();
107+
}
108+
}
109+
}

Contentful.Core/Contentful.Core.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<PackageId>contentful.csharp</PackageId>
55
<AssemblyTitle>contentful.net</AssemblyTitle>
66
<NeutralLanguage>en-US</NeutralLanguage>
7-
<VersionPrefix>7.2.9</VersionPrefix>
7+
<VersionPrefix>7.2.10</VersionPrefix>
88
<TargetFramework>netstandard2.0</TargetFramework>
99
<Authors>Contentful</Authors>
1010
<Copyright>Contentful GmbH.</Copyright>

0 commit comments

Comments
 (0)