/** * * @authors yutent (yutent.io@gmail.com) * @date 2022-06-23 15:46:28 * @version v1.0.6 * */ var c=Object.defineProperty;var u=(l,s,t)=>s in l?c(l,s,{enumerable:!0,configurable:!0,writable:!0,value:t}):l[s]=t;var n=(l,s,t)=>(u(l,typeof s!="symbol"?s+"":s,t),t);import"../scroll/index.js";import"../icon/index.js";import d from"../utils.js";function b(l,s){let t="";for(let e of l)if(e.list){t+=`
${e.name}
`;for(let i of e.list)s.DICT[i.value]=i,i.disabled||s.LIST.push(i),t+=`
${i.label}
`}else e.disabled||s.LIST.push(e),s.DICT[e.value]=e,t+=`
${e.label}
`;return t}class p extends HTMLElement{constructor(){super();n(this,"props",{label:"",placeholder:"",multi:"",value:"",mvidx:null,readonly:!1,disabled:!1});Object.defineProperty(this,"root",{value:this.attachShadow({mode:"open"}),writable:!0,enumerable:!1,configurable:!0}),this.root.innerHTML='
',this.__OUTER__=this.root.children[1],this.__INPUT__=this.__OUTER__.children[0],this.__OPTG__=this.__OUTER__.children[2]}static get observedAttributes(){return["label","placeholder","multi","value","mvidx","readonly","disabled"]}get readOnly(){return this.props.readonly}set readOnly(t){var e=typeof t;t!==this.props.readonly&&(e==="boolean"&&t||e!=="boolean"?(this.props.readonly=!0,this.setAttribute("readonly","")):(this.props.readonly=!1,this.removeAttribute("readonly")))}get disabled(){return this.props.disabled}set disabled(t){var e=typeof t;t!==this.props.disabled&&(e==="boolean"&&t||e!=="boolean"?(this.props.disabled=!0,this.setAttribute("disabled",""),this.__INPUT__.setAttribute("disabled","")):(this.props.disabled=!1,this.removeAttribute("disabled"),this.__INPUT__.removeAttribute("disabled")))}get value(){return this.props.value}set value(t){var{DICT:e,active:i}=this.props;this.props.value=t,this.__INPUT__.value=e&&e[t]&&e[t].label||t,i||this._updateStyle()}_renderOptions(t){this.props.DICT={},this.props.LIST=[];var e=this.__OPTG__.firstElementChild.firstElementChild;e.innerHTML=b(t,this.props),this.props.ITEMS=Array.from(e.children).filter(i=>i.tagName==="DD"&&!i.hasAttribute("disabled")),this.value=this.props.value}_moveSelect(t){var{LIST:e,DICT:i,ITEMS:r}=this.props;if(e&&e.length){t.preventDefault();var o=t.keyCode===38?-1:1;this.props.mvidx===null?this.props.mvidx=0:this.props.mvidx+=o,this.props.mvidx<0?this.props.mvidx=0:this.props.mvidx>r.length-1&&(this.props.mvidx=r.length-1),r.forEach((a,h)=>{h===this.props.mvidx?(this.__OPTG__.firstElementChild.scrollTop=a.offsetTop-150,a.setAttribute("focus","")):a.removeAttribute("focus")})}}_updateStyle(t){var{LIST:e,ITEMS:i,value:r}=this.props;if(e&&e.length){if(t===void 0){for(let o=-1,a;a=e[++o];)if(r===a.value){t=o;break}}this.props.mvidx=t,i.forEach((o,a)=>{a===t?o.setAttribute("focus",""):o.removeAttribute("focus")})}}_fetchSelect(t,e){var i=this.props.LIST[t];this.value=i.value,this.dispatchEvent(new CustomEvent("select",{detail:i})),e&&this._updateStyle(t),this.props.active=!1,this.__OPTG__.classList.remove("show")}connectedCallback(){function t(){var{x:e,y:i,width:r}=this.getBoundingClientRect(),o=this.getAttribute("size");this.props.active=!0,o&&o==="mini"?i+=32:i+=50,this.__OPTG__.style.cssText=`left:${e}px;top:${i}px;width:${r}px;`}this._handleKeydown=d.catch(this.__INPUT__,"keydown",e=>{if(!(this.disabled||this.readOnly)){if(e.keyCode===38||e.keyCode===40){if(!this.props.active){t.call(this),this.__OPTG__.classList.toggle("show",!0);return}return this._moveSelect(e)}if(e.keyCode===13&&this.props.mvidx!==null&&this.props.active)return this._fetchSelect(this.props.mvidx)}}),this._activeFn=d.bind(this.__INPUT__,"click",e=>{var{options:i}=this.props;this.disabled||this.readOnly||(t.call(this),this.__OPTG__.classList.toggle("show"))}),this._handleSelect=d.bind(this.__OPTG__,"click",e=>{e.target.tagName==="DD"&&!e.target.hasAttribute("disabled")&&(this._fetchSelect(+e.target.dataset.idx,!0),this.dispatchEvent(new CustomEvent("input")))}),this._inactiveFn=d.outside(this,e=>{this.__OPTG__.classList.toggle("show",!1),this.props.active=!1})}attributeChangedCallback(t,e,i){if(e!==i)switch(t){case"label":case"placeholder":this.__INPUT__.setAttribute("placeholder",i);break;case"value":this.value=i;break;case"readonly":case"disabled":var r=t;r==="readonly"&&(r="readOnly"),this[r]=i!==null;break}}disconnectedCallback(){d.unbind(this.__INPUT__,"keydown",this._handleKeydown),d.unbind(this.__INPUT__,"click",this._activeFn),d.unbind(this.__OPTG__,"click",this._handleSelect),d.clearOutside(this._inactiveFn)}}customElements.get("wc-select")||customElements.define("wc-select",p);export{p as default};