public CollectionItem(Title title, IModelItem owner) : base(owner) { this._titleObj = title; //this.InternalMovieItem = new Library.MovieItem(title, null); this.ItemType = 0; if(OMLEngine.Settings.OMLSettings.ShowUnwatchedIcon) this.OverlayContentTemplate = "resx://Library/Library.Resources/V3_Controls_BrowseGalleryItem#UnwatchedOverlay"; if (this._titleObj.WatchedCount == 0) this.isUnwatched = true; DateTime releaseDate = Convert.ToDateTime(_titleObj.ReleaseDate.ToString("MMMM dd, yyyy"));// new DateTime(2000, 1, 1); //invalid dates if (releaseDate.Year != 1 && releaseDate.Year != 1900) this.MetadataTop = releaseDate.Year.ToString(); else this.MetadataTop = ""; this.ItemId = 1; string starRating = Convert.ToString(Math.Round((Convert.ToDouble(_titleObj.UserStarRating.HasValue ? _titleObj.UserStarRating.Value : 0) * 0.8), MidpointRounding.AwayFromZero)); this.StarRating = starRating; string extendedMetadata = string.Empty; this.SortName = title.SortName; //this.Metadata = this.InternalMovieItem.Rating.Replace("PG13", "PG-13").Replace("NC17", "NC-17"); this.Metadata = _titleObj.ParentalRating; if (string.IsNullOrEmpty(_titleObj.ParentalRating)) this.Metadata = "Not Rated"; if (_titleObj.Runtime.ToString() != "0") this.Metadata += string.Format(", {0} minutes", _titleObj.Runtime.ToString()); this.Tagline = _titleObj.Synopsis; this.Description = title.Name; //TODO: not sure how to read this yet... //temporarially disabled due to bug in eagerloading //this.SimpleVideoFormat = _titleObj.VideoFormat.ToString(); this.Invoked += delegate(object sender, EventArgs args) { //stub details for CollectionItem CollectionPage page = new CollectionPage(this); OMLProperties properties = new OMLProperties(); properties.Add("Application", OMLApplication.Current); //properties.Add("UISettings", new UISettings()); //properties.Add("Settings", new Settings()); properties.Add("I18n", I18n.Instance); //v3 main gallery //Library.Code.V3.GalleryPage gallery = new Library.Code.V3.GalleryPage(new List<OMLEngine.TitleFilter>(), "OML"); ////description //gallery.Description = "OML"; Command CommandContextPopOverlay = new Command(); properties.Add("CommandContextPopOverlay", CommandContextPopOverlay); properties.Add("Page", page); OMLApplication.Current.Session.GoToPage(@"resx://Library/Library.Resources/V3_GalleryPage", properties); }; }
public CollectionItem(Title title, IModelItem owner) : base(owner) { this._titleObj = title; //this.InternalMovieItem = new Library.MovieItem(title, null); this.ItemType = 0; if (OMLEngine.Settings.OMLSettings.ShowUnwatchedIcon) { this.OverlayContentTemplate = "resx://Library/Library.Resources/V3_Controls_BrowseGalleryItem#UnwatchedOverlay"; } if (this._titleObj.WatchedCount == 0) { this.isUnwatched = true; } DateTime releaseDate = Convert.ToDateTime(_titleObj.ReleaseDate.ToString("MMMM dd, yyyy"));// new DateTime(2000, 1, 1); //invalid dates if (releaseDate.Year != 1 && releaseDate.Year != 1900) { this.MetadataTop = releaseDate.Year.ToString(); } else { this.MetadataTop = ""; } this.ItemId = 1; string starRating = Convert.ToString(Math.Round((Convert.ToDouble(_titleObj.UserStarRating.HasValue ? _titleObj.UserStarRating.Value : 0) * 0.8), MidpointRounding.AwayFromZero)); this.StarRating = starRating; string extendedMetadata = string.Empty; this.SortName = title.SortName; //this.Metadata = this.InternalMovieItem.Rating.Replace("PG13", "PG-13").Replace("NC17", "NC-17"); this.Metadata = _titleObj.ParentalRating; if (string.IsNullOrEmpty(_titleObj.ParentalRating)) { this.Metadata = "Not Rated"; } if (_titleObj.Runtime.ToString() != "0") { this.Metadata += string.Format(", {0} minutes", _titleObj.Runtime.ToString()); } this.Tagline = _titleObj.Synopsis; this.Description = title.Name; //TODO: not sure how to read this yet... //temporarially disabled due to bug in eagerloading //this.SimpleVideoFormat = _titleObj.VideoFormat.ToString(); this.Invoked += delegate(object sender, EventArgs args) { //stub details for CollectionItem CollectionPage page = new CollectionPage(this); OMLProperties properties = new OMLProperties(); properties.Add("Application", OMLApplication.Current); //properties.Add("UISettings", new UISettings()); //properties.Add("Settings", new Settings()); properties.Add("I18n", I18n.Instance); //v3 main gallery //Library.Code.V3.GalleryPage gallery = new Library.Code.V3.GalleryPage(new List<OMLEngine.TitleFilter>(), "OML"); ////description //gallery.Description = "OML"; Command CommandContextPopOverlay = new Command(); properties.Add("CommandContextPopOverlay", CommandContextPopOverlay); properties.Add("Page", page); OMLApplication.Current.Session.GoToPage(@"resx://Library/Library.Resources/V3_GalleryPage", properties); }; }