perfect-gui 4.3.2 → 4.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/perfect-gui.mjs +59 -51
- package/dist/perfect-gui.umd.js +1 -1
- package/package.json +1 -1
- package/src/index.js +28 -9
package/dist/perfect-gui.mjs
CHANGED
|
@@ -413,13 +413,13 @@ function w(y) {
|
|
|
413
413
|
`
|
|
414
414
|
);
|
|
415
415
|
}
|
|
416
|
-
class
|
|
416
|
+
class u {
|
|
417
417
|
constructor(e = {}) {
|
|
418
418
|
if (e.container ? (this.container = typeof e.container == "string" ? document.querySelector(e.container) : e.container, this.position_type = "absolute") : (this.container = document.body, this.position_type = "fixed"), this.propReferences = [], this.folders = [], e.isFolder) {
|
|
419
419
|
this._folderConstructor(e.folderOptions);
|
|
420
420
|
return;
|
|
421
421
|
}
|
|
422
|
-
this.name = e != null && typeof e.name == "string" ? e.name : "", this.backgroundColor = e.color || null, this.container == document.body ? this.maxHeight = window.innerHeight : this.maxHeight = Math.min(this.container.clientHeight, window.innerHeight), e.maxHeight && (this.initMaxHeight = e.maxHeight, this.maxHeight = Math.min(this.initMaxHeight, this.maxHeight)), this.screenCorner = this._parseScreenCorner(e.position), this instanceof
|
|
422
|
+
this.name = e != null && typeof e.name == "string" ? e.name : "", this.backgroundColor = e.color || null, this.container == document.body ? this.maxHeight = window.innerHeight : this.maxHeight = Math.min(this.container.clientHeight, window.innerHeight), e.maxHeight && (this.initMaxHeight = e.maxHeight, this.maxHeight = Math.min(this.initMaxHeight, this.maxHeight)), this.screenCorner = this._parseScreenCorner(e.position), this instanceof u && (typeof u[u.instanceCounter] != "number" ? u[u.instanceCounter] = 0 : u[u.instanceCounter]++), this.instanceId = u[u.instanceCounter], this.wrapperWidth = e.width || 290, this.stylesheet = document.createElement("style"), this.stylesheet.setAttribute("type", "text/css"), this.stylesheet.setAttribute("id", "lm-gui-stylesheet"), document.head.append(this.stylesheet), this.instanceId == 0 && this._addStyles(`${w(this.position_type)}`), this._styleInstance(), this._addWrapper(), this.wrapper.setAttribute("data-corner-x", this.screenCorner.x), this.wrapper.setAttribute("data-corner-y", this.screenCorner.y), e.autoRepositioning != !1 && window.addEventListener("resize", this._handleResize.bind(this)), this._handleResize(), this.hasBeenDragged = !1, e.draggable == !0 && this._makeDraggable(), this.closed = !1, e.closed && this.toggleClose();
|
|
423
423
|
}
|
|
424
424
|
_styleInstance() {
|
|
425
425
|
let e = this._getScrollbarWidth(this.container);
|
|
@@ -510,41 +510,41 @@ class g {
|
|
|
510
510
|
throw typeof e.path == null ? Error("[GUI] image() path must be provided.") : Error("[GUI] image() path must be a string.");
|
|
511
511
|
let r = i.replace(/^.*[\\\/]/, ""), o;
|
|
512
512
|
e.name == null ? o = r : o = typeof e.name == "string" && e.name || " ";
|
|
513
|
-
const s = e.selected === !0,
|
|
514
|
-
let
|
|
515
|
-
e.width && (typeof e.width == "number" && (e.width += "px"),
|
|
513
|
+
const s = e.selected === !0, a = e.selectionBorder !== !1;
|
|
514
|
+
let n = "";
|
|
515
|
+
e.width && (typeof e.width == "number" && (e.width += "px"), n += `flex: 0 0 calc(${e.width} - 5px); `), e.height && (typeof e.height == "number" && (e.height += "px"), n += `height: ${e.height}; `), this.imageContainer || (this.imageContainer = this._createElement({
|
|
516
516
|
class: "p-gui__image-container"
|
|
517
517
|
}));
|
|
518
518
|
var l = this._createElement({
|
|
519
519
|
class: "p-gui__image",
|
|
520
|
-
inline: "background-image: url(" + i + "); " +
|
|
520
|
+
inline: "background-image: url(" + i + "); " + n,
|
|
521
521
|
parent: this.imageContainer
|
|
522
522
|
});
|
|
523
|
-
s &&
|
|
523
|
+
s && a && l.classList.add("p-gui__image--selected"), this._createElement({
|
|
524
524
|
parent: l,
|
|
525
525
|
class: "p-gui__image-text",
|
|
526
526
|
textContent: o
|
|
527
527
|
}), typeof t == "function" && (l.onclick = () => {
|
|
528
|
-
let
|
|
529
|
-
for (let d = 0; d <
|
|
530
|
-
|
|
531
|
-
|
|
528
|
+
let g = this.imageContainer.querySelectorAll(".p-gui__image--selected");
|
|
529
|
+
for (let d = 0; d < g.length; d++)
|
|
530
|
+
g[d].classList.remove("p-gui__image--selected");
|
|
531
|
+
a && l.classList.add("p-gui__image--selected"), t({ path: i, text: o });
|
|
532
532
|
});
|
|
533
533
|
}
|
|
534
534
|
slider(e = {}, t) {
|
|
535
535
|
if (typeof e != "object")
|
|
536
536
|
throw Error(`[GUI] slider() first parameter must be an object. Received: ${typeof e}.`);
|
|
537
|
-
let i = typeof e.name == "string" && e.name || " ", r = !1, o = null, s = e.obj || e.object,
|
|
538
|
-
if (
|
|
539
|
-
(
|
|
540
|
-
else if (
|
|
541
|
-
if (typeof
|
|
542
|
-
throw Error(`[GUI] slider() "prop" (or "property") parameter must be an string. Received: ${typeof
|
|
537
|
+
let i = typeof e.name == "string" && e.name || " ", r = !1, o = null, s = e.obj || e.object, a = e.prop || e.property, n = typeof e.value == "number" ? e.value : null, l = e.min ?? 0, g = e.max ?? 1, d = e.step || (g - l) / 100;
|
|
538
|
+
if (n !== null)
|
|
539
|
+
(a != null || s != null) && console.warn('[GUI] slider() "obj" and "property" parameters are ignored when a "value" parameter is used.');
|
|
540
|
+
else if (a != null && s != null) {
|
|
541
|
+
if (typeof a != "string")
|
|
542
|
+
throw Error(`[GUI] slider() "prop" (or "property") parameter must be an string. Received: ${typeof a}.`);
|
|
543
543
|
if (typeof s != "object")
|
|
544
544
|
throw Error(`[GUI] slider() "obj" (or "object") parameter must be an object. Received: ${typeof s}.`);
|
|
545
|
-
i == " " && (i =
|
|
545
|
+
i == " " && (i = a), o = this.propReferences.push(s[a]) - 1, r = !0;
|
|
546
546
|
} else
|
|
547
|
-
(
|
|
547
|
+
(a != null && s == null || a == null && s == null) && console.warn('[GUI] slider() "obj" and "prop" parameters must be used together.'), n = (g - l) / 2;
|
|
548
548
|
this.imageContainer = null;
|
|
549
549
|
var h = this._createElement({
|
|
550
550
|
class: "p-gui__slider",
|
|
@@ -556,18 +556,18 @@ class g {
|
|
|
556
556
|
customAttributes: {
|
|
557
557
|
type: "range",
|
|
558
558
|
min: l,
|
|
559
|
-
max:
|
|
559
|
+
max: g,
|
|
560
560
|
step: d,
|
|
561
|
-
value: r ? s[
|
|
561
|
+
value: r ? s[a] : n
|
|
562
562
|
}
|
|
563
563
|
}), _ = this._createElement({
|
|
564
564
|
parent: h,
|
|
565
565
|
class: "p-gui__slider-value",
|
|
566
|
-
textContent: String(r ? s[
|
|
566
|
+
textContent: String(r ? s[a] : n)
|
|
567
567
|
});
|
|
568
568
|
f.addEventListener("input", () => {
|
|
569
|
-
_.textContent = f.value, r && (s[
|
|
570
|
-
}), r && Object.defineProperty(s,
|
|
569
|
+
_.textContent = f.value, r && (s[a] = f.value), typeof t == "function" && t(parseFloat(f.value));
|
|
570
|
+
}), r && Object.defineProperty(s, a, {
|
|
571
571
|
set: (b) => {
|
|
572
572
|
this.propReferences[o] = b, f.value = b, _.textContent = String(b);
|
|
573
573
|
},
|
|
@@ -581,9 +581,9 @@ class g {
|
|
|
581
581
|
this.imageContainer = null;
|
|
582
582
|
let o = this._createElement({
|
|
583
583
|
class: "p-gui__switch",
|
|
584
|
-
onclick: (
|
|
585
|
-
let
|
|
586
|
-
|
|
584
|
+
onclick: (a) => {
|
|
585
|
+
let n = a.target.childNodes[1], l = !0;
|
|
586
|
+
n.classList.contains("p-gui__switch-checkbox--active") && (l = !1), n.classList.toggle("p-gui__switch-checkbox--active"), typeof t == "function" && t(l);
|
|
587
587
|
},
|
|
588
588
|
textContent: i
|
|
589
589
|
}), s = r ? " p-gui__switch-checkbox--active" : "";
|
|
@@ -595,28 +595,36 @@ class g {
|
|
|
595
595
|
list(e = {}, t) {
|
|
596
596
|
if (typeof e != "object")
|
|
597
597
|
throw Error(`[GUI] list() first parameter must be an object. Received: ${typeof e}.`);
|
|
598
|
-
let i = typeof e.name == "string" ? e.name : " ", r = Array.isArray(e.values) ? e.values : null
|
|
599
|
-
|
|
600
|
-
|
|
598
|
+
let i = typeof e.name == "string" ? e.name : " ", r = Array.isArray(e.values) ? e.values : null, o = (() => {
|
|
599
|
+
if (!r)
|
|
600
|
+
return null;
|
|
601
|
+
if (typeof e.value == "string")
|
|
602
|
+
return r.indexOf(e.value);
|
|
603
|
+
if (typeof e.value == "number")
|
|
604
|
+
return e.value;
|
|
605
|
+
})();
|
|
606
|
+
console.log("->", o), t = typeof t == "function" ? t : null, this.imageContainer = null;
|
|
607
|
+
let s = this._createElement({
|
|
601
608
|
class: "p-gui__list",
|
|
602
609
|
textContent: i
|
|
603
|
-
}),
|
|
604
|
-
parent:
|
|
610
|
+
}), a = this._createElement({
|
|
611
|
+
parent: s,
|
|
605
612
|
el: "select",
|
|
606
613
|
class: "p-gui__list-dropdown",
|
|
607
614
|
onchange: (n) => {
|
|
608
615
|
t && t(n.target.value);
|
|
609
616
|
}
|
|
610
617
|
});
|
|
611
|
-
r.forEach((n) => {
|
|
612
|
-
this._createElement({
|
|
613
|
-
parent:
|
|
618
|
+
r && r.forEach((n, l) => {
|
|
619
|
+
let g = this._createElement({
|
|
620
|
+
parent: a,
|
|
614
621
|
el: "option",
|
|
615
622
|
customAttributes: {
|
|
616
623
|
value: n
|
|
617
624
|
},
|
|
618
625
|
textContent: n
|
|
619
626
|
});
|
|
627
|
+
o == l && g.setAttribute("selected", "");
|
|
620
628
|
});
|
|
621
629
|
}
|
|
622
630
|
options(e, t) {
|
|
@@ -628,7 +636,7 @@ class g {
|
|
|
628
636
|
if (typeof e != "object")
|
|
629
637
|
throw Error(`[GUI] vector2() first parameter must be an object. Received: ${typeof e}.`);
|
|
630
638
|
let i = typeof e.name == "string" && e.name || " ";
|
|
631
|
-
const r = e.x.min ?? 0, o = e.x.max ?? 1, s = e.y.min ?? 0,
|
|
639
|
+
const r = e.x.min ?? 0, o = e.x.max ?? 1, s = e.y.min ?? 0, a = e.y.max ?? 1, n = e.x.obj || e.x.object, l = e.x.prop || e.x.property, g = this.propReferences.push(n[l]) - 1, d = e.y.obj || e.y.object, h = e.y.prop || e.y.property, f = this.propReferences.push(d[h]) - 1;
|
|
632
640
|
t = typeof t == "function" ? t : null, this.imageContainer = null;
|
|
633
641
|
const _ = this._createElement({
|
|
634
642
|
class: "p-gui__vector2",
|
|
@@ -636,13 +644,13 @@ class g {
|
|
|
636
644
|
}), b = this._createElement({
|
|
637
645
|
parent: _,
|
|
638
646
|
class: "p-gui__vector-value",
|
|
639
|
-
textContent:
|
|
647
|
+
textContent: n[l] + ", " + d[h]
|
|
640
648
|
}), c = this._createElement({
|
|
641
649
|
parent: _,
|
|
642
650
|
el: "div",
|
|
643
651
|
class: "p-gui__vector2-area",
|
|
644
652
|
onclick: (p) => {
|
|
645
|
-
|
|
653
|
+
n[l] = parseFloat(this._mapLinear(p.offsetX, 0, c.clientWidth, r, o).toFixed(2)), d[h] = parseFloat(this._mapLinear(p.offsetY, 0, c.clientHeight, a, s).toFixed(2)), t && t(n[l], n[h]);
|
|
646
654
|
}
|
|
647
655
|
});
|
|
648
656
|
let m = !1;
|
|
@@ -651,7 +659,7 @@ class g {
|
|
|
651
659
|
}), c.addEventListener("pointerup", () => {
|
|
652
660
|
m = !1;
|
|
653
661
|
}), c.addEventListener("pointermove", (p) => {
|
|
654
|
-
m && (
|
|
662
|
+
m && (n[l] = parseFloat(this._mapLinear(p.offsetX, 0, c.clientWidth, r, o).toFixed(2)), d[h] = parseFloat(this._mapLinear(p.offsetY, 0, c.clientHeight, a, s).toFixed(2)), t && t(n[l], n[h]));
|
|
655
663
|
}), this._createElement({
|
|
656
664
|
parent: c,
|
|
657
665
|
class: "p-gui__vector2-line p-gui__vector2-line-x"
|
|
@@ -663,14 +671,14 @@ class g {
|
|
|
663
671
|
parent: c,
|
|
664
672
|
class: "p-gui__vector2-dot"
|
|
665
673
|
});
|
|
666
|
-
x.style.left = this._mapLinear(
|
|
674
|
+
x.style.left = this._mapLinear(n[l], r, o, 0, c.clientWidth) + "px", x.style.top = this._mapLinear(d[h], s, a, c.clientHeight, 0) + "px", Object.defineProperty(n, l, {
|
|
667
675
|
set: (p) => {
|
|
668
|
-
this.propReferences[
|
|
676
|
+
this.propReferences[g] = p, x.style.left = this._mapLinear(p, r, o, 0, c.clientWidth) + "px", b.textContent = String(p) + ", " + d[h];
|
|
669
677
|
},
|
|
670
|
-
get: () => this.propReferences[
|
|
678
|
+
get: () => this.propReferences[g]
|
|
671
679
|
}), Object.defineProperty(d, h, {
|
|
672
680
|
set: (p) => {
|
|
673
|
-
this.propReferences[f] = p, x.style.top = this._mapLinear(p, s,
|
|
681
|
+
this.propReferences[f] = p, x.style.top = this._mapLinear(p, s, a, c.clientHeight, 0) + "px", b.textContent = n[l] + ", " + String(p);
|
|
674
682
|
},
|
|
675
683
|
get: () => this.propReferences[f]
|
|
676
684
|
});
|
|
@@ -700,11 +708,11 @@ class g {
|
|
|
700
708
|
this.imageContainer = null;
|
|
701
709
|
let s = "p-gui__folder";
|
|
702
710
|
this.folders.length == 0 && (s += " p-gui__folder--first"), t && (s += " p-gui__folder--closed");
|
|
703
|
-
let
|
|
704
|
-
|
|
705
|
-
let
|
|
711
|
+
let a = r ? `background-color: ${r};` : "";
|
|
712
|
+
a += o ? `max-height: ${o}px;` : "";
|
|
713
|
+
let n = this._createElement({
|
|
706
714
|
class: s,
|
|
707
|
-
inline:
|
|
715
|
+
inline: a
|
|
708
716
|
});
|
|
709
717
|
this._createElement({
|
|
710
718
|
innerHTML: `<span class="p-gui__folder-arrow"></span>${i}`,
|
|
@@ -712,10 +720,10 @@ class g {
|
|
|
712
720
|
onclick: function() {
|
|
713
721
|
this.parentNode.classList.toggle("p-gui__folder--closed");
|
|
714
722
|
},
|
|
715
|
-
parent:
|
|
723
|
+
parent: n
|
|
716
724
|
});
|
|
717
|
-
let l = new
|
|
718
|
-
wrapper:
|
|
725
|
+
let l = new u({ isFolder: !0, folderOptions: {
|
|
726
|
+
wrapper: n
|
|
719
727
|
} });
|
|
720
728
|
return this.folders.push(l), l;
|
|
721
729
|
}
|
|
@@ -743,5 +751,5 @@ class g {
|
|
|
743
751
|
}
|
|
744
752
|
}
|
|
745
753
|
export {
|
|
746
|
-
|
|
754
|
+
u as default
|
|
747
755
|
};
|
package/dist/perfect-gui.umd.js
CHANGED
|
@@ -413,4 +413,4 @@
|
|
|
413
413
|
transform: translate3d(${this.xOffset}px,${this.yOffset}px,0);
|
|
414
414
|
${this.screenCorner.y=="top"?"":"top: auto; bottom: 0;"}
|
|
415
415
|
${this.backgroundColor?"background: "+this.backgroundColor+";":""}
|
|
416
|
-
}`)}_folderConstructor(e){this.wrapper=e.wrapper}_parseScreenCorner(e){let t={x:"right",y:"top"};return e==null||(typeof e!="string"&&console.error("[perfect-gui] Position must be a string."),e.includes("left")&&(t.x="left"),e.includes("bottom")&&(t.y="bottom")),t}_getScrollbarWidth(e){return e===document.body?window.innerWidth-document.documentElement.clientWidth:e.offsetWidth-e.clientWidth}_handleResize(){if(this.container==document.body?this.maxHeight=window.innerHeight:this.maxHeight=Math.min(this.container.clientHeight,window.innerHeight),this.initMaxHeight&&(this.maxHeight=Math.min(this.initMaxHeight,this.maxHeight)),this.wrapper.style.maxHeight=this.maxHeight+"px",this.hasBeenDragged)return;let e=this._getScrollbarWidth(this.container);if(this.xOffset=this.screenCorner.x=="left"?0:this.container.clientWidth-this.wrapperWidth-e,this.instanceId>0){let t=this.container.querySelectorAll(`.p-gui:not(#${this.wrapper.id}):not([data-dragged])`);for(let i=0;i<t.length&&!(parseInt(t[i].id.replace("p-gui-",""))>this.instanceId);i++)this.screenCorner.y==t[i].dataset.cornerY&&(this.screenCorner.x=="left"&&t[i].dataset.cornerX=="left"?this.xOffset+=t[i].offsetWidth:this.screenCorner.x=="right"&&t[i].dataset.cornerX=="right"&&(this.xOffset-=t[i].offsetWidth))}this.position={prevX:this.xOffset,prevY:this.yOffset,x:this.xOffset,y:this.yOffset},this.wrapper.style.transform=`translate3d(${this.position.x}px, ${this.position.y}px, 0)`}_createElement(e){e.el=e.el||"div";var t=document.createElement(e.el);if(e.id&&(t.id=e.id),e.class&&(t.className=e.class),e.inline&&(t.style=e.inline),e.href&&(t.href=e.href),e.onclick&&(t.onclick=e.onclick),e.onchange&&(t.onchange=e.onchange),e.textContent&&(t.textContent=e.textContent),e.innerHTML&&(t.innerHTML=e.innerHTML),e.type&&(t.type=e.type),e.value&&(t.value=e.value),e.customAttributes)for(var i in e.customAttributes)t.setAttribute(i,e.customAttributes[i]);return e.parent=e.parent?e.parent:this.wrapper,e.parent.append(t),t}_addStyles(e){this.stylesheet.innerHTML+=e}_addWrapper(){this.wrapper=this._createElement({parent:this.container,id:"p-gui-"+this.instanceId,class:"p-gui"}),this.header=this._createElement({parent:this.wrapper,class:"p-gui__header",textContent:this.name,inline:`${this.backgroundColor?"border-color: "+this.backgroundColor+";":""}`}),this._createElement({parent:this.header,class:"p-gui__header-close",onclick:this.toggleClose.bind(this)})}button(e,t){let i="";typeof e!="string"?typeof e=="object"&&(e!=null&&e.hasOwnProperty("name"))?i=e.name==""?" ":e.name:i=" ":i=e==""?" ":e,this.imageContainer=null,typeof t!="function"&&(t=()=>{});const r=this._createElement({class:"p-gui__button",textContent:i,onclick:t});typeof e.color=="string"&&(r.style.setProperty("--color-accent",e.color),r.style.setProperty("--color-accent-hover",e.hoverColor||e.color))}image(e={},t){if(typeof e!="object")throw Error(`[GUI] image() first parameter must be an object. Received: ${typeof e}.`);let i;if(typeof e.path=="string")i=e.path;else throw typeof e.path==null?Error("[GUI] image() path must be provided."):Error("[GUI] image() path must be a string.");let r=i.replace(/^.*[\\\/]/,""),o;e.name==null?o=r:o=typeof e.name=="string"&&e.name||" ";const s=e.selected===!0,n=e.selectionBorder!==!1;let a="";e.width&&(typeof e.width=="number"&&(e.width+="px"),a+=`flex: 0 0 calc(${e.width} - 5px); `),e.height&&(typeof e.height=="number"&&(e.height+="px"),a+=`height: ${e.height}; `),this.imageContainer||(this.imageContainer=this._createElement({class:"p-gui__image-container"}));var l=this._createElement({class:"p-gui__image",inline:"background-image: url("+i+"); "+a,parent:this.imageContainer});s&&n&&l.classList.add("p-gui__image--selected"),this._createElement({parent:l,class:"p-gui__image-text",textContent:o}),typeof t=="function"&&(l.onclick=()=>{let u=this.imageContainer.querySelectorAll(".p-gui__image--selected");for(let h=0;h<u.length;h++)u[h].classList.remove("p-gui__image--selected");n&&l.classList.add("p-gui__image--selected"),t({path:i,text:o})})}slider(e={},t){if(typeof e!="object")throw Error(`[GUI] slider() first parameter must be an object. Received: ${typeof e}.`);let i=typeof e.name=="string"&&e.name||" ",r=!1,o=null,s=e.obj||e.object,n=e.prop||e.property,a=typeof e.value=="number"?e.value:null,l=e.min??0,u=e.max??1,h=e.step||(u-l)/100;if(a!==null)(n!=null||s!=null)&&console.warn('[GUI] slider() "obj" and "property" parameters are ignored when a "value" parameter is used.');else if(n!=null&&s!=null){if(typeof n!="string")throw Error(`[GUI] slider() "prop" (or "property") parameter must be an string. Received: ${typeof n}.`);if(typeof s!="object")throw Error(`[GUI] slider() "obj" (or "object") parameter must be an object. Received: ${typeof s}.`);i==" "&&(i=n),o=this.propReferences.push(s[n])-1,r=!0}else(n!=null&&s==null||n==null&&s==null)&&console.warn('[GUI] slider() "obj" and "prop" parameters must be used together.'),a=(u-l)/2;this.imageContainer=null;var g=this._createElement({class:"p-gui__slider",textContent:i}),f=this._createElement({parent:g,el:"input",class:"p-gui__slider-ctrl",customAttributes:{type:"range",min:l,max:u,step:h,value:r?s[n]:a}}),x=this._createElement({parent:g,class:"p-gui__slider-value",textContent:String(r?s[n]:a)});f.addEventListener("input",()=>{x.textContent=f.value,r&&(s[n]=f.value),typeof t=="function"&&t(parseFloat(f.value))}),r&&Object.defineProperty(s,n,{set:b=>{this.propReferences[o]=b,f.value=b,x.textContent=String(b)},get:()=>this.propReferences[o]})}toggle(e={},t){if(typeof e!="object")throw Error(`[GUI] toggle() first parameter must be an object. Received: ${typeof e}.`);let i=typeof e.name=="string"&&e.name||" ",r=e.value===!0;this.imageContainer=null;let o=this._createElement({class:"p-gui__switch",onclick:n=>{let a=n.target.childNodes[1],l=!0;a.classList.contains("p-gui__switch-checkbox--active")&&(l=!1),a.classList.toggle("p-gui__switch-checkbox--active"),typeof t=="function"&&t(l)},textContent:i}),s=r?" p-gui__switch-checkbox--active":"";this._createElement({parent:o,class:"p-gui__switch-checkbox"+s})}list(e={},t){if(typeof e!="object")throw Error(`[GUI] list() first parameter must be an object. Received: ${typeof e}.`);let i=typeof e.name=="string"?e.name:" ",r=Array.isArray(e.values)?e.values:null;t=typeof t=="function"?t:null,this.imageContainer=null;let o=this._createElement({class:"p-gui__list",textContent:i}),s=this._createElement({parent:o,el:"select",class:"p-gui__list-dropdown",onchange:n=>{t&&t(n.target.value)}});r.forEach(n=>{this._createElement({parent:s,el:"option",customAttributes:{value:n},textContent:n})})}options(e,t){if(typeof e!="object")throw Error(`[GUI] options() first parameter must be an object. Received: ${typeof e}.`);this.list(e,t)}vector2(e={},t){if(typeof e!="object")throw Error(`[GUI] vector2() first parameter must be an object. Received: ${typeof e}.`);let i=typeof e.name=="string"&&e.name||" ";const r=e.x.min??0,o=e.x.max??1,s=e.y.min??0,n=e.y.max??1,a=e.x.obj||e.x.object,l=e.x.prop||e.x.property,u=this.propReferences.push(a[l])-1,h=e.y.obj||e.y.object,g=e.y.prop||e.y.property,f=this.propReferences.push(h[g])-1;t=typeof t=="function"?t:null,this.imageContainer=null;const x=this._createElement({class:"p-gui__vector2",textContent:i}),b=this._createElement({parent:x,class:"p-gui__vector-value",textContent:a[l]+", "+h[g]}),p=this._createElement({parent:x,el:"div",class:"p-gui__vector2-area",onclick:d=>{a[l]=parseFloat(this._mapLinear(d.offsetX,0,p.clientWidth,r,o).toFixed(2)),h[g]=parseFloat(this._mapLinear(d.offsetY,0,p.clientHeight,n,s).toFixed(2)),t&&t(a[l],a[g])}});let y=!1;p.addEventListener("pointerdown",d=>{y=!0}),p.addEventListener("pointerup",()=>{y=!1}),p.addEventListener("pointermove",d=>{y&&(a[l]=parseFloat(this._mapLinear(d.offsetX,0,p.clientWidth,r,o).toFixed(2)),h[g]=parseFloat(this._mapLinear(d.offsetY,0,p.clientHeight,n,s).toFixed(2)),t&&t(a[l],a[g]))}),this._createElement({parent:p,class:"p-gui__vector2-line p-gui__vector2-line-x"}),this._createElement({parent:p,class:"p-gui__vector2-line p-gui__vector2-line-y"});const m=this._createElement({parent:p,class:"p-gui__vector2-dot"});m.style.left=this._mapLinear(a[l],r,o,0,p.clientWidth)+"px",m.style.top=this._mapLinear(h[g],s,n,p.clientHeight,0)+"px",Object.defineProperty(a,l,{set:d=>{this.propReferences[u]=d,m.style.left=this._mapLinear(d,r,o,0,p.clientWidth)+"px",b.textContent=String(d)+", "+h[g]},get:()=>this.propReferences[u]}),Object.defineProperty(h,g,{set:d=>{this.propReferences[f]=d,m.style.top=this._mapLinear(d,s,n,p.clientHeight,0)+"px",b.textContent=a[l]+", "+String(d)},get:()=>this.propReferences[f]})}color(e={},t){if(typeof e!="object")throw Error(`[GUI] color() first parameter must be an object. Received: ${typeof e}.`);let i=typeof e.name=="string"&&e.name||" ",r;typeof e.value=="string"&&(e.value.length!=7||e.value[0]!="#"?console.error(`[GUI] color() 'value' parameter must be an hexadecimal string in the format "#ffffff". Received: "${e.value}".`):r=e.value),r||(r="#000000");const o=this._createElement({el:"div",class:"p-gui__color",textContent:i}),s=this._createElement({parent:o,el:"input",class:"p-gui__color-picker",type:"color",value:r});typeof t=="function"&&s.addEventListener("input",()=>{t(s.value)})}folder(e={}){let t=typeof e.closed=="boolean"?e.closed:!1,i=e.name||"",r=e.color||null,o=e.maxHeight||null;this.imageContainer=null;let s="p-gui__folder";this.folders.length==0&&(s+=" p-gui__folder--first"),t&&(s+=" p-gui__folder--closed");let n=r?`background-color: ${r};`:"";n+=o?`max-height: ${o}px;`:"";let a=this._createElement({class:s,inline:n});this._createElement({innerHTML:`<span class="p-gui__folder-arrow"></span>${i}`,class:"p-gui__folder-header",onclick:function(){this.parentNode.classList.toggle("p-gui__folder--closed")},parent:a});let l=new c({isFolder:!0,folderOptions:{wrapper:a}});return this.folders.push(l),l}_makeDraggable(){var e=this;this.header.addEventListener("pointerdown",t),this.header.addEventListener("pointerup",r);function t(o){o.preventDefault(),e.position.initX=e.position.x,e.position.initY=e.position.y,e.position.prevX=o.clientX,e.position.prevY=o.clientY,document.addEventListener("pointermove",i)}function i(o){o.preventDefault(),e.hasBeenDragged||(e.hasBeenDragged=!0,e.wrapper.setAttribute("data-dragged","true")),e.position.x=e.position.initX+o.clientX-e.position.prevX,e.position.y=e.position.initY+o.clientY-e.position.prevY,e.wrapper.style.transform="translate3d("+e.position.x+"px,"+e.position.y+"px,0)"}function r(o){document.removeEventListener("pointermove",i)}}toggleClose(){this.closed=!this.closed,this.wrapper.classList.toggle("p-gui--collapsed")}kill(){this.wrapper.remove()}_mapLinear(e,t,i,r,o){return r+(e-t)*(o-r)/(i-t)}}return c});
|
|
416
|
+
}`)}_folderConstructor(e){this.wrapper=e.wrapper}_parseScreenCorner(e){let t={x:"right",y:"top"};return e==null||(typeof e!="string"&&console.error("[perfect-gui] Position must be a string."),e.includes("left")&&(t.x="left"),e.includes("bottom")&&(t.y="bottom")),t}_getScrollbarWidth(e){return e===document.body?window.innerWidth-document.documentElement.clientWidth:e.offsetWidth-e.clientWidth}_handleResize(){if(this.container==document.body?this.maxHeight=window.innerHeight:this.maxHeight=Math.min(this.container.clientHeight,window.innerHeight),this.initMaxHeight&&(this.maxHeight=Math.min(this.initMaxHeight,this.maxHeight)),this.wrapper.style.maxHeight=this.maxHeight+"px",this.hasBeenDragged)return;let e=this._getScrollbarWidth(this.container);if(this.xOffset=this.screenCorner.x=="left"?0:this.container.clientWidth-this.wrapperWidth-e,this.instanceId>0){let t=this.container.querySelectorAll(`.p-gui:not(#${this.wrapper.id}):not([data-dragged])`);for(let i=0;i<t.length&&!(parseInt(t[i].id.replace("p-gui-",""))>this.instanceId);i++)this.screenCorner.y==t[i].dataset.cornerY&&(this.screenCorner.x=="left"&&t[i].dataset.cornerX=="left"?this.xOffset+=t[i].offsetWidth:this.screenCorner.x=="right"&&t[i].dataset.cornerX=="right"&&(this.xOffset-=t[i].offsetWidth))}this.position={prevX:this.xOffset,prevY:this.yOffset,x:this.xOffset,y:this.yOffset},this.wrapper.style.transform=`translate3d(${this.position.x}px, ${this.position.y}px, 0)`}_createElement(e){e.el=e.el||"div";var t=document.createElement(e.el);if(e.id&&(t.id=e.id),e.class&&(t.className=e.class),e.inline&&(t.style=e.inline),e.href&&(t.href=e.href),e.onclick&&(t.onclick=e.onclick),e.onchange&&(t.onchange=e.onchange),e.textContent&&(t.textContent=e.textContent),e.innerHTML&&(t.innerHTML=e.innerHTML),e.type&&(t.type=e.type),e.value&&(t.value=e.value),e.customAttributes)for(var i in e.customAttributes)t.setAttribute(i,e.customAttributes[i]);return e.parent=e.parent?e.parent:this.wrapper,e.parent.append(t),t}_addStyles(e){this.stylesheet.innerHTML+=e}_addWrapper(){this.wrapper=this._createElement({parent:this.container,id:"p-gui-"+this.instanceId,class:"p-gui"}),this.header=this._createElement({parent:this.wrapper,class:"p-gui__header",textContent:this.name,inline:`${this.backgroundColor?"border-color: "+this.backgroundColor+";":""}`}),this._createElement({parent:this.header,class:"p-gui__header-close",onclick:this.toggleClose.bind(this)})}button(e,t){let i="";typeof e!="string"?typeof e=="object"&&(e!=null&&e.hasOwnProperty("name"))?i=e.name==""?" ":e.name:i=" ":i=e==""?" ":e,this.imageContainer=null,typeof t!="function"&&(t=()=>{});const r=this._createElement({class:"p-gui__button",textContent:i,onclick:t});typeof e.color=="string"&&(r.style.setProperty("--color-accent",e.color),r.style.setProperty("--color-accent-hover",e.hoverColor||e.color))}image(e={},t){if(typeof e!="object")throw Error(`[GUI] image() first parameter must be an object. Received: ${typeof e}.`);let i;if(typeof e.path=="string")i=e.path;else throw typeof e.path==null?Error("[GUI] image() path must be provided."):Error("[GUI] image() path must be a string.");let r=i.replace(/^.*[\\\/]/,""),o;e.name==null?o=r:o=typeof e.name=="string"&&e.name||" ";const s=e.selected===!0,a=e.selectionBorder!==!1;let n="";e.width&&(typeof e.width=="number"&&(e.width+="px"),n+=`flex: 0 0 calc(${e.width} - 5px); `),e.height&&(typeof e.height=="number"&&(e.height+="px"),n+=`height: ${e.height}; `),this.imageContainer||(this.imageContainer=this._createElement({class:"p-gui__image-container"}));var l=this._createElement({class:"p-gui__image",inline:"background-image: url("+i+"); "+n,parent:this.imageContainer});s&&a&&l.classList.add("p-gui__image--selected"),this._createElement({parent:l,class:"p-gui__image-text",textContent:o}),typeof t=="function"&&(l.onclick=()=>{let g=this.imageContainer.querySelectorAll(".p-gui__image--selected");for(let h=0;h<g.length;h++)g[h].classList.remove("p-gui__image--selected");a&&l.classList.add("p-gui__image--selected"),t({path:i,text:o})})}slider(e={},t){if(typeof e!="object")throw Error(`[GUI] slider() first parameter must be an object. Received: ${typeof e}.`);let i=typeof e.name=="string"&&e.name||" ",r=!1,o=null,s=e.obj||e.object,a=e.prop||e.property,n=typeof e.value=="number"?e.value:null,l=e.min??0,g=e.max??1,h=e.step||(g-l)/100;if(n!==null)(a!=null||s!=null)&&console.warn('[GUI] slider() "obj" and "property" parameters are ignored when a "value" parameter is used.');else if(a!=null&&s!=null){if(typeof a!="string")throw Error(`[GUI] slider() "prop" (or "property") parameter must be an string. Received: ${typeof a}.`);if(typeof s!="object")throw Error(`[GUI] slider() "obj" (or "object") parameter must be an object. Received: ${typeof s}.`);i==" "&&(i=a),o=this.propReferences.push(s[a])-1,r=!0}else(a!=null&&s==null||a==null&&s==null)&&console.warn('[GUI] slider() "obj" and "prop" parameters must be used together.'),n=(g-l)/2;this.imageContainer=null;var u=this._createElement({class:"p-gui__slider",textContent:i}),f=this._createElement({parent:u,el:"input",class:"p-gui__slider-ctrl",customAttributes:{type:"range",min:l,max:g,step:h,value:r?s[a]:n}}),x=this._createElement({parent:u,class:"p-gui__slider-value",textContent:String(r?s[a]:n)});f.addEventListener("input",()=>{x.textContent=f.value,r&&(s[a]=f.value),typeof t=="function"&&t(parseFloat(f.value))}),r&&Object.defineProperty(s,a,{set:b=>{this.propReferences[o]=b,f.value=b,x.textContent=String(b)},get:()=>this.propReferences[o]})}toggle(e={},t){if(typeof e!="object")throw Error(`[GUI] toggle() first parameter must be an object. Received: ${typeof e}.`);let i=typeof e.name=="string"&&e.name||" ",r=e.value===!0;this.imageContainer=null;let o=this._createElement({class:"p-gui__switch",onclick:a=>{let n=a.target.childNodes[1],l=!0;n.classList.contains("p-gui__switch-checkbox--active")&&(l=!1),n.classList.toggle("p-gui__switch-checkbox--active"),typeof t=="function"&&t(l)},textContent:i}),s=r?" p-gui__switch-checkbox--active":"";this._createElement({parent:o,class:"p-gui__switch-checkbox"+s})}list(e={},t){if(typeof e!="object")throw Error(`[GUI] list() first parameter must be an object. Received: ${typeof e}.`);let i=typeof e.name=="string"?e.name:" ",r=Array.isArray(e.values)?e.values:null,o=(()=>{if(!r)return null;if(typeof e.value=="string")return r.indexOf(e.value);if(typeof e.value=="number")return e.value})();console.log("->",o),t=typeof t=="function"?t:null,this.imageContainer=null;let s=this._createElement({class:"p-gui__list",textContent:i}),a=this._createElement({parent:s,el:"select",class:"p-gui__list-dropdown",onchange:n=>{t&&t(n.target.value)}});r&&r.forEach((n,l)=>{let g=this._createElement({parent:a,el:"option",customAttributes:{value:n},textContent:n});o==l&&g.setAttribute("selected","")})}options(e,t){if(typeof e!="object")throw Error(`[GUI] options() first parameter must be an object. Received: ${typeof e}.`);this.list(e,t)}vector2(e={},t){if(typeof e!="object")throw Error(`[GUI] vector2() first parameter must be an object. Received: ${typeof e}.`);let i=typeof e.name=="string"&&e.name||" ";const r=e.x.min??0,o=e.x.max??1,s=e.y.min??0,a=e.y.max??1,n=e.x.obj||e.x.object,l=e.x.prop||e.x.property,g=this.propReferences.push(n[l])-1,h=e.y.obj||e.y.object,u=e.y.prop||e.y.property,f=this.propReferences.push(h[u])-1;t=typeof t=="function"?t:null,this.imageContainer=null;const x=this._createElement({class:"p-gui__vector2",textContent:i}),b=this._createElement({parent:x,class:"p-gui__vector-value",textContent:n[l]+", "+h[u]}),p=this._createElement({parent:x,el:"div",class:"p-gui__vector2-area",onclick:d=>{n[l]=parseFloat(this._mapLinear(d.offsetX,0,p.clientWidth,r,o).toFixed(2)),h[u]=parseFloat(this._mapLinear(d.offsetY,0,p.clientHeight,a,s).toFixed(2)),t&&t(n[l],n[u])}});let y=!1;p.addEventListener("pointerdown",d=>{y=!0}),p.addEventListener("pointerup",()=>{y=!1}),p.addEventListener("pointermove",d=>{y&&(n[l]=parseFloat(this._mapLinear(d.offsetX,0,p.clientWidth,r,o).toFixed(2)),h[u]=parseFloat(this._mapLinear(d.offsetY,0,p.clientHeight,a,s).toFixed(2)),t&&t(n[l],n[u]))}),this._createElement({parent:p,class:"p-gui__vector2-line p-gui__vector2-line-x"}),this._createElement({parent:p,class:"p-gui__vector2-line p-gui__vector2-line-y"});const m=this._createElement({parent:p,class:"p-gui__vector2-dot"});m.style.left=this._mapLinear(n[l],r,o,0,p.clientWidth)+"px",m.style.top=this._mapLinear(h[u],s,a,p.clientHeight,0)+"px",Object.defineProperty(n,l,{set:d=>{this.propReferences[g]=d,m.style.left=this._mapLinear(d,r,o,0,p.clientWidth)+"px",b.textContent=String(d)+", "+h[u]},get:()=>this.propReferences[g]}),Object.defineProperty(h,u,{set:d=>{this.propReferences[f]=d,m.style.top=this._mapLinear(d,s,a,p.clientHeight,0)+"px",b.textContent=n[l]+", "+String(d)},get:()=>this.propReferences[f]})}color(e={},t){if(typeof e!="object")throw Error(`[GUI] color() first parameter must be an object. Received: ${typeof e}.`);let i=typeof e.name=="string"&&e.name||" ",r;typeof e.value=="string"&&(e.value.length!=7||e.value[0]!="#"?console.error(`[GUI] color() 'value' parameter must be an hexadecimal string in the format "#ffffff". Received: "${e.value}".`):r=e.value),r||(r="#000000");const o=this._createElement({el:"div",class:"p-gui__color",textContent:i}),s=this._createElement({parent:o,el:"input",class:"p-gui__color-picker",type:"color",value:r});typeof t=="function"&&s.addEventListener("input",()=>{t(s.value)})}folder(e={}){let t=typeof e.closed=="boolean"?e.closed:!1,i=e.name||"",r=e.color||null,o=e.maxHeight||null;this.imageContainer=null;let s="p-gui__folder";this.folders.length==0&&(s+=" p-gui__folder--first"),t&&(s+=" p-gui__folder--closed");let a=r?`background-color: ${r};`:"";a+=o?`max-height: ${o}px;`:"";let n=this._createElement({class:s,inline:a});this._createElement({innerHTML:`<span class="p-gui__folder-arrow"></span>${i}`,class:"p-gui__folder-header",onclick:function(){this.parentNode.classList.toggle("p-gui__folder--closed")},parent:n});let l=new c({isFolder:!0,folderOptions:{wrapper:n}});return this.folders.push(l),l}_makeDraggable(){var e=this;this.header.addEventListener("pointerdown",t),this.header.addEventListener("pointerup",r);function t(o){o.preventDefault(),e.position.initX=e.position.x,e.position.initY=e.position.y,e.position.prevX=o.clientX,e.position.prevY=o.clientY,document.addEventListener("pointermove",i)}function i(o){o.preventDefault(),e.hasBeenDragged||(e.hasBeenDragged=!0,e.wrapper.setAttribute("data-dragged","true")),e.position.x=e.position.initX+o.clientX-e.position.prevX,e.position.y=e.position.initY+o.clientY-e.position.prevY,e.wrapper.style.transform="translate3d("+e.position.x+"px,"+e.position.y+"px,0)"}function r(o){document.removeEventListener("pointermove",i)}}toggleClose(){this.closed=!this.closed,this.wrapper.classList.toggle("p-gui--collapsed")}kill(){this.wrapper.remove()}_mapLinear(e,t,i,r,o){return r+(e-t)*(o-r)/(i-t)}}return c});
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -484,6 +484,18 @@ export default class GUI {
|
|
|
484
484
|
|
|
485
485
|
let name = typeof params.name == 'string' ? params.name : ' ';
|
|
486
486
|
let values = Array.isArray(params.values) ? params.values : null;
|
|
487
|
+
let value = (() => {
|
|
488
|
+
if (!values) {
|
|
489
|
+
return null;
|
|
490
|
+
}
|
|
491
|
+
if (typeof params.value == 'string') {
|
|
492
|
+
return values.indexOf(params.value);
|
|
493
|
+
}
|
|
494
|
+
if (typeof params.value == 'number') {
|
|
495
|
+
return params.value;
|
|
496
|
+
}
|
|
497
|
+
})();
|
|
498
|
+
console.log('->',value);
|
|
487
499
|
callback = typeof callback == 'function' ? callback : null;
|
|
488
500
|
|
|
489
501
|
this.imageContainer = null;
|
|
@@ -504,16 +516,23 @@ export default class GUI {
|
|
|
504
516
|
}
|
|
505
517
|
});
|
|
506
518
|
|
|
507
|
-
values
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
519
|
+
if (values)
|
|
520
|
+
{
|
|
521
|
+
values.forEach((item, index) =>
|
|
522
|
+
{
|
|
523
|
+
let option = this._createElement({
|
|
524
|
+
parent: select,
|
|
525
|
+
el: 'option',
|
|
526
|
+
customAttributes: {
|
|
527
|
+
value: item,
|
|
528
|
+
},
|
|
529
|
+
textContent: item
|
|
530
|
+
});
|
|
531
|
+
if (value == index) {
|
|
532
|
+
option.setAttribute('selected', '');
|
|
533
|
+
}
|
|
515
534
|
});
|
|
516
|
-
}
|
|
535
|
+
}
|
|
517
536
|
}
|
|
518
537
|
|
|
519
538
|
options(params, callback) {
|