- Possibilità di nascondere figli multipli nella pagina con la gerarchia
- Gestione bottom rail del frame
This commit is contained in:
@@ -22,12 +22,30 @@ namespace WebWindowComplex.Compo
|
||||
[Parameter]
|
||||
public int maxCol { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// Dizionario con elementi che possono collassare
|
||||
/// </summary>
|
||||
[Parameter]
|
||||
public Dictionary<int, bool> RowCollapsedDict { get; set; } = new Dictionary<int, bool>();
|
||||
|
||||
/// <summary>
|
||||
/// Dizionario con numero di figli per elementi che possono collassare
|
||||
/// </summary>
|
||||
[Parameter]
|
||||
public Dictionary<int, int> ChildDict { get; set; } = new Dictionary<int, int>();
|
||||
|
||||
/// <summary>
|
||||
/// Evento richiesta prossimo step
|
||||
/// </summary>
|
||||
[Parameter]
|
||||
public EventCallback<DataNextStep> EC_NextStep { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Evento aggiornamento dizionari per collasso righe
|
||||
/// </summary>
|
||||
[Parameter]
|
||||
public EventCallback<Dictionary<int, bool>> EC_Collapsed { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Metodo per richiesta prossimo step
|
||||
/// </summary>
|
||||
@@ -42,6 +60,70 @@ namespace WebWindowComplex.Compo
|
||||
return EC_NextStep.InvokeAsync(Args);
|
||||
}
|
||||
|
||||
//private Dictionary<int, bool> RowCollapsedDict { get; set; } = new Dictionary<int, bool>();
|
||||
//private Dictionary<int, int> Child { get; set; } = new Dictionary<int, int>();
|
||||
|
||||
//protected override void OnAfterRender(bool firstRender)
|
||||
//{
|
||||
// if (firstRender)
|
||||
// {
|
||||
// foreach (var key in RowCollapsedDict.Keys.ToList())
|
||||
// {
|
||||
// RowCollapsedDict[key] = false;
|
||||
// Child[key] = -1;
|
||||
// }
|
||||
// //for (int i = 0; i < ItemTableList.Count; i++)
|
||||
// //{
|
||||
// // for (int j = 0; j < maxCol; j++)
|
||||
// // {
|
||||
// // if (j + 1 == ItemTableList[i].Col)
|
||||
// // {
|
||||
// // TableList.Add(new DataTable
|
||||
// // {
|
||||
// // item = ItemTableList[i],
|
||||
// // row = i,
|
||||
// // col = j,
|
||||
// // hidden = false
|
||||
// // });
|
||||
// // }
|
||||
// // else
|
||||
// // {
|
||||
// // FillTable(i, j);
|
||||
// // }
|
||||
// // }
|
||||
// //}
|
||||
// }
|
||||
//}
|
||||
|
||||
//protected override void OnParametersSet()
|
||||
//{
|
||||
// RowCollapsedDict.Clear();
|
||||
// Child.Clear();
|
||||
// foreach (var item in ItemTableList)
|
||||
// {
|
||||
// if(item.NumChild > 4)
|
||||
// {
|
||||
// RowCollapsedDict.Add(item.Row, false);
|
||||
// Child.Add(item.Row, item.NumChild);
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
|
||||
/// <summary>
|
||||
/// Metodo per aprire/chiudere sottorighe
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
private Task ChangeCollapsed(int row)
|
||||
{
|
||||
RowCollapsedDict[row] = RowCollapsedDict[row] ? false : true;
|
||||
return EC_Collapsed.InvokeAsync(RowCollapsedDict);
|
||||
}
|
||||
|
||||
private string hwIcon(int row)
|
||||
{
|
||||
return RowCollapsedDict[row] ? "fa-solid fa-chevron-down" : "fa-solid fa-chevron-up";
|
||||
}
|
||||
|
||||
//private async Task Remove(CompileStep cs, int indexStep)
|
||||
//{
|
||||
// var Args = new DataNextStep
|
||||
@@ -136,6 +218,157 @@ namespace WebWindowComplex.Compo
|
||||
return " ";
|
||||
}
|
||||
}
|
||||
|
||||
private bool HideRow(int row, int col)
|
||||
{
|
||||
List<ItemTable> itemSameCol = new List<ItemTable>();
|
||||
for (int k = 0; k < row; k++)
|
||||
{
|
||||
if (ItemTableList[k].Col == col + 1)
|
||||
{
|
||||
itemSameCol.Add(ItemTableList[k]);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
if(itemSameCol.Count > 0)
|
||||
return RowCollapsedDict.GetValueOrDefault(itemSameCol.First().Row - 1);
|
||||
return false;
|
||||
}
|
||||
|
||||
// private void FillTable(int row, int col)
|
||||
// {
|
||||
// List<ItemTable> itemSameCol = new List<ItemTable>();
|
||||
// for (int k = 0; k < row; k++)
|
||||
// {
|
||||
// if (ItemTableList[k].Col == col + 1)
|
||||
// {
|
||||
// itemSameCol.Add(ItemTableList[k]);
|
||||
// }
|
||||
// continue;
|
||||
// }
|
||||
// int numItemNextCol = 0;
|
||||
// for (int k = 0; k < row; k++)
|
||||
// {
|
||||
// if (ItemTableList[k].Row <= row && ItemTableList[k].Col == col + 2)
|
||||
// {
|
||||
// numItemNextCol++;
|
||||
// }
|
||||
// continue;
|
||||
// }
|
||||
// if (itemSameCol.Count > 1)
|
||||
// {
|
||||
// for (int i = 0; i <= itemSameCol.Count - 2; i++)
|
||||
// {
|
||||
// if (itemSameCol[i].NumChild > 0)
|
||||
// numItemNextCol = numItemNextCol - itemSameCol[i].NumChild;
|
||||
// }
|
||||
// }
|
||||
// if (itemSameCol.Count > 0)
|
||||
// {
|
||||
// // Sono alla riga successiva di un elemento e nella stessa colonna
|
||||
// if (itemSameCol.Last().Row == row)
|
||||
// {
|
||||
// // se ha un solo figlio
|
||||
// if (itemSameCol.Last().NumChild == 1)
|
||||
// {
|
||||
// TableList.Add(new DataTable
|
||||
// {
|
||||
// symbol = "└",
|
||||
// row = row,
|
||||
// col = col,
|
||||
// hidden = false
|
||||
// });
|
||||
// }
|
||||
// else if (itemSameCol.Last().NumChild == 0)
|
||||
// {
|
||||
// TableList.Add(new DataTable
|
||||
// {
|
||||
// symbol = " ",
|
||||
// row = row,
|
||||
// col = col,
|
||||
// hidden = false
|
||||
// });
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// TableList.Add(new DataTable
|
||||
// {
|
||||
// symbol = "├",
|
||||
// row = row,
|
||||
// col = col,
|
||||
// hidden = false
|
||||
// });
|
||||
// }
|
||||
// }
|
||||
// // Non sono alla riga successiva
|
||||
// else
|
||||
// {
|
||||
// // se ha un solo figlio
|
||||
// if (itemSameCol.Last().NumChild == 1)
|
||||
// {
|
||||
// TableList.Add(new DataTable
|
||||
// {
|
||||
// symbol = " ",
|
||||
// row = row,
|
||||
// col = col,
|
||||
// hidden = false
|
||||
// });
|
||||
// }
|
||||
// else if (col + 2 <= maxCol && ItemTableList[row].Col == col + 2)
|
||||
// {
|
||||
// if (numItemNextCol < itemSameCol.Last().NumChild && numItemNextCol != (itemSameCol.Last().NumChild - 1))
|
||||
// {
|
||||
// TableList.Add(new DataTable
|
||||
// {
|
||||
// symbol = "├",
|
||||
// row = row,
|
||||
// col = col,
|
||||
// hidden = false
|
||||
// });
|
||||
// }
|
||||
// TableList.Add(new DataTable
|
||||
// {
|
||||
// symbol = "└",
|
||||
// row = row,
|
||||
// col = col,
|
||||
// hidden = false
|
||||
// });
|
||||
// }
|
||||
// else if (numItemNextCol < itemSameCol.Last().NumChild)
|
||||
// {
|
||||
// TableList.Add(new DataTable
|
||||
// {
|
||||
// symbol = "│",
|
||||
// row = row,
|
||||
// col = col,
|
||||
// hidden = false
|
||||
// });
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// TableList.Add(new DataTable
|
||||
// {
|
||||
// symbol = " ",
|
||||
// row = row,
|
||||
// col = col,
|
||||
// hidden = false
|
||||
// });
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// TableList.Add(new DataTable
|
||||
// {
|
||||
// symbol = " ",
|
||||
// row = row,
|
||||
// col = col,
|
||||
// hidden = false
|
||||
// });
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -146,4 +379,5 @@ namespace WebWindowComplex.Compo
|
||||
public CompileStep currCompileStep { get; set; }
|
||||
public int index { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user