|
| 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 | +} |
0 commit comments