Compare commits

..

No commits in common. "master" and "release/0.1.0.223" have entirely different histories.

23 changed files with 684 additions and 843 deletions

View File

@ -1,5 +1,5 @@
/** /**
* BBTreeview * BBTreeview
* @version v0.1.1.006 (2023/09/27 2218) * @version v0.1.0.223 (2023/09/08 2027)
*/ */
ul.bbtreeview{background-image:url(line.png);background-position:4px 8px;background-repeat:repeat-y;list-style:none;padding:0;margin:0 0 0 8px}ul.bbtreeview ul{background-image:url(line.png);background-position:4px 8px;background-repeat:repeat-y;list-style:none;margin:0 0 0 8px;padding:0}ul.bbtreeview li{background-position:0 calc((1.2em - 9px)/ 2);background-repeat:no-repeat;cursor:default;display:block;padding-left:14px;width:100%}ul.bbtreeview li.c{background-image:url(expand.png)}ul.bbtreeview li.e{background-image:url(collapse.png)}ul.bbtreeview li.hidden{display:none}ul.bbtreeview div.li{display:block;height:1.2em;padding-left:4px}ul.bbtreeview div.li.highlighted{background-color:rgb(169,201,249,.7)}ul.bbtreeview div.li>div.icon{background-position:0 center;background-repeat:no-repeat;display:inline-block;height:100%;width:calc(16px)}ul.bbtreeview div.li>div.folder{background-image:url(folder.png)}ul.bbtreeview li>div.li>div.checkbox{background-image:url(uncheckbox.png)}ul.bbtreeview li.x>div.li>div.checkbox{background-image:url(checkbox.png)}ul.bbtreeview div.li>span{-webkit-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;height:1.2em;line-height:1.2em;overflow:hidden;padding-left:6px;text-overflow:ellipsis;vertical-align:top;white-space:nowrap}ul.bbtreeview div.li>span.noicon{padding-left:0!important} ul.bbtreeview{background-image:url(line.png);background-position:4px 8px;background-repeat:repeat-y;list-style:none;padding:0;margin:0 0 0 8px}ul.bbtreeview ul{background-image:url(line.png);background-position:4px 8px;background-repeat:repeat-y;list-style:none;margin:0 0 0 8px;padding:0}ul.bbtreeview li{background-position:0 calc((1.2em - 9px)/ 2);background-repeat:no-repeat;cursor:default;display:block;padding-left:14px;width:100%}ul.bbtreeview li.c{background-image:url(expand.png)}ul.bbtreeview li.e{background-image:url(collapse.png)}ul.bbtreeview li.hidden{display:none}ul.bbtreeview div.li{display:block;height:1.2em;padding-left:4px}ul.bbtreeview div.li.highlighted{background-color:rgb(169,201,249,.7)}ul.bbtreeview div.li>div.icon{background-position:0 center;background-repeat:no-repeat;display:inline-block;height:100%;width:calc(16px)}ul.bbtreeview div.li>div.folder{background-image:url(folder.png)}ul.bbtreeview li>div.li>div.checkbox{background-image:url(uncheckbox.png)}ul.bbtreeview li.x>div.li>div.checkbox{background-image:url(checkbox.png)}ul.bbtreeview div.li>span{-webkit-user-select:none;-ms-user-select:none;user-select:none;display:inline-block;height:1.2em;line-height:1.2em;overflow:hidden;padding-left:6px;text-overflow:ellipsis;vertical-align:top;white-space:nowrap}

7
bbtreeview.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,22 +0,0 @@
del bbtreeview.min.js
del bbtreeview.min.tmp
del build/bbtreeview.min.js
cd src
type version.txt >> ../bbtreeview.min.js
@REM "C:\B\Portable Files (dev)\Google Closure Compiler\closure-compiler-v20231112.jar" --js *.js --js_output_file ../bbtreeview.min.tmp
@REM npx google-closure-compiler --compilation_level=ADVANCED --js=*.js --js_output_file=../bbtreeview.min.tmp
@REM npx google-closure-compiler --compilation_level=ADVANCED --warning_level=VERBOSE --js=*.js --js_output_file=bbtreeview.min.tmp
@REM npx google-closure-compiler --warning_level=VERBOSE --js=*.js --js_output_file=bbtreeview.min.tmp
move bbtreeview.min.tmp ../bbtreeview.min.tmp
cd..
type bbtreeview.min.tmp >> bbtreeview.min.js
move bbtreeview.min.js build/bbtreeview.min.js
del bbtreeview.min.tmp

View File

@ -1,18 +0,0 @@
/**
* BBTreeview
* @version v0.1.2.044 (2024/01/09 2118)
*/
class BBTreeview{constructor(a){this.Options={};this.initialiseComponents(a)}initialiseComponents(a){this.Options=Object.assign({ID:null,ShowCheckbox:!1,ShowSelection:!0,EnablePullUp:!1,ShowIcon:!0},a);this.createTreeview()}get Container(){return this.getTreeview()}AddItem(a){a=Object.assign({ID:null,ParentID:null,Name:"",Hint:"",Value:"",Icon:"folder",Checked:!1,Tag:null},a);null==a.ID&&(a.ID=this.generateID());null==a.Tag&&(a.Tag="");if(null!=this.Find(a.ID))return!1;let b=null;if(null!=a.ParentID&&
(b=this.Find(a.ParentID),null==b))return!1;b=null==b?this.Container:b.ChildNode;const c=this.generateNodeHtml(a);this.appendHtml(b,c);this.Find(a.ID).InvalidateEvents();return!0}Remove(a){a=this.Find(a);if(null==a)return!1;a.Remove();return!0}Clear(){this.initialiseComponents(this.Options)}CollapseAll(){this.GetAllNodes().forEach(function(a){a.Collapse()})}ExpandAll(){this.GetAllNodes().forEach(function(a){a.Expand()})}CheckAll(a){this.Options.ShowCheckbox&&this.GetAllNodes().forEach(function(b){b.Check(a)})}Find(a){if(null==
this.Container)console.log("BBTreeview container not found");else return a=this.Container.querySelectorAll("li[data-bbtv-id='"+a+"']"),0>=a.length?null:new BBTreeviewNode(this,a[0])}FindByName(a){let b=[];this.GetAllNodes().forEach(function(c){c.Name==a&&b.push(c)});return b}FindByValue(a){let b=[];this.GetAllNodes().forEach(function(c){c.Value==a&&b.push(c)});return b}GetAllNodes(){const a=this,b=a.Container.querySelectorAll("li");if(0>=b.length)return[];let c=[];b.forEach(function(d){d=d.getAttribute("data-bbtv-id");
a.isNullOrWhitespace(d)||(d=a.Find(d),null!=d&&c.push(d))});return c}GetCheckedNodes(){let a=[];this.GetAllNodes().forEach(function(b){b.IsChecked&&a.push(b)});return a}GetCheckedValues(){let a=[];this.GetCheckedNodes().map(function(b){a.push(b.Value)});return a}GetCheckedTags(){let a=[];this.GetCheckedNodes().map(function(b){a.push(b.Tag)});return a}GetSelectedNode(){let a=null;this.GetAllNodes().forEach(function(b){if(b.IsHighlighted)return a=b,!1});return a}appendHtml(a,b){let c=document.createElement("template");
c.innerHTML=b;c=c.content.firstChild;a.appendChild(c)}createTreeview(){let a=this.getContainer();null!=a&&(a.innerHTML='<ul class="bbtreeview"></ul>')}generateID(){return"treeviewItem"+(Math.floor(1000001*Math.random())+100).toString()}generateNodeHtml(a){var b="";this.isNullOrWhitespace(a.Tag)||(b=encodeURIComponent(JSON.stringify(a.Tag)));b='<li data-bbtv-id="'+a.ID+'" data-bbtv-value="'+a.Value+'" data-bbtv-tag="'+b+'">';b+='<div class="li">';this.Options.ShowCheckbox&&(b+='<div class="icon checkbox"></div>');
this.Options.ShowIcon?(b+='<div class="icon '+a.Icon+'"></div>',b+='<span title="'+a.Hint+'">'+a.Name+"</span>"):b+='<span class="noicon" title="'+a.Hint+'">'+a.Name+"</span>";return b+"</div><ul></ul></li>"}getContainer(){let a=document.getElementsByTagName("body");if(!(0>=a.length||(a=a[0],a=a.querySelectorAll(this.Options.ID),0>=a.length)))return a=a[0]}getNode(a){a=(this.isTag(a,"li")?a:this.parentsUntilTagName(a,"li")).getAttribute("data-bbtv-id");return this.isNullOrWhitespace(a)?null:this.Find(a)}getTreeview(){let a=
this.getContainer();if(null!=a&&(a=a.querySelectorAll("ul.bbtreeview"),!(0>=a.length)))return a=a[0]}isNullOrWhitespace(a){return"undefined"==typeof a||null==a?!0:0>=a.toString().trim().length}isTag(a,b){return a.tagName.toLowerCase()==b}parentsUntilTagName(a,b){for(;"undefined"!=typeof a.parentNode;){a=a.parentNode;if("undefined"==typeof a)break;if(this.isTag(a,"ul")&&a.classList.contains("bbtreeview"))return null;if(this.isTag(a,b))break}return a}};class BBTreeviewNode{constructor(a,b){this.Treeview=a;this.Node=b}get Checkbox(){if(!this.Treeview.Options.ShowCheckbox)return null;const a=this.Node.querySelectorAll("div.icon.checkbox");return"undefined"==typeof a?null:a[0]}get ChildNode(){let a=this.Node.querySelectorAll("ul");return 0>=a.length?null:a[0]}get ChildNodes(){const a=this.ChildNode;if(null==a)return[];let b=a.querySelectorAll("li");if(0>=b.length)return[];let c=[];b.forEach(function(d){"undefined"!=typeof d.parentNode&&d.parentNode==
a&&c.push(d)});return c}get IsChecked(){return this.Treeview.Options.ShowCheckbox?this.Node.classList.contains("x"):!1}get Container(){return this.Node.querySelectorAll("div.li")[0]}get Hint(){return this.Label.getAttribute("title")}get ID(){return this.Node.getAttribute("data-bbtv-id")}get IsExpanded(){return this.Node.classList.contains("e")?!0:this.Node.classList.contains("c")?!1:null}get IsHighlighted(){return this.Container.classList.contains("highlighted")}get Label(){return this.Node.querySelectorAll("span")[0]}get Name(){return this.Label.textContent}get ParentID(){const a=
this.ParentNode;return null==a?null:a.getAttribute("data-bbtv-id")}get ParentNode(){return this.parentsUntilTagName(this.Node,"li")}get Tag(){let a=this.Node.getAttribute("data-bbtv-tag");return this.Treeview.isNullOrWhitespace(a)?null:JSON.parse(decodeURIComponent(a))}get Value(){return this.Node.getAttribute("data-bbtv-value")}Check(a){const b=this;b.setCheckbox(b.Node,a);b.Node.querySelectorAll("li").forEach(function(d){b.setCheckbox(d,a)});let c=b.ParentNode;if(null!=c)if(b.Treeview.Options.EnablePullUp)for(;;){const d=
0<c.querySelectorAll("li.x").length;b.setCheckbox(c,d);c=b.Treeview.getNode(c);c=c.ParentNode;if(null==c)break}else{let d=0;c.querySelectorAll("li").forEach(function(e){e.classList.contains("x")||d++});b.setCheckbox(c,0>=d)}}Collapse(){this.Node.classList.contains("e")&&(this.Node.classList.remove("e"),this.Node.classList.add("c"));this.ChildNodes.forEach(function(a){a.classList.add("hidden")})}Expand(){this.Node.classList.contains("c")&&(this.Node.classList.remove("c"),this.Node.classList.add("e"));
this.ChildNodes.forEach(function(a){a.classList.remove("hidden")})}Remove(){null!=this.ParentNode&&(this.ParentNode.classList.contains("e")&&this.ParentNode.classList.remove("e"),this.ParentNode.classList.contains("c")&&this.ParentNode.classList.remove("c"));this.Node.parentNode.removeChild(this.Node)}InvalidateEvents(){const a=this;a.Node.addEventListener("click",function(b){b.stopPropagation();b.preventDefault();!a.isTag(b.target,"li")||0>b.offsetX||16<b.offsetX||0>b.offsetY||16<b.offsetY||(b=a.Treeview.getNode(b.target),
null!=b&&b.Toggle())});a.Container.addEventListener("dblclick",function(b){b.stopPropagation();b.preventDefault();b=a.Treeview.getNode(b.target);null!=b&&b.Toggle()});a.Treeview.Options.ShowCheckbox&&(a.Checkbox.addEventListener("mousedown",function(b){b.stopPropagation();b.preventDefault();a.Check(!a.IsChecked)}),a.Checkbox.addEventListener("click",function(b){b.stopPropagation();b.preventDefault()}),a.Checkbox.addEventListener("dblclick",function(b){b.stopPropagation();b.preventDefault()}));a.Container.addEventListener("mousedown",
function(b){b.stopPropagation();b.preventDefault();b=a.Treeview.getNode(b.target);null!=b&&(a.Treeview.Container.querySelectorAll("div.highlighted").forEach(function(c){c.classList.remove("highlighted")}),a.Treeview.Options.ShowSelection&&b.Container.classList.add("highlighted"))});a.invalidateCollapsible()}Toggle(){switch(this.IsExpanded){case !0:this.Collapse();break;case !1:this.Expand()}}invalidateCollapsible(){null!=this.ParentNode&&(this.ParentNode.classList.contains("c")?this.Node.classList.add("hidden"):
(this.ParentNode.classList.contains("e")||this.ParentNode.classList.add("e"),this.Node.classList.remove("hidden")))}isTag(a,b){return a.tagName.toLowerCase()==b}parentsUntilTagName(a,b){for(;"undefined"!=typeof a.parentNode;){a=a.parentNode;if("undefined"==typeof a)break;if(this.isTag(a,"ul")&&a.classList.contains("bbtreeview"))return null;if(this.isTag(a,b))break}return a}setCheckbox(a,b){b?a.classList.contains("x")||a.classList.add("x"):a.classList.contains("x")&&a.classList.remove("x")}};

View File

Before

Width:  |  Height:  |  Size: 337 B

After

Width:  |  Height:  |  Size: 337 B

View File

Before

Width:  |  Height:  |  Size: 185 B

After

Width:  |  Height:  |  Size: 185 B

View File

@ -10,11 +10,12 @@
<!-- <script src="http://cdn.hiimray.co.uk/8206c600-707c-469e-8d49-a76ae35782af/bootstrap/5.3.0/dist/js/bootstrap.bundle.min.js"></script> --> <!-- <script src="http://cdn.hiimray.co.uk/8206c600-707c-469e-8d49-a76ae35782af/bootstrap/5.3.0/dist/js/bootstrap.bundle.min.js"></script> -->
<!-- <link href="http://cdn.hiimray.co.uk/8206c600-707c-469e-8d49-a76ae35782af/bootstrap/5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" /> --> <!-- <link href="http://cdn.hiimray.co.uk/8206c600-707c-469e-8d49-a76ae35782af/bootstrap/5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" /> -->
<!-- <link href="bbtreeview.css" rel="stylesheet" /> --> <!-- <link href="src/bbtreeview.css" rel="stylesheet" /> -->
<link href="build/bbtreeview.min.css" rel="stylesheet" /> <!-- <script src="src/bbtreeview.js"></script> -->
<!-- <script src="bbtreeview.min.js"></script> --> <!-- <script src="src/bbtreeviewnode.js"></script> -->
<script src="src/bbtreeview.js"></script>
<script src="src/bbtreeviewnode.js"></script> <link href="bbtreeview.min.css" rel="stylesheet" />
<script src="bbtreeview.min.js"></script>
<title></title> <title></title>
</head> </head>
@ -30,31 +31,26 @@
<div class="column"> <div class="column">
<div class="panel"> <div class="panel">
<p>Create demo treeview</p> <p>Create demo treeview with checkboxes and selection enabled</p>
<p><button onclick="CreateTreeview(1)">Create Treeview (Checkbox and Selection)</button></p> <button onclick="CreateTreeview()">Create Treeview</button>
<p><button onclick="CreateTreeview(2)">Create Treeview (Checkbox, Hide Selection, Enable Pull-Ups)</button></p>
<p><button onclick="CreateTreeview(3)">Create Treeview (No Checkbox, Selection)</button></p>
<p><button onclick="CreateTreeview(4)">Create Treeview (No Checkbox, No Icons, Selection)</button></p>
</div>
<div class="panel">
<p>Load sample nodes</p>
<button onclick="LoadTreeview()">Load Treeview</button>
</div> </div>
<div class="panel"> <div class="panel">
<p>Clear treeview</p> <p>Clear treeview</p>
<p>
<button onclick="ClearTreeview()">Clear Treeview</button> <button onclick="ClearTreeview()">Clear Treeview</button>
</div>
<div class="panel">
<p>Remove the "Program Files" treenode</p>
<button onclick="RemoveTreeNode()">Remove Treenode</button> <button onclick="RemoveTreeNode()">Remove Treenode</button>
</p>
</div> </div>
<div class="panel"> <div class="panel">
<p>Find a treenode</p> <p>Find a treenode</p>
<p>
<button onclick="FindTreeNode()">Find Treenode By ID</button> <button onclick="FindTreeNode()">Find Treenode By ID</button>
<button onclick="FindTreeNodesByName()">Find Treenode By Name</button> <button onclick="FindTreeNodesByName()">Find Treenode By Name</button>
<button onclick="FindTreeNodesByValue()">Find Treenode By Value</button> <button onclick="FindTreeNodesByValue()">Find Treenode By Value</button>
@ -68,7 +64,6 @@
<button onclick="GetAllTreeNodes()">Get All Treenodes</button> <button onclick="GetAllTreeNodes()">Get All Treenodes</button>
<button onclick="GetSelectedTreeNode()">Get Highlighted Treenode</button> <button onclick="GetSelectedTreeNode()">Get Highlighted Treenode</button>
<button onclick="GetCheckedTreeNodes()">Get Checked Treenodes</button> <button onclick="GetCheckedTreeNodes()">Get Checked Treenodes</button>
<button onclick="GetCheckedTags()">Get Checked Treenode Tags</button>
</p> </p>
<p> <p>
<button onclick="GetCheckedValues()">Get Checked Values</button> <button onclick="GetCheckedValues()">Get Checked Values</button>
@ -95,13 +90,11 @@
<style> <style>
body { body {
padding: 10px; padding: 20px;
} }
.column { .column {
float: left; width: 50%; min-height:400px; float: left
min-height: 400px;
width: 50%;
} }
.panel { .panel {
@ -118,58 +111,16 @@ body {
<script> <script>
CreateTreeview(1); var treeview1 = new BBTreeview({
LoadTreeview();
function CreateTreeview(value){
switch (value) {
case 1:
window.treeview1 = new BBTreeview({
ID: "#treeview1", ID: "#treeview1",
ShowCheckbox: true, ShowCheckbox: true,
ShowSelection: true ShowSelection: true
}); });
break;
case 2:
window.treeview1 = new BBTreeview({
ID: "#treeview1",
ShowCheckbox: true,
ShowSelection: false,
EnablePullUp: true
});
break; function CreateTreeview(){
case 3:
window.treeview1 = new BBTreeview({
ID: "#treeview1",
ShowCheckbox: false,
ShowSelection: true,
EnablePullUp: false
});
break; treeview1.AddItem({
case 4:
window.treeview1 = new BBTreeview({
ID: "#treeview1",
ShowCheckbox: false,
ShowSelection: true,
EnablePullUp: false,
ShowIcon: false
});
break;
default:
break;
}
LoadTreeview();
}
function LoadTreeview(){
window.treeview1.AddItem({
ID: "root", ID: "root",
Name: "C:\\" Name: "C:\\"
}); });
@ -184,7 +135,7 @@ function LoadTreeview(){
]; ];
for (let i=0; i<folders1.length; i++) { for (let i=0; i<folders1.length; i++) {
window.treeview1.AddItem({ treeview1.AddItem({
ID: "0_" + i, ID: "0_" + i,
ParentID: "root", ParentID: "root",
Name: folders1[i], Name: folders1[i],
@ -201,7 +152,7 @@ function LoadTreeview(){
]; ];
for (let i=0; i<folders12.length; i++) { for (let i=0; i<folders12.length; i++) {
window.treeview1.AddItem({ treeview1.AddItem({
ID: "0_2_" + i, ID: "0_2_" + i,
ParentID: "0_2", ParentID: "0_2",
Name: folders12[i], Name: folders12[i],
@ -215,7 +166,7 @@ function LoadTreeview(){
]; ];
for (let i=0; i<folders13.length; i++) { for (let i=0; i<folders13.length; i++) {
window.treeview1.AddItem({ treeview1.AddItem({
ID: "0_3_" + i, ID: "0_3_" + i,
ParentID: "0_3", ParentID: "0_3",
Name: folders13[i], Name: folders13[i],
@ -230,7 +181,7 @@ function LoadTreeview(){
]; ];
for (let i=0; i<folders15.length; i++) { for (let i=0; i<folders15.length; i++) {
window.treeview1.AddItem({ treeview1.AddItem({
ID: "0_5_" + i, ID: "0_5_" + i,
ParentID: "0_5", ParentID: "0_5",
Name: folders15[i], Name: folders15[i],
@ -238,7 +189,7 @@ function LoadTreeview(){
}); });
} }
window.treeview1.AddItem({ treeview1.AddItem({
ID: "0_2_3_0", ID: "0_2_3_0",
ParentID: "0_2_3", ParentID: "0_2_3",
Name: "en-GB", Name: "en-GB",
@ -248,15 +199,15 @@ function LoadTreeview(){
} }
function ClearTreeview() { function ClearTreeview() {
window.treeview1.Clear(); treeview1.Clear();
} }
function RemoveTreeNode() { function RemoveTreeNode() {
window.treeview1.Remove("0_2"); treeview1.Remove("0_2");
} }
function FindTreeNode() { function FindTreeNode() {
let treenode = window.treeview1.Find("0_5"); let treenode = treeview1.Find("0_5");
console.log(treenode); console.log(treenode);
@ -264,7 +215,7 @@ function FindTreeNode() {
} }
function FindTreeNodesByName() { function FindTreeNodesByName() {
let treenodes = window.treeview1.FindByName("Common Files"); let treenodes = treeview1.FindByName("Common Files");
console.log(treenodes); console.log(treenodes);
@ -272,7 +223,7 @@ function FindTreeNodesByName() {
} }
function FindTreeNodesByValue() { function FindTreeNodesByValue() {
let treenodes = window.treeview1.FindByValue("Internet Explorer"); let treenodes = treeview1.FindByValue("Internet Explorer");
console.log(treenodes); console.log(treenodes);
@ -280,7 +231,7 @@ function FindTreeNodesByValue() {
} }
function GetSelectedTreeNode() { function GetSelectedTreeNode() {
let treenode = window.treeview1.GetSelectedNode(); let treenode = treeview1.GetSelectedNode();
console.log(treenode); console.log(treenode);
@ -288,15 +239,7 @@ function GetSelectedTreeNode() {
} }
function GetCheckedTreeNodes() { function GetCheckedTreeNodes() {
let treenodes = window.treeview1.GetCheckedNodes(); let treenodes = treeview1.GetCheckedNodes();
console.log(treenodes);
alert(JSON.stringify(treenodes));
}
function GetCheckedTags() {
let treenodes = window.treeview1.GetCheckedTags();
console.log(treenodes); console.log(treenodes);
@ -304,7 +247,7 @@ function GetCheckedTags() {
} }
function GetAllTreeNodes() { function GetAllTreeNodes() {
let treenodes = window.treeview1.GetAllNodes(); let treenodes = treeview1.GetAllNodes();
console.log(treenodes); console.log(treenodes);
@ -312,7 +255,7 @@ function GetAllTreeNodes() {
} }
function GetCheckedValues() { function GetCheckedValues() {
let treenodes = window.treeview1.GetCheckedValues(); let treenodes = treeview1.GetCheckedValues();
console.log(treenodes); console.log(treenodes);
@ -320,19 +263,19 @@ function GetCheckedValues() {
} }
function CollapseAll() { function CollapseAll() {
window.treeview1.CollapseAll(); treeview1.CollapseAll();
} }
function ExpandAll() { function ExpandAll() {
window.treeview1.ExpandAll(); treeview1.ExpandAll();
} }
function CheckAll() { function CheckAll() {
window.treeview1.CheckAll(true); treeview1.CheckAll(true);
} }
function UncheckAll() { function UncheckAll() {
window.treeview1.CheckAll(false); treeview1.CheckAll(false);
} }

View File

Before

Width:  |  Height:  |  Size: 199 B

After

Width:  |  Height:  |  Size: 199 B

View File

Before

Width:  |  Height:  |  Size: 322 B

After

Width:  |  Height:  |  Size: 322 B

View File

Before

Width:  |  Height:  |  Size: 125 B

After

Width:  |  Height:  |  Size: 125 B

BIN
src/UCkji.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -70,7 +70,3 @@ ul.bbtreeview div.li > span {
vertical-align: top; vertical-align: top;
white-space: nowrap; white-space: nowrap;
} }
ul.bbtreeview div.li > span.noicon {
padding-left: 0px !important;
}

View File

@ -1,48 +1,17 @@
class BBTreeview { /**
constructor(options) { * BBTreeview
this.Options = {}; * @version v0.1.0.223 (2023/09/08 2027)
*/
this.initialiseComponents(options); function BBTreeview(options)
} {
initialiseComponents(options) {
var a = this;
a.Options = Object.assign({
ID: null,
ShowCheckbox: false,
ShowSelection: true,
EnablePullUp: false,
ShowIcon: true
}, options);
// Replace treeview
a.createTreeview();
// a.Container = a.getTreeview();
}
get Container() {
return this.getTreeview();
}
AddItem(options) {
const a = this; const a = this;
const _options = Object.assign({
ID: null,
ParentID: null,
Name: "",
Hint: "",
Value: "",
Icon: "folder",
Checked: false,
Tag: null
}, options);
if (_options.ID == null) _options.ID = a.generateID(); a.initialise(options);
if (_options.Tag == null) _options.Tag = ""; };
BBTreeview.prototype.AddItem = function(options) {
const a = this;
const _options = a.getOptions(options);
// Don't add duplicate // Don't add duplicate
if (a.Find(_options.ID) != null) { if (a.Find(_options.ID) != null) {
@ -61,7 +30,7 @@ class BBTreeview {
if (parentNode == null) { if (parentNode == null) {
parentNode = a.Container; parentNode = a.Container;
} else { } else {
parentNode = parentNode.ChildNode; parentNode = parentNode.GetChildNode();
} }
const nodeHtml = a.generateNodeHtml(_options); const nodeHtml = a.generateNodeHtml(_options);
@ -72,12 +41,12 @@ class BBTreeview {
const node = a.Find(_options.ID); const node = a.Find(_options.ID);
// Setup events // Setup events
node.InvalidateEvents(); node.SetupEvents();
return true; return true;
} };
Remove(id) { BBTreeview.prototype.Remove = function(id) {
const a = this; const a = this;
const node = a.Find(id); const node = a.Find(id);
@ -88,31 +57,51 @@ class BBTreeview {
node.Remove(); node.Remove();
return true; return true;
} };
Clear() { BBTreeview.prototype.Default = function() {
return {
TreeviewOptions: {
ID: null,
ShowCheckbox: false,
ShowSelection: true
},
TreeNodeOptions: {
ID: null,
ParentID: null,
Name: "",
Hint: "",
Value: "",
Icon: "folder",
Checked: false,
Tag: null
}
};
};
BBTreeview.prototype.Clear = function() {
const a = this; const a = this;
a.initialiseComponents(a.Options); a.initialise(a.Options);
} };
CollapseAll() { BBTreeview.prototype.CollapseAll = function() {
const a = this; const a = this;
a.GetAllNodes().forEach(function(e) { a.GetAllNodes().forEach(function(e) {
e.Collapse(); e.Collapse();
}); });
} };
ExpandAll() { BBTreeview.prototype.ExpandAll = function() {
const a = this; const a = this;
a.GetAllNodes().forEach(function(e) { a.GetAllNodes().forEach(function(e) {
e.Expand(); e.Expand();
}); });
} };
CheckAll(value) { BBTreeview.prototype.CheckAll = function(value) {
const a = this; const a = this;
if (!a.Options.ShowCheckbox) { if (!a.Options.ShowCheckbox) {
@ -122,27 +111,25 @@ class BBTreeview {
a.GetAllNodes().forEach(function(e) { a.GetAllNodes().forEach(function(e) {
e.Check(value); e.Check(value);
}); });
} };
Find(id) { BBTreeview.prototype.Find = function(id) {
const a = this; const a = this;
if (a.Container == null){
console.log("BBTreeview container not found");
return;
}
const node = a.Container.querySelectorAll("li[data-bbtv-id='" + id + "']"); const node = a.Container.querySelectorAll("li[data-bbtv-id='" + id + "']");
if (node.length <= 0) { if (node.length <= 0) {
return null; return null;
} }
const treenode = new BBTreeviewNode(this, node[0]); let treenode = new BBTreeviewNode(this);
treenode.Load(node[0]);
// console.log(treenode);
return treenode; return treenode;
} };
FindByName(value) { BBTreeview.prototype.FindByName = function(value) {
const a = this; const a = this;
let response = []; let response = [];
@ -155,9 +142,9 @@ class BBTreeview {
}); });
return response; return response;
} };
FindByValue(value) { BBTreeview.prototype.FindByValue = function(value) {
const a = this; const a = this;
let response = []; let response = [];
@ -170,9 +157,9 @@ class BBTreeview {
}); });
return response; return response;
} };
GetAllNodes() { BBTreeview.prototype.GetAllNodes = function() {
const a = this; const a = this;
const node = a.Container.querySelectorAll("li"); const node = a.Container.querySelectorAll("li");
@ -196,14 +183,14 @@ class BBTreeview {
}); });
return response; return response;
} };
GetCheckedNodes() { BBTreeview.prototype.GetCheckedNodes = function() {
const a = this; const a = this;
let response = []; let response = [];
a.GetAllNodes().forEach(function(e) { a.GetAllNodes().forEach(function(e) {
if (!e.IsChecked) { if (!e.Checked) {
return; return;
} }
@ -211,9 +198,9 @@ class BBTreeview {
}); });
return response; return response;
} };
GetCheckedValues() { BBTreeview.prototype.GetCheckedValues = function() {
const a = this; const a = this;
let response = []; let response = [];
@ -222,25 +209,14 @@ class BBTreeview {
}); });
return response; return response;
} };
GetCheckedTags() { BBTreeview.prototype.GetSelectedNode = function() {
const a = this;
let response = [];
a.GetCheckedNodes().map(function(e) {
response.push(e.Tag);
});
return response;
}
GetSelectedNode() {
const a = this; const a = this;
let response = null; let response = null;
a.GetAllNodes().forEach(function(e) { a.GetAllNodes().forEach(function(e) {
if (e.IsHighlighted) { if (e.Highlighted) {
response = e; response = e;
return false; return false;
@ -248,32 +224,45 @@ class BBTreeview {
}); });
return response; return response;
};
BBTreeview.prototype.initialise = function(options) {
var a = this;
a.Options = Object.assign(a.Default().TreeviewOptions, options);
a.Container = null;
let treeview = document.getElementsByTagName("body")[0].querySelectorAll(a.Options.ID);
if (treeview.length <= 0) {
return;
} }
if (treeview[0] == null) {
return;
}
appendHtml(el, html) { a.Container = treeview[0];
a.Container.innerHTML = "<ul class=\"bbtreeview\"></ul>";
a.Container = a.Container.querySelectorAll("ul.bbtreeview")[0];
};
BBTreeview.prototype.appendHtml = function(el, html) {
let node = document.createElement('template'); let node = document.createElement('template');
node.innerHTML = html; node.innerHTML = html;
node = node.content.firstChild; node = node.content.firstChild;
el.appendChild(node); el.appendChild(node);
} };
createTreeview() { BBTreeview.prototype.generateID = function() {
const a = this;
let container = a.getContainer();
if (container != null) {
container.innerHTML = "<ul class=\"bbtreeview\"></ul>";
}
}
generateID() {
return "treeviewItem" + (Math.floor(Math.random() * 1000001) + 100).toString(); return "treeviewItem" + (Math.floor(Math.random() * 1000001) + 100).toString();
} };
generateNodeHtml(options) { BBTreeview.prototype.generateNodeHtml = function(options) {
const a = this; const a = this;
let tag = ""; let tag = "";
@ -288,41 +277,16 @@ class BBTreeview {
html += '<div class="icon checkbox"></div>'; html += '<div class="icon checkbox"></div>';
} }
if (a.Options.ShowIcon) {
html += '<div class="icon ' + options.Icon + '"></div>'; html += '<div class="icon ' + options.Icon + '"></div>';
html += '<span title="' + options.Hint + '">' + options.Name + '</span>'; html += '<span title="' + options.Hint + '">' + options.Name + '</span>';
} else {
html += '<span class="noicon" title="' + options.Hint + '">' + options.Name + '</span>';
}
html += '</div>'; html += '</div>';
html += '<ul></ul>'; html += '<ul></ul>';
html += '</li>'; html += '</li>';
return html; return html;
} };
getContainer() { BBTreeview.prototype.getNode = function(el) {
const a = this;
let result = document.getElementsByTagName("body");
if (result.length <= 0) {
return;
}
result = result[0];
result = result.querySelectorAll(a.Options.ID);
if (result.length <= 0) {
return;
}
result = result[0];
return result;
}
getNode(el) {
const a = this; const a = this;
let node = null; let node = null;
@ -339,31 +303,25 @@ class BBTreeview {
} }
return a.Find(id); return a.Find(id);
} };
getTreeview() { BBTreeview.prototype.getOptions = function(options) {
const a = this; const a = this;
let container = a.getContainer(); let _options = Object.assign(a.Default().TreeNodeOptions, options);
if (container == null) {
return; if (_options.ID == null) {
_options.ID = a.generateID();
} }
// if (container.querySelectorAll("ul.bbtreeview").length <= 0) { if (_options.Tag == null) {
// container.innerHTML = "<ul class=\"bbtreeview\"></ul>"; _options.Tag = "";
// }
container = container.querySelectorAll("ul.bbtreeview");
if (container.length <= 0) {
return;
} }
container = container[0]; return _options;
};
return container; BBTreeview.prototype.isNullOrWhitespace = function(value) {
}
isNullOrWhitespace(value) {
if (typeof (value) == "undefined") { if (typeof (value) == "undefined") {
return true; return true;
} }
@ -373,13 +331,13 @@ class BBTreeview {
} }
return (value.toString().trim().length <= 0); return (value.toString().trim().length <= 0);
} };
isTag(el, tagName) { BBTreeview.prototype.isTag = function(el, tagName) {
return (el.tagName.toLowerCase() == tagName); return (el.tagName.toLowerCase() == tagName);
} };
parentsUntilTagName(el, tagName) { BBTreeview.prototype.parentsUntilTagName = function(el, tagName) {
const a = this; const a = this;
let node = el; let node = el;
@ -407,6 +365,4 @@ class BBTreeview {
} }
return node; return node;
} };
}

View File

@ -1,18 +1,89 @@
class BBTreeviewNode { /**
constructor(treeview, node) { * BBTreeview
this.Treeview = treeview; * @version v0.1.0.223 (2023/09/08 2027)
this.Node = node; */
function BBTreeviewNode(treeview)
{
const a = this;
// this.initialiseComponents(); a.Treeview = treeview;
a.initialise();
};
BBTreeviewNode.prototype.Load = function(node) {
const a = this;
a.ID = node.getAttribute("data-bbtv-id");
a.Node = node;
a.Container = node.querySelectorAll("div.li")[0];
a.Label = node.querySelectorAll("span")[0];
a.Value = node.getAttribute("data-bbtv-value");
a.Name = a.Label.textContent;
a.Hint = a.Label.getAttribute("title");
a.ParentID = a.GetParentID();
a.Checked = a.IsChecked();
a.Highlighted = a.IsHighlighted();
a.Tag = a.GetTag();
};
BBTreeviewNode.prototype.Check = function(value) {
const a = this;
a.setCheckbox(a.Node, value);
// Update children
a.Node.querySelectorAll("li").forEach(function(e) {
a.setCheckbox(e, value);
});
// Update parent state
if (a.GetParentNode() != null) {
let uncheckedCount = 0;
a.GetParentNode().querySelectorAll("li").forEach(function(e) {
if (e.classList.contains("x")) {
return;
} }
// initialiseComponents() { uncheckedCount++;
// const a = this; });
// } a.setCheckbox(a.GetParentNode(), (uncheckedCount <= 0));
}
};
BBTreeviewNode.prototype.Collapse = function() {
const a = this;
get Checkbox() { if (a.Node.classList.contains("e")) {
a.Node.classList.remove("e");
a.Node.classList.add("c");
}
a.GetChildNodes().forEach(function(e) {
e.classList.add("hidden");
});
};
BBTreeviewNode.prototype.Expand = function() {
const a = this;
if (a.Node.classList.contains("c")) {
a.Node.classList.remove("c");
a.Node.classList.add("e");
}
a.GetChildNodes().forEach(function(e) {
e.classList.remove("hidden");
});
};
BBTreeviewNode.prototype.GetCheckbox = function() {
const a = this; const a = this;
if (!a.Treeview.Options.ShowCheckbox) { if (!a.Treeview.Options.ShowCheckbox) {
@ -25,9 +96,9 @@ class BBTreeviewNode {
} }
return checkboxes[0]; return checkboxes[0];
} };
get ChildNode() { BBTreeviewNode.prototype.GetChildNode = function() {
const a = this; const a = this;
let result = a.Node.querySelectorAll("ul"); let result = a.Node.querySelectorAll("ul");
@ -36,12 +107,12 @@ class BBTreeviewNode {
} }
return result[0]; return result[0];
} };
get ChildNodes() { BBTreeviewNode.prototype.GetChildNodes = function() {
const a = this; const a = this;
const childNode = a.ChildNode; const childNode = a.GetChildNode();
if (childNode == null) { if (childNode == null) {
return []; return [];
} }
@ -65,9 +136,36 @@ class BBTreeviewNode {
}); });
return result; return result;
};
BBTreeviewNode.prototype.GetTag = function() {
const a = this;
let tag = a.Node.getAttribute("data-bbtv-tag");
if (a.Treeview.isNullOrWhitespace(tag)) {
return null;
} }
get IsChecked() { return JSON.parse(decodeURIComponent(tag));
};
BBTreeviewNode.prototype.GetParentID = function() {
const a = this;
const parentNode = a.GetParentNode();
if (parentNode == null) {
return null;
}
return parentNode.getAttribute("data-bbtv-id");
};
BBTreeviewNode.prototype.GetParentNode = function() {
const a = this;
return a.parentsUntilTagName(a.Node, "li");
};
BBTreeviewNode.prototype.IsChecked = function() {
const a = this; const a = this;
if (!a.Treeview.Options.ShowCheckbox) { if (!a.Treeview.Options.ShowCheckbox) {
@ -75,21 +173,9 @@ class BBTreeviewNode {
} }
return a.Node.classList.contains("x"); return a.Node.classList.contains("x");
} };
get Container() { BBTreeviewNode.prototype.IsExpanded = function() {
return this.Node.querySelectorAll("div.li")[0];
}
get Hint() {
return this.Label.getAttribute("title");
}
get ID() {
return this.Node.getAttribute("data-bbtv-id");
}
get IsExpanded() {
const a = this; const a = this;
if (a.Node.classList.contains("e")) { if (a.Node.classList.contains("e")) {
@ -101,143 +187,31 @@ class BBTreeviewNode {
} }
return null; return null;
} };
get IsHighlighted() { BBTreeviewNode.prototype.IsHighlighted = function() {
const a = this; const a = this;
return a.Container.classList.contains("highlighted"); return (a.Container.classList.contains("highlighted"));
} };
get Label() { BBTreeviewNode.prototype.Remove = function() {
return this.Node.querySelectorAll("span")[0];
}
get Name() {
return this.Label.textContent;
}
get ParentID() {
const a = this; const a = this;
const parentNode = a.ParentNode; if (a.GetParentNode() != null) {
if (parentNode == null) { if (a.GetParentNode().classList.contains("e")) {
return null; a.GetParentNode().classList.remove("e");
} }
return parentNode.getAttribute("data-bbtv-id"); if (a.GetParentNode().classList.contains("c")) {
} a.GetParentNode().classList.remove("c");
get ParentNode() {
const a = this;
return a.parentsUntilTagName(a.Node, "li");
}
get Tag() {
const a = this;
let tag = a.Node.getAttribute("data-bbtv-tag");
if (a.Treeview.isNullOrWhitespace(tag)) {
return null;
}
return JSON.parse(decodeURIComponent(tag));
}
get Value() {
return this.Node.getAttribute("data-bbtv-value");
}
Check(value) {
const a = this;
a.setCheckbox(a.Node, value);
// Update children
a.Node.querySelectorAll("li").forEach(function(e) {
a.setCheckbox(e, value);
});
// Update parent state
let parentNode = a.ParentNode;
if (parentNode == null) {
return;
}
// Handle pull-ups
if (a.Treeview.Options.EnablePullUp) {
while (true) {
const parentChecked = (parentNode.querySelectorAll("li.x").length > 0);
a.setCheckbox(parentNode, parentChecked);
parentNode = a.Treeview.getNode(parentNode);
parentNode = parentNode.ParentNode;
if (parentNode == null) {
break;
}
}
} else {
let uncheckedCount = 0;
parentNode.querySelectorAll("li").forEach(function(e) {
if (e.classList.contains("x")) {
return;
}
uncheckedCount++;
});
a.setCheckbox(parentNode, (uncheckedCount <= 0));
}
}
Collapse() {
const a = this;
if (a.Node.classList.contains("e")) {
a.Node.classList.remove("e");
a.Node.classList.add("c");
}
a.ChildNodes.forEach(function(e) {
e.classList.add("hidden");
});
}
Expand() {
const a = this;
if (a.Node.classList.contains("c")) {
a.Node.classList.remove("c");
a.Node.classList.add("e");
}
a.ChildNodes.forEach(function(e) {
e.classList.remove("hidden");
});
}
Remove() {
const a = this;
if (a.ParentNode != null) {
if (a.ParentNode.classList.contains("e")) {
a.ParentNode.classList.remove("e");
}
if (a.ParentNode.classList.contains("c")) {
a.ParentNode.classList.remove("c");
} }
} }
a.Node.parentNode.removeChild(a.Node); a.Node.parentNode.removeChild(a.Node);
} };
InvalidateEvents() { BBTreeviewNode.prototype.SetupEvents = function() {
const a = this; const a = this;
// collapsible icon behaviour // collapsible icon behaviour
@ -276,21 +250,21 @@ class BBTreeviewNode {
// checkbox behaviour // checkbox behaviour
if (a.Treeview.Options.ShowCheckbox) { if (a.Treeview.Options.ShowCheckbox) {
a.Checkbox.addEventListener("mousedown", function(e){ a.GetCheckbox().addEventListener("mousedown", function(e){
e.stopPropagation(); e.stopPropagation();
e.preventDefault(); e.preventDefault();
a.Check(!a.IsChecked); a.Check(!a.IsChecked());
}); });
a.Checkbox.addEventListener("click", function(e){ a.GetCheckbox().addEventListener("click", function(e){
e.stopPropagation(); e.stopPropagation();
e.preventDefault(); e.preventDefault();
// do nothing // do nothing
}); });
a.Checkbox.addEventListener("dblclick", function(e){ a.GetCheckbox().addEventListener("dblclick", function(e){
e.stopPropagation(); e.stopPropagation();
e.preventDefault(); e.preventDefault();
@ -321,12 +295,12 @@ class BBTreeviewNode {
}); });
a.invalidateCollapsible(); a.invalidateCollapsible();
} };
Toggle() { BBTreeviewNode.prototype.Toggle = function() {
const a = this; const a = this;
switch (a.IsExpanded) { switch (a.IsExpanded()) {
case true: case true:
a.Collapse(); a.Collapse();
break; break;
@ -335,32 +309,43 @@ class BBTreeviewNode {
break; break;
default: break; default: break;
} }
} };
BBTreeviewNode.prototype.initialise = function() {
const a = this;
invalidateCollapsible() { // a.ID = null;
// a.ParentID = null;
// a.Name = "";
// a.Hint = "";
// a.Value = "";
// a.Icon = "folder";
// a.Checked = false;
};
BBTreeviewNode.prototype.invalidateCollapsible = function() {
const a = this; const a = this;
// Invalidate state // Invalidate state
if (a.ParentNode == null) { if (a.GetParentNode() == null) {
return; return;
} }
if (a.ParentNode.classList.contains("c")) { if (a.GetParentNode().classList.contains("c")) {
a.Node.classList.add("hidden"); a.Node.classList.add("hidden");
} else if (a.ParentNode.classList.contains("e")) { } else if (a.GetParentNode().classList.contains("e")) {
a.Node.classList.remove("hidden"); a.Node.classList.remove("hidden");
} else { } else {
a.ParentNode.classList.add("e"); a.GetParentNode().classList.add("e");
a.Node.classList.remove("hidden"); a.Node.classList.remove("hidden");
} }
} };
isTag(el, tagName) { BBTreeviewNode.prototype.isTag = function(el, tagName) {
return (el.tagName.toLowerCase() == tagName); return (el.tagName.toLowerCase() == tagName);
} };
parentsUntilTagName(el, tagName) { BBTreeviewNode.prototype.parentsUntilTagName = function(el, tagName) {
const a = this; const a = this;
let node = el; let node = el;
@ -388,9 +373,9 @@ class BBTreeviewNode {
} }
return node; return node;
} };
setCheckbox(el, value) { BBTreeviewNode.prototype.setCheckbox = function(el, value) {
if (value) { if (value) {
if (!el.classList.contains("x")) { if (!el.classList.contains("x")) {
el.classList.add("x"); el.classList.add("x");
@ -400,6 +385,4 @@ class BBTreeviewNode {
el.classList.remove("x"); el.classList.remove("x");
} }
} }
} };
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 B

After

Width:  |  Height:  |  Size: 210 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 199 B

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 125 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 B

View File

@ -1,4 +0,0 @@
/**
* BBTreeview
* @version v0.1.2.044 (2024/01/09 2118)
*/

View File

Before

Width:  |  Height:  |  Size: 234 B

After

Width:  |  Height:  |  Size: 234 B