3

Sitecore URL を取得するために Glass Mapper を使用してカスタム属性を作成したいと考えています。これは、プロパティを遅延ロードすることができずSitecoreInfo(SitecoreInfoType.Url)、URL が使用されないマップされたアイテムの URL をロードするパフォーマンスの問題があるためです。

これが私がこれまでに得たものです:

構成

public class SitecoreUrlConfiguration : AbstractPropertyConfiguration
{
    public SitecoreInfoUrlOptions UrlOptions { get; set; }

    public bool IsLazy { get; set; }
}

属性

public class SitecoreUrlAttribute : AbstractPropertyAttribute
{
    public SitecoreUrlAttribute()
    {
        this.IsLazy = true;
        this.UrlOptions = SitecoreInfoUrlOptions.Default;
    }

    /// <summary>
    /// Gets or sets a value indicating whether is lazy.
    /// </summary>
    public bool IsLazy { get; set; }

    public SitecoreInfoUrlOptions UrlOptions { get; set; }

    public override AbstractPropertyConfiguration Configure(PropertyInfo propertyInfo)
    {
        var config = new SitecoreUrlConfiguration();
        this.Configure(propertyInfo, config);
        return config;
    }

    public void Configure(PropertyInfo propertyInfo, SitecoreUrlConfiguration config)
    {
        config.UrlOptions = this.UrlOptions;
        config.IsLazy = this.IsLazy;

        base.Configure(propertyInfo, config);
    }
}

マッパー

public class SitecoreUrlMapper : AbstractDataMapper
{
    public override object MapToProperty(AbstractDataMappingContext mappingContext)
    {
        var context = mappingContext as SitecoreDataMappingContext;
        if (context == null)
        {
            throw new MapperException("Mapping Context is null");
        }

        var item = context.Item;
        var scConfig = this.Configuration as SitecoreUrlConfiguration;

        if (scConfig == null)
        {
            throw new MapperException("SitecoreUrlConfiguration is null");
        }

        var urlOptions = Utilities.CreateUrlOptions(scConfig.UrlOptions);

        urlOptions.Language = null;
        // now, what?
    }
}

ここまでは順調ですね。しかし、マッパーで URL を遅延ロードするにはどうすればよいでしょうか? 誰にもアイデアはありますか?

4

2 に答える 2

4

私が実際に見る唯一の方法はLazy<T>、アクセス時に this の値を返すクラスに a をマップして新しいプロパティを追加することです。したがって、マッパーでは、配置した場所に// now what?遅延文字列を返します。

return new Lazy<string>(() => LinkManager.GetItemUrl(item, urlOptions));

次に、モデルに次の 2 つのプロパティを配置します。

[SitecoreUrl]
public Lazy<string> LazyUrl { private get; set; }

[SitecoreIgnore]
public virtual string Url
{
    get
    {
        return this.LazyUrl.Value;
    }
}
于 2014-10-30T06:15:45.790 に答える
0

少しの創造性と新しいデリゲート機能を使用して、これとほぼ同じことを実現できます。

流暢な構成マップでは、次のようなタイプです。

SitecoreType<IWhatever> sitecoreType = new SitecoreType<IWhatever>();
sitecoreType.Delegate(y => y.Url).GetValue(GetLazyUrl);

private LazyString GetLazyUrl(SitecoreDataMappingContext arg)
{
    var item = context.Item;

    return new LazyString(
        () => 
        {
           // the necessary actions to get the url
        });
}

public class LazyString : Lazy<string>
{
    public LazyString(Func<string> valueFactory) : base(valueFactory)
    {
    }

    public override string ToString()
    {
        return Value;
    }

    public static implicit operator string(LazyString lazyString)
    {
        return lazyString.Value;
    }
}

これは文字列ではありませんが、多くのアプリケーションでは文字列のように動作します。

于 2014-12-28T09:40:14.200 に答える