44 lines
1.4 KiB
C#
44 lines
1.4 KiB
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Umbraco.Core.Models.Blocks
|
|
{
|
|
|
|
/// <summary>
|
|
/// Converts the block json data into objects
|
|
/// </summary>
|
|
public abstract class BlockEditorDataConverter
|
|
{
|
|
private readonly string _propertyEditorAlias;
|
|
|
|
protected BlockEditorDataConverter(string propertyEditorAlias)
|
|
{
|
|
_propertyEditorAlias = propertyEditorAlias;
|
|
}
|
|
|
|
public BlockEditorData Deserialize(string json)
|
|
{
|
|
var value = JsonConvert.DeserializeObject<BlockValue>(json);
|
|
|
|
if (value.Layout == null)
|
|
return BlockEditorData.Empty;
|
|
|
|
var references = value.Layout.TryGetValue(_propertyEditorAlias, out var layout)
|
|
? GetBlockReferences(layout)
|
|
: Enumerable.Empty<ContentAndSettingsReference>();
|
|
|
|
return new BlockEditorData(_propertyEditorAlias, references, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Return the collection of <see cref="IBlockReference"/> from the block editor's Layout (which could be an array or an object depending on the editor)
|
|
/// </summary>
|
|
/// <param name="jsonLayout"></param>
|
|
/// <returns></returns>
|
|
protected abstract IEnumerable<ContentAndSettingsReference> GetBlockReferences(JToken jsonLayout);
|
|
|
|
}
|
|
}
|