vassago/WebInterface/Views/Home/Index.cshtml

60 lines
1.9 KiB
Plaintext
Raw Normal View History

2023-07-03 12:51:23 -04:00
@{
ViewData["Title"] = "Home Page";
}
2024-04-05 23:07:48 -04:00
<div id="tree"></div>
tree above.
@section Scripts{
<script type="text/javascript">
function getTree() {
// Some logic to retrieve, or generate tree structure
var tree = @Html.Raw(ViewData["treeString"]);
console.log(tree);
@* var channels = {text: "channels", nodes: []};
@{
var doThing = (currentChannel) => {};
foreach(Channel c in ViewData["Channels"])
{
channels.push(currentChannel);
}
} *@
var throwaway =
[
{
text: "Parent 1",
nodes: [
{
text: "Child 1",
nodes: [
{
text: "Grandchild 1"
},
{
text: "Grandchild 2"
}
]
},
{
text: "Child 2"
}
]
},
{
text: "Parent 2"
},
{
text: "Parent 3"
},
{
text: "Parent 4"
},
{
text: "Parent 5"
}
];
return tree;
}
$('#tree').bstreeview({ data: getTree() });
</script>
}