* Align namespaces in integration tests * Align namespaces in unit tests * Align namespaces in Backoffice.Filters * Align namespaces in Backoffice.ActionResults * Align namespaces in Backoffice.Mapping * Align namespaces in Backoffice.PorpertyEditors and SignalR * Align namespaces in Backoffice.Trees * Align unit tests after migration
129 lines
5.3 KiB
C#
129 lines
5.3 KiB
C#
using System;
|
|
using System.Linq;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Umbraco.Core;
|
|
using Umbraco.Core.Models;
|
|
using Umbraco.Core.Services;
|
|
using Umbraco.Web.Actions;
|
|
using Umbraco.Web.BackOffice.Filters;
|
|
using Umbraco.Web.Common.Attributes;
|
|
using Umbraco.Web.Models.Trees;
|
|
using Umbraco.Web.Trees;
|
|
using Umbraco.Web.WebApi;
|
|
|
|
namespace Umbraco.Web.BackOffice.Trees
|
|
{
|
|
|
|
[UmbracoTreeAuthorize(
|
|
Constants.Trees.Dictionary,
|
|
Constants.Trees.Templates
|
|
// We are allowed to see the dictionary tree, if we are allowed to manage templates, such that se can use the
|
|
// dictionary items in templates, even when we dont have authorization to manage the dictionary items
|
|
)]
|
|
[PluginController(Constants.Web.Mvc.BackOfficeTreeArea)]
|
|
[CoreTree]
|
|
[Tree(Constants.Applications.Translation, Constants.Trees.Dictionary, TreeGroup = Constants.Trees.Groups.Settings)]
|
|
public class DictionaryTreeController : TreeController
|
|
{
|
|
private readonly IMenuItemCollectionFactory _menuItemCollectionFactory;
|
|
private readonly ILocalizationService _localizationService;
|
|
|
|
public DictionaryTreeController(ILocalizedTextService localizedTextService, UmbracoApiControllerTypeCollection umbracoApiControllerTypeCollection, IMenuItemCollectionFactory menuItemCollectionFactory, ILocalizationService localizationService) : base(localizedTextService, umbracoApiControllerTypeCollection)
|
|
{
|
|
_menuItemCollectionFactory = menuItemCollectionFactory;
|
|
_localizationService = localizationService;
|
|
}
|
|
|
|
protected override TreeNode CreateRootNode(FormCollection queryStrings)
|
|
{
|
|
var root = base.CreateRootNode(queryStrings);
|
|
|
|
// the default section is settings, falling back to this if we can't
|
|
// figure out where we are from the querystring parameters
|
|
var section = Constants.Applications.Translation;
|
|
if (!queryStrings["application"].ToString().IsNullOrWhiteSpace())
|
|
section = queryStrings["application"];
|
|
|
|
// this will load in a custom UI instead of the dashboard for the root node
|
|
root.RoutePath = $"{section}/{Constants.Trees.Dictionary}/list";
|
|
|
|
return root;
|
|
}
|
|
|
|
/// <summary>
|
|
/// The method called to render the contents of the tree structure
|
|
/// </summary>
|
|
/// <param name="id">The id of the tree item</param>
|
|
/// <param name="queryStrings">
|
|
/// All of the query string parameters passed from jsTree
|
|
/// </param>
|
|
/// <remarks>
|
|
/// We are allowing an arbitrary number of query strings to be passed in so that developers are able to persist custom data from the front-end
|
|
/// to the back end to be used in the query for model data.
|
|
/// </remarks>
|
|
protected override TreeNodeCollection GetTreeNodes(string id, FormCollection queryStrings)
|
|
{
|
|
var intId = id.TryConvertTo<int>();
|
|
if (intId == false)
|
|
throw new InvalidOperationException("Id must be an integer");
|
|
|
|
var nodes = new TreeNodeCollection();
|
|
|
|
Func<IDictionaryItem, string> ItemSort() => item => item.ItemKey;
|
|
|
|
if (id == Constants.System.RootString)
|
|
{
|
|
nodes.AddRange(
|
|
_localizationService.GetRootDictionaryItems().OrderBy(ItemSort()).Select(
|
|
x => CreateTreeNode(
|
|
x.Id.ToInvariantString(),
|
|
id,
|
|
queryStrings,
|
|
x.ItemKey,
|
|
"icon-book-alt",
|
|
_localizationService.GetDictionaryItemChildren(x.Key).Any())));
|
|
}
|
|
else
|
|
{
|
|
// maybe we should use the guid as url param to avoid the extra call for getting dictionary item
|
|
var parentDictionary = _localizationService.GetDictionaryItemById(intId.Result);
|
|
if (parentDictionary == null)
|
|
return nodes;
|
|
|
|
nodes.AddRange(_localizationService.GetDictionaryItemChildren(parentDictionary.Key).ToList().OrderBy(ItemSort()).Select(
|
|
x => CreateTreeNode(
|
|
x.Id.ToInvariantString(),
|
|
id,
|
|
queryStrings,
|
|
x.ItemKey,
|
|
"icon-book-alt",
|
|
_localizationService.GetDictionaryItemChildren(x.Key).Any())));
|
|
}
|
|
|
|
return nodes;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the menu structure for the node
|
|
/// </summary>
|
|
/// <param name="id">The id of the tree item</param>
|
|
/// <param name="queryStrings">
|
|
/// All of the query string parameters passed from jsTree
|
|
/// </param>
|
|
/// <returns></returns>
|
|
protected override MenuItemCollection GetMenuForNode(string id, FormCollection queryStrings)
|
|
{
|
|
var menu = _menuItemCollectionFactory.Create();
|
|
|
|
menu.Items.Add<ActionNew>(LocalizedTextService, opensDialog: true);
|
|
|
|
if (id != Constants.System.RootString)
|
|
menu.Items.Add<ActionDelete>(LocalizedTextService, true, opensDialog: true);
|
|
|
|
menu.Items.Add(new RefreshNode(LocalizedTextService, true));
|
|
|
|
return menu;
|
|
}
|
|
}
|
|
}
|