@typeparam TItem
@*
* dbMango
*
* Copyright 2025 Deutsche Bank AG
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*@
@if (AllowAddRootNode)
{
}
@foreach (var node in RootNodes)
{
}
@code {
[Parameter] public List> RootNodes { get; set; } = [];
[Parameter] public EventCallback> OnNodeChanged { get; set; }
[Parameter] public bool AllowAddRootNode { get; set; }
[Parameter] public bool ReadOnly { get; set; }
[Parameter] public RenderFragment>? LabelTemplate { get; set; }
[Parameter] public RenderFragment>? BodyTemplate { get; set; }
[Parameter]
public TreeNode? SelectedNode
{
get;
set
{
if (!EqualityComparer?>.Default.Equals(field, value))
{
field = value;
SelectedNodeChanged.InvokeAsync(value);
StateHasChanged();
}
}
} = null;
[Parameter]
public EventCallback?> SelectedNodeChanged { get; set; }
private void AddRootNode()
{
var newNode = new TreeNode { Data = default }; // Or initialize with a default TItem
RootNodes.Add(newNode);
OnNodeChanged.InvokeAsync(newNode);
}
private TreeNode? _currentlyEditingNode = null;
private void SetCurrentlyEditingNode(TreeNode? node)
{
_currentlyEditingNode = node;
StateHasChanged(); // Crucial to propagate the change
}
private void SetCurrentlySelectedNode(TreeNode? node)
{
SelectedNode = node;
}
}