405 lines
11 KiB
HTML
405 lines
11 KiB
HTML
<div id="app"></div>
|
|
|
|
<script>
|
|
|
|
var N =
|
|
{
|
|
ID:{
|
|
Walk:0,
|
|
Instance:0
|
|
},
|
|
|
|
Create(inMeta)
|
|
{
|
|
return {
|
|
ID:{
|
|
Walk:0,
|
|
Instance:N.ID.Instance++
|
|
},
|
|
Meta:inMeta||{},
|
|
Link:{}
|
|
};
|
|
},
|
|
Connect(inNodeMajor, inNodeMinor, inKey)
|
|
{
|
|
N.Step(inNodeMajor, inKey, true, true).push(inNodeMinor);
|
|
N.Step(inNodeMinor, inKey, false, true).push(inNodeMajor);
|
|
},
|
|
Disconnect(inNodeMajor, inNodeMinor, inKey)
|
|
{
|
|
let remove = (inArray, inMatch) => inArray.findIndex( (inMember, inIndex, inArray) => (inMember === inMatch) ? inArray.splice(inIndex, 1) : false );
|
|
|
|
if(inNodeMinor === null)
|
|
{
|
|
inNodeMajor.Link[inKey].Set.forEach( inLoopNode =>
|
|
{
|
|
if(inLoopNode.Link[inKey].Get.length == 1)
|
|
{
|
|
// we're about to delete the last get reference on a minor node, just purge the key entirely
|
|
delete inLoopNode.Link[inKey];
|
|
}
|
|
else
|
|
{
|
|
remove( inLoopNode.Link[inKey].Get, inNodeMajor);
|
|
}
|
|
|
|
});
|
|
// we just wiped out all set, if get is empty we can purge the key from major
|
|
if(inNodeMajor.Link[inKey].Get.length == 0)
|
|
{
|
|
delete inNodeMajor.Link[inKey];
|
|
}
|
|
return;
|
|
}
|
|
|
|
if(inNodeMajor === null)
|
|
{
|
|
inNodeMinor.Link[inKey].Get.forEach( inLoopNode =>
|
|
{
|
|
if(inLoopNode.Link[inKey].Set.length == 1)
|
|
{
|
|
delete inLoopNode.Link[inKey];
|
|
}
|
|
else
|
|
{
|
|
remove( inLoopNode.Link[inKey].Set, inNodeMinor);
|
|
}
|
|
});
|
|
// we just wiped out all get, if set is empty we can purge the key from minor
|
|
if(inNodeMinor.Link[inKey].Set.length == 0)
|
|
{
|
|
delete inNodeMinor.Link[inKey];
|
|
}
|
|
return;
|
|
}
|
|
|
|
|
|
if(inNodeMajor.Link[inKey].Set.length == 1)
|
|
{
|
|
delete inNodeMajor.Link[inKey];
|
|
}
|
|
else
|
|
{
|
|
remove(inNodeMajor.Link[inKey].Set, inNodeMinor);
|
|
}
|
|
if(inNodeMinor.Link[inKey].Get.length == 1)
|
|
{
|
|
delete inNodeMinor.Link[inKey];
|
|
}
|
|
else
|
|
{
|
|
remove(inNodeMinor.Link[inKey].Get, inNodeMajor);
|
|
}
|
|
|
|
},
|
|
Step(inNode, inKey, inForward, inForceCreate)
|
|
{
|
|
let connectionGroup = inNode.Link[inKey];
|
|
if(!connectionGroup)
|
|
{
|
|
if(inForceCreate)
|
|
{
|
|
inNode.Link[inKey] = connectionGroup = {Get:[], Set:[]};
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
return (inForward === undefined || inForward === true) ? connectionGroup.Set : connectionGroup.Get;
|
|
|
|
},
|
|
Walk(inIterator, inNode, inKey, inForward)
|
|
{
|
|
let array = N.Step(inNode, inKey, inForward);
|
|
for(let i=0; i<array.length; i++)
|
|
{
|
|
|
|
let next = array[i];
|
|
if(next.ID.Walk !== N.ID.Walk)
|
|
{
|
|
next.ID.Walk = N.ID.Walk;
|
|
let results = inIterator(next);
|
|
if(results !== false)
|
|
{
|
|
N.Walk(inIterator, next, inKey, inForward);
|
|
}
|
|
}
|
|
}
|
|
},
|
|
Path(inArray, inNode, inKey, inForward)
|
|
{
|
|
var current = inNode;
|
|
var direction = inForward||true;
|
|
for(let i=0; i<inArray.length; i++)
|
|
{
|
|
current = N.Step(current, inKey, direction)[inArray[i]];
|
|
}
|
|
return current;
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<script>
|
|
`
|
|
A C
|
|
\ / \
|
|
\ / \
|
|
B D
|
|
`
|
|
let a = N.Create({name:"A"});
|
|
let b = N.Create({name:"B"});
|
|
let c = N.Create({name:"C"});
|
|
let d = N.Create({name:"D"});
|
|
N.Connect(a, b, "parent");
|
|
N.Connect(c, b, "parent");
|
|
N.Connect(c, d, "parent");
|
|
N.Disconnect(a, null, "parent");
|
|
/*
|
|
console.log(a.Link);
|
|
console.log(b.Link);
|
|
console.log(c.Link);
|
|
console.log(d.Link);
|
|
*/
|
|
</script>
|
|
|
|
<script>
|
|
var Pivot =
|
|
{
|
|
Leaves:{},
|
|
|
|
Init(inRows)
|
|
{
|
|
Pivot.Leaves = inRows.map(r => N.Create({Row:r}));
|
|
Pivot.Init = ()=>{};
|
|
},
|
|
Pivot(inParent, inPivotIndicies, inSumIndicies, inDepth)
|
|
{
|
|
//arguments:
|
|
// - a Node with leaf Nodes temporarily stored in its Meta.Leaves
|
|
// - where each leaf Node has a row of table data in it's Meta.Row
|
|
// - a list of columns to pivot on
|
|
// - a list of columns to sum
|
|
// - optional traversal depth, defaults to 0
|
|
let depth = inDepth||0;
|
|
let uniques = {};
|
|
inParent.Meta.Leaves.forEach((inLeaf)=>
|
|
{
|
|
let row = inLeaf.Meta.Row; // shorthand for the raw "CSV" row in the leaf Node's Meta
|
|
let value = row[inPivotIndicies[depth]]; // get the pivot column
|
|
let match = uniques[value]; // check in the uniques list if this pivot column exists
|
|
if(!match)
|
|
{
|
|
// if not, store a value under that key that will be the meta object for a new child
|
|
|
|
let clone = row.map(r=>null);
|
|
inSumIndicies.forEach((inSumIndex, inIndex, inArray)=>
|
|
{
|
|
clone[inSumIndex] = row[inSumIndex]
|
|
});
|
|
|
|
match = uniques[value] = {
|
|
Label:value,
|
|
Row:clone,
|
|
Leaves:[]
|
|
};
|
|
// grow a child off of the parent using the meta object
|
|
N.Connect(inParent, N.Create(match), "Hierarchy");
|
|
}
|
|
else
|
|
{
|
|
// if a match does exist, sum the appropriate columns
|
|
inSumIndicies.forEach((inSumIndex) => match.Row[inSumIndex] += row[inSumIndex]);
|
|
}
|
|
// move the leaves into the child
|
|
match.Leaves.push(inLeaf);
|
|
});
|
|
|
|
delete inParent.Meta.Leaves;
|
|
var iterator;
|
|
if(depth >= inPivotIndicies.length-1)
|
|
{
|
|
iterator = inChild =>
|
|
{
|
|
inChild.Meta.Leaves.forEach( inLeaf => N.Connect(inChild, inLeaf, "Hierarchy") );
|
|
delete inChild.Meta.Leaves;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
iterator = child => Pivot.Pivot(child, inPivotIndicies, inSumIndicies, depth+1);
|
|
}
|
|
N.Step(inParent, "Hierarchy").forEach(iterator);
|
|
return inParent;
|
|
},
|
|
Create(inPivotIndicies, inSumIndicies)
|
|
{
|
|
return Pivot.Pivot(N.Create({Leaves:Pivot.Leaves}), inPivotIndicies, inSumIndicies);
|
|
},
|
|
Modify(inNode)
|
|
{
|
|
let modified = N.Create({});
|
|
let leaves = [];
|
|
|
|
let gatherUp = n =>
|
|
{
|
|
N.Connect(modified, n, "ModifyUp");
|
|
};
|
|
let gatherDown = n =>
|
|
{
|
|
N.Connect(modified, n, "ModifyDown");
|
|
N.Step(n, "Hierarchy").length == 0 ? leaves.push(n) : null;
|
|
};
|
|
let gatherOut = n =>
|
|
{
|
|
N.Connect(modified, n, "ModifyOut");
|
|
};
|
|
|
|
N.ID.Walk++;
|
|
inNode.ID.Walk = N.ID.Walk;
|
|
N.Connect(modified, inNode, "ModifyAt");
|
|
|
|
N.Walk(gatherUp, inNode, "Hierarchy", false);
|
|
N.Walk(gatherDown, inNode, "Hierarchy");
|
|
leaves.forEach(leaf=>N.Walk(gatherOut, leaf, "Hierarchy", false));
|
|
|
|
return modified;
|
|
},
|
|
Unmodify(inNode)
|
|
{
|
|
let modifier = N.Step(inNode, "ModifyAt", false)[0];
|
|
console.log(modifier);
|
|
|
|
|
|
N.Disconnect(modifier, null, "ModifyUp");
|
|
N.Disconnect(modifier, null, "ModifyDown");
|
|
N.Disconnect(modifier, null, "ModifyOut");
|
|
N.Disconnect(modifier, null, "ModifyAt");
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<script type="module">
|
|
|
|
import {h, render, createContext, Fragment} from 'https://cdn.skypack.dev/preact';
|
|
import {useReducer} from 'https://cdn.skypack.dev/preact/hooks';
|
|
import { css, cx } from 'https://cdn.skypack.dev/@emotion/css';
|
|
|
|
Pivot.Init([
|
|
["#1", "a", "long", 1],
|
|
["#2", "b", "long", 2],
|
|
["#3", "b", "short", 2],
|
|
["#4", "a", "long", 3],
|
|
["#5", "b", "short", 1],
|
|
["#6", "a", "short", 0],
|
|
["#7", "b", "short", 7],
|
|
]);
|
|
let pivotRoot1 = Pivot.Create([1, 2], [3]);
|
|
let pivotRoot2 = Pivot.Create([2, 1], [3]);
|
|
let pivots = [pivotRoot1, pivotRoot2];
|
|
|
|
/*
|
|
let select = N.Path([0, 1], pivotRoot1, "Hierarchy");
|
|
let mod = Pivot.Modify(select);
|
|
*/
|
|
|
|
|
|
let ElNode = ({node, depth}) =>
|
|
{
|
|
let nodeBase = css`
|
|
position:relative;
|
|
padding:0;
|
|
margin:0;
|
|
border-top:1px solid lightgrey;
|
|
|
|
.Table
|
|
{
|
|
display:inline-block;
|
|
text-align:right;
|
|
}
|
|
.Cell
|
|
{
|
|
width:50px;
|
|
display:inline-block;
|
|
padding:10px;
|
|
}
|
|
`;
|
|
let label = css`
|
|
display:inline-block;
|
|
width:200px;
|
|
|
|
&::before
|
|
{
|
|
content:" ";
|
|
display:inline-block;
|
|
width:${depth*15}px;
|
|
}
|
|
.Modify
|
|
{
|
|
float:right;
|
|
}
|
|
`;
|
|
|
|
let icon = cx(
|
|
{
|
|
[css`
|
|
display:inline-block;
|
|
width:0px;
|
|
height:0px;
|
|
border:7px solid white;` ]: true,
|
|
[css`border-bottom-color:lightblue;`]: N.Step(node, "ModifyUp" ),
|
|
[css`border-top-color:orange;` ]: N.Step(node, "ModifyDown"),
|
|
[css`border-left-color:grey;` ]: N.Step(node, "ModifyOut" ),
|
|
[css`border-right-color:red;` ]: N.Step(node, "ModifyAt" )
|
|
},
|
|
);
|
|
|
|
let buttonModify = h("span", {
|
|
className:"Icon Modify Add",
|
|
onClick:e=>
|
|
{
|
|
Pivot.Modify(node);
|
|
Render();
|
|
}
|
|
}, "Modify");
|
|
|
|
let buttonUnmodify = h("span", {
|
|
className:"Icon Modify remove",
|
|
onClick:e=>
|
|
{
|
|
Pivot.Unmodify(node);
|
|
Render();
|
|
}
|
|
}, "Unmodify");
|
|
|
|
return h("div", {className:"Node"}, [
|
|
h("div", {className:cx(nodeBase, "Upper")}, [
|
|
h("div", {className:label}, [
|
|
h("span", {className:"Icon Expand"}, "+"),
|
|
h("span", {className:"Name"}, (node.Meta.Label || "a node")+" "+node.ID.Walk),
|
|
h("span", {className: icon}),
|
|
N.Step(node, "ModifyAt") ? buttonUnmodify : buttonModify
|
|
] ),
|
|
h("div", {className:"Table"}, (node.Meta.Row || []).map( cell => h("div", {className:"Cell"}, cell)) )
|
|
]),
|
|
h("div", {className:"Nodes"}, N.Step(node, "Hierarchy").map(child=>h(ElNode, {node:child, depth:depth+1})) )
|
|
]);
|
|
};
|
|
let ElPivot = ({pivot}) =>
|
|
{
|
|
return h("div", {style:{display:"inline-block", width:"500px"}}, [
|
|
h(ElNode, {node:pivot, depth:0})
|
|
]);
|
|
};
|
|
let ElRoot = props =>
|
|
{
|
|
return h("div", null, [
|
|
h("h3", null, "tree view"),
|
|
...pivots.map(pivot=>h(ElPivot, {pivot}))
|
|
])
|
|
};
|
|
let Render = () => render(h(ElRoot), document.querySelector("#app"));
|
|
Render();
|
|
|
|
</script>
|