Files
Umbraco-CMS/src/Umbraco.Web/ContentApps/ContentEditorContentAppFactory.cs

50 lines
1.6 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Umbraco.Core.Models;
using Umbraco.Core.Models.ContentEditing;
using Umbraco.Core.Models.Membership;
namespace Umbraco.Web.ContentApps
{
internal class ContentEditorContentAppFactory : IContentAppFactory
{
2018-09-21 09:42:36 +02:00
// see note on ContentApp
internal const int Weight = -100;
2018-09-21 09:42:36 +02:00
private ContentApp _contentApp;
private ContentApp _mediaApp;
public ContentApp GetContentAppFor(object o, IEnumerable<IReadOnlyUserGroup> userGroups)
{
switch (o)
{
case IContent _:
return _contentApp ?? (_contentApp = new ContentApp
{
Alias = "umbContent",
Name = "Content",
Icon = "icon-document",
2018-09-21 09:42:36 +02:00
View = "views/content/apps/content/content.html",
Weight = Weight
});
case IMedia media when !media.ContentType.IsContainer || media.Properties.Count > 0:
return _mediaApp ?? (_mediaApp = new ContentApp
{
Alias = "umbContent",
Name = "Content",
Icon = "icon-document",
2018-09-21 09:42:36 +02:00
View = "views/media/apps/content/content.html",
Weight = Weight
});
case IMedia _:
return null;
default:
throw new NotSupportedException($"Object type {o.GetType()} is not supported here.");
}
}
}
}