add files
This commit is contained in:
parent
12990ad4ca
commit
31d82e3bec
43
example.html
Executable file
43
example.html
Executable file
@ -0,0 +1,43 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>My Custom Element</title>
|
||||
<meta charset="utf-8">
|
||||
<script src="tabs.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<j-tabs height="200px">
|
||||
<j-tab title="A" selected>
|
||||
<textarea style="height: 100%;">
|
||||
text a
|
||||
</textarea>
|
||||
</j-tab>
|
||||
<j-tab title="B">
|
||||
<textarea style="height: 100%;">
|
||||
text b
|
||||
</textarea>
|
||||
</j-tab>
|
||||
<j-tab title="C">
|
||||
<textarea style="height: 100%;">
|
||||
text c
|
||||
</textarea>
|
||||
</j-tab>
|
||||
<j-tab title="D">
|
||||
<j-tabs>
|
||||
<j-tab title="A" selected>
|
||||
<textarea style="height: 100%;">
|
||||
text c
|
||||
</textarea>
|
||||
</j-tab>
|
||||
<j-tab title="B">
|
||||
<textarea style="height: 100%;">
|
||||
text cxxxx
|
||||
</textarea>
|
||||
</j-tab>
|
||||
</j-tabs>
|
||||
</j-tab>
|
||||
</j-tabs>
|
||||
|
||||
</body>
|
||||
</html>
|
173
tabs.js
Executable file
173
tabs.js
Executable file
@ -0,0 +1,173 @@
|
||||
|
||||
"use strict";
|
||||
|
||||
|
||||
class TabsElement extends HTMLElement {
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.attachShadow({mode: 'open'});
|
||||
|
||||
this.style_ele = document.createElement('style');
|
||||
this.style_ele.innerHTML = `
|
||||
|
||||
.wrapper_div{
|
||||
border: 1px solid #c5c5c5;
|
||||
padding: 1px;
|
||||
|
||||
}
|
||||
|
||||
.button_div{
|
||||
|
||||
|
||||
}
|
||||
|
||||
.tab_btn{
|
||||
|
||||
color: red;
|
||||
|
||||
}
|
||||
|
||||
`;
|
||||
this.shadowRoot.appendChild(this.style_ele);
|
||||
|
||||
this.wrapper_div = document.createElement('div');
|
||||
this.wrapper_div.classList.add("wrapper_div");
|
||||
|
||||
this.shadowRoot.appendChild(this.wrapper_div);
|
||||
this.wrapper_div.style.height = this.getAttribute('height');
|
||||
|
||||
this.buttonbar = document.createElement('div');
|
||||
this.buttonbar.classList.add("button_div");
|
||||
this.buttonbar.style.display = "flex";
|
||||
this.buttonbar.style["flex-direction"] = "row";
|
||||
this.wrapper_div.appendChild(this.buttonbar);
|
||||
|
||||
this.tabs_div = document.createElement('div');
|
||||
this.wrapper_div.appendChild(this.tabs_div);
|
||||
|
||||
this.slot_ele = document.createElement('slot');
|
||||
this.shadowRoot.appendChild(this.slot_ele);
|
||||
|
||||
this.id_counter = 0;
|
||||
}
|
||||
|
||||
|
||||
clearTabs(){
|
||||
this.buttonbar.innerHTML = "";
|
||||
this.tabs_div.innerHTML = "";
|
||||
}
|
||||
|
||||
addTab(title, content="", active=false){
|
||||
let that = this;
|
||||
let id = this.id_counter;
|
||||
let btn = document.createElement('button');
|
||||
btn.classList.add("tab_btn");
|
||||
btn.setAttribute("id", "btn_"+id);
|
||||
btn.onclick = ()=>{
|
||||
that.setActiveTabById(id);
|
||||
};
|
||||
btn.innerHTML = title;
|
||||
this.buttonbar.appendChild(btn);
|
||||
|
||||
let tab_div = document.createElement('div');
|
||||
tab_div.setAttribute("id", "tab_div_"+this.id_counter);
|
||||
tab_div.style.display = "none";
|
||||
tab_div.innerHTML = content;
|
||||
|
||||
this.tabs_div.appendChild(tab_div);
|
||||
if(active){
|
||||
this.setActiveTabById(id);
|
||||
}
|
||||
this.id_counter++;
|
||||
return this.id_counter - 1;
|
||||
}
|
||||
|
||||
setActiveTabById(id){
|
||||
for(let i=0; i<this.tabs_div.children.length; i++){
|
||||
let tab_div = this.tabs_div.children[i];
|
||||
if(tab_div.hasAttribute("id") && tab_div.getAttribute("id") === "tab_div_"+id){
|
||||
this.children[i].setAttribute("selected", "selected");
|
||||
tab_div.style.display = "block";
|
||||
}
|
||||
else{
|
||||
if(this.children[i].hasAttribute("selected")){
|
||||
this.children[i].removeAttribute("selected");
|
||||
}
|
||||
tab_div.style.display = "none";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
connectedCallback(){
|
||||
this.wrapper_div.style.height = this.getAttribute('height');
|
||||
let that = this;
|
||||
this.slot_ele.addEventListener('slotchange', e => {
|
||||
that.clearTabs();
|
||||
for(let i=0; i<that.children.length; i++){
|
||||
let ele = that.children[i];
|
||||
this.addTab(ele.getAttribute("title"), ele.innerHTML, ele.hasAttribute("selected"));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
disconnectedCallback() {
|
||||
|
||||
}
|
||||
|
||||
attributeChangedCallback(name, oldValue, newValue) {
|
||||
if(name === "height"){
|
||||
this.wrapper_div.style.height = newValue;
|
||||
}
|
||||
}
|
||||
|
||||
get height(){
|
||||
return this.wrapper_div.style.height;
|
||||
}
|
||||
|
||||
set height(x){
|
||||
this.wrapper_div.style.height = x;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Neues Element definieren
|
||||
customElements.define('j-tabs', TabsElement);
|
||||
|
||||
class TabElement extends HTMLElement {
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
this.attachShadow({mode: 'open'});
|
||||
this.div = document.createElement('div');
|
||||
this.div.style.display = "none";
|
||||
this.shadowRoot.appendChild(this.div);
|
||||
this.slot_ele = document.createElement('slot');
|
||||
this.div.appendChild(this.slot_ele);
|
||||
}
|
||||
|
||||
connectedCallback(){
|
||||
|
||||
}
|
||||
|
||||
disconnectedCallback() {
|
||||
|
||||
}
|
||||
|
||||
attributeChangedCallback(name, oldValue, newValue) {
|
||||
|
||||
}
|
||||
|
||||
get title(){
|
||||
|
||||
}
|
||||
|
||||
set title(x){
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Neues Element definieren
|
||||
customElements.define('j-tab', TabElement);
|
||||
|
Loading…
x
Reference in New Issue
Block a user