Example #1
0
    public IPublishedElement?ConvertToElement(BlockItemData data, PropertyCacheLevel referenceCacheLevel, bool preview)
    {
        IPublishedContentCache?publishedContentCache =
            _publishedSnapshotAccessor.GetRequiredPublishedSnapshot().Content;

        // Only convert element types - content types will cause an exception when PublishedModelFactory creates the model
        IPublishedContentType?publishedContentType = publishedContentCache?.GetContentType(data.ContentTypeKey);

        if (publishedContentType == null || publishedContentType.IsElement == false)
        {
            return(null);
        }

        Dictionary <string, object?> propertyValues = data.RawPropertyValues;

        // Get the UDI from the deserialized object. If this is empty, we can fallback to checking the 'key' if there is one
        Guid key = data.Udi is GuidUdi gudi ? gudi.Guid : Guid.Empty;

        if (key == Guid.Empty && propertyValues.TryGetValue("key", out var keyo))
        {
            Guid.TryParse(keyo !.ToString(), out key);
        }

        IPublishedElement element = new PublishedElement(publishedContentType, key, propertyValues, preview, referenceCacheLevel, _publishedSnapshotAccessor);

        element = _publishedModelFactory.CreateModel(element);

        return(element);
    }
Example #2
0
    public Type GetModelType(Guid contentTypeKey)
    {
        IPublishedContentCache?publishedContentCache =
            _publishedSnapshotAccessor.GetRequiredPublishedSnapshot().Content;
        IPublishedContentType?publishedContentType = publishedContentCache?.GetContentType(contentTypeKey);

        if (publishedContentType is not null && publishedContentType.IsElement)
        {
            return(_publishedModelFactory.GetModelType(publishedContentType.Alias));
        }

        return(typeof(IPublishedElement));
    }