From e1a13f92f58fb2637ab8251fac5f86639acdd605 Mon Sep 17 00:00:00 2001 From: Caesar Kabalan Date: Wed, 17 May 2023 00:50:20 -0400 Subject: [PATCH] Work on the split/join navigation --- main.js | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/main.js b/main.js index 98c7c25..41eb0be 100644 --- a/main.js +++ b/main.js @@ -68,12 +68,13 @@ function addRowTree(subnetTree, depth, maxDepth) { addRowTree(subnetTree[mapKey], depth + 1, maxDepth) } else { let subnet_split = mapKey.split('/') - addRow(subnet_split[0], subnet_split[1], (infoColumnCount + maxDepth - depth), 0) + let max_children = get_join_children(subnetTree[mapKey], 0) + addRow(subnet_split[0], parseInt(subnet_split[1]), (infoColumnCount + maxDepth - depth), 0, max_children) } } } -function addRow(network, netSize, colspan, rowspan) { +function addRow(network, netSize, colspan, rowspan, joinChildren) { // TODO: do some checking here for smaller networks like /32, probably some edge cases to watch for. let addressFirst = ip2int(network) let addressLast = subnet_last_address(addressFirst, netSize) @@ -89,8 +90,12 @@ function addRow(network, netSize, colspan, rowspan) { ' ' + hostCount + '\n' + ' \n' + ' /' + netSize + '\n' - if (netSize < maxNetSize) { - newRow += ' /' + (netSize + 1) + '\n' + if (netSize > maxNetSize) { + // This is wrong. Need to figure out a way to get the number of children so you can set rowspan and the number + // of ancestors so you can set colspan. If the subnet address (without the mask) matches a larger subnet address + // in the heirarchy that is a signal to add more join buttons to that row, since they start at the top row and + // via rowspan extend downward. + newRow += ' /' + (netSize - 1) + '\n' } newRow += ' '; @@ -125,3 +130,17 @@ function get_dict_max_depth(dict, curDepth) { } return maxDepth } + +function get_join_ancestors() { + +} + +function get_join_children(subnetTree, childCount) { + for (let mapKey in subnetTree) { + if (Object.keys(subnetTree[mapKey]).length > 0) { + childCount += get_join_children(subnetTree[mapKey]) + } else { + return childCount + } + } +} \ No newline at end of file