UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

2 lines (1 loc) 13.2 kB
import e from"primevue/button";import t from"primevue/icons/angledoubledown";import i from"primevue/icons/angledoubleup";import n from"primevue/icons/angledown";import o from"primevue/icons/angleup";import l from"primevue/ripple";import{UniqueComponentId as s,ObjectUtils as r,DomHandler as d}from"primevue/utils";import{resolveComponent as a,resolveDirective as c,openBlock as h,createElementBlock as u,normalizeClass as p,createElementVNode as m,renderSlot as f,createVNode as b,mergeProps as v,withCtx as y,createCommentVNode as g,TransitionGroup as I,Fragment as x,renderList as w,withDirectives as $}from"vue";var _={name:"OrderList",emits:["update:modelValue","reorder","update:selection","selection-change","focus","blur"],props:{modelValue:{type:Array,default:null},selection:{type:Array,default:null},dataKey:{type:String,default:null},listStyle:{type:null,default:null},metaKeySelection:{type:Boolean,default:!0},responsive:{type:Boolean,default:!0},breakpoint:{type:String,default:"960px"},stripedRows:{type:Boolean,default:!1},tabindex:{type:Number,default:0},listProps:{type:null,default:null},moveUpButtonProps:{type:null,default:null},moveTopButtonProps:{type:null,default:null},moveDownButtonProps:{type:null,default:null},moveBottomButtonProps:{type:null,default:null},"aria-labelledby":{type:String,default:null},"aria-label":{type:String,default:null}},itemTouched:!1,reorderDirection:null,styleElement:null,list:null,data(){return{id:this.$attrs.id,d_selection:this.selection,focused:!1,focusedOptionIndex:-1}},watch:{"$attrs.id":function(e){this.id=e||s()}},beforeUnmount(){this.destroyStyle()},updated(){this.reorderDirection&&(this.updateListScroll(),this.reorderDirection=null)},mounted(){this.id=this.id||s(),this.responsive&&this.createStyle()},methods:{getItemKey(e,t){return this.dataKey?r.resolveFieldData(e,this.dataKey):t},isSelected(e){return-1!=r.findIndexInList(e,this.d_selection)},onListFocus(e){const t=d.findSingle(this.list,"li.p-orderlist-item.p-highlight"),i=r.findIndexInList(t,this.list.children);this.focused=!0;const n=-1!==this.focusedOptionIndex?this.focusedOptionIndex:t?i:-1;this.changeFocusedOptionIndex(n),this.$emit("focus",e)},onListBlur(e){this.focused=!1,this.focusedOptionIndex=-1,this.$emit("blur",e)},onListKeyDown(e){switch(e.code){case"ArrowDown":this.onArrowDownKey(e);break;case"ArrowUp":this.onArrowUpKey(e);break;case"Home":this.onHomeKey(e);break;case"End":this.onEndKey(e);break;case"Enter":this.onEnterKey(e);break;case"Space":this.onSpaceKey(e);break;case"KeyA":e.ctrlKey&&(this.d_selection=[...this.modelValue],this.$emit("update:selection",this.d_selection))}},onOptionMouseDown(e){this.focused=!0,this.focusedOptionIndex=e},onArrowDownKey(e){const t=this.findNextOptionIndex(this.focusedOptionIndex);this.changeFocusedOptionIndex(t),e.shiftKey&&this.onEnterKey(e),e.preventDefault()},onArrowUpKey(e){const t=this.findPrevOptionIndex(this.focusedOptionIndex);this.changeFocusedOptionIndex(t),e.shiftKey&&this.onEnterKey(e),e.preventDefault()},onHomeKey(e){if(e.ctrlKey&&e.shiftKey){const e=d.find(this.list,"li.p-orderlist-item"),t=d.findSingle(this.list,`li.p-orderlist-item[id=${this.focusedOptionIndex}]`),i=[...e].findIndex((e=>e===t));this.d_selection=[...this.modelValue].slice(0,i+1),this.$emit("update:selection",this.d_selection)}else this.changeFocusedOptionIndex(0);e.preventDefault()},onEndKey(e){if(e.ctrlKey&&e.shiftKey){const e=d.find(this.list,"li.p-orderlist-item"),t=d.findSingle(this.list,`li.p-orderlist-item[id=${this.focusedOptionIndex}]`),i=[...e].findIndex((e=>e===t));this.d_selection=[...this.modelValue].slice(i,e.length),this.$emit("update:selection",this.d_selection)}else this.changeFocusedOptionIndex(d.find(this.list,"li.p-orderlist-item").length-1);e.preventDefault()},onEnterKey(e){const t=d.find(this.list,"li.p-orderlist-item"),i=d.findSingle(this.list,`li.p-orderlist-item[id=${this.focusedOptionIndex}]`),n=[...t].findIndex((e=>e===i));this.onItemClick(e,this.modelValue[n],n),e.preventDefault()},onSpaceKey(e){if(e.shiftKey){const e=d.find(this.list,"li.p-orderlist-item"),t=r.findIndexInList(this.d_selection[0],[...this.modelValue]),i=d.findSingle(this.list,`li.p-orderlist-item[id=${this.focusedOptionIndex}]`),n=[...e].findIndex((e=>e===i));this.d_selection=[...this.modelValue].slice(Math.min(t,n),Math.max(t,n)+1),this.$emit("update:selection",this.d_selection)}else this.onEnterKey(e)},findNextOptionIndex(e){const t=[...d.find(this.list,"li.p-orderlist-item")].findIndex((t=>t.id===e));return t>-1?t+1:0},findPrevOptionIndex(e){const t=[...d.find(this.list,"li.p-orderlist-item")].findIndex((t=>t.id===e));return t>-1?t-1:0},changeFocusedOptionIndex(e){const t=d.find(this.list,"li.p-orderlist-item");let i=e>=t.length?t.length-1:e<0?0:e;this.focusedOptionIndex=t[i].getAttribute("id"),this.scrollInView(t[i].getAttribute("id"))},scrollInView(e){const t=d.findSingle(this.list,`li[id="${e}"]`);t&&t.scrollIntoView&&t.scrollIntoView({block:"nearest",inline:"start"})},moveUp(e){if(this.d_selection){let t=[...this.modelValue];for(let e=0;e<this.d_selection.length;e++){let i=this.d_selection[e],n=r.findIndexInList(i,t);if(0===n)break;{let e=t[n],i=t[n-1];t[n-1]=e,t[n]=i}}this.reorderDirection="up",this.$emit("update:modelValue",t),this.$emit("reorder",{originalEvent:e,value:t,direction:this.reorderDirection})}},moveTop(e){if(this.d_selection){let t=[...this.modelValue];for(let e=0;e<this.d_selection.length;e++){let i=this.d_selection[e],n=r.findIndexInList(i,t);if(0===n)break;{let e=t.splice(n,1)[0];t.unshift(e)}}this.reorderDirection="top",this.$emit("update:modelValue",t),this.$emit("reorder",{originalEvent:e,value:t,direction:this.reorderDirection})}},moveDown(e){if(this.d_selection){let t=[...this.modelValue];for(let e=this.d_selection.length-1;e>=0;e--){let i=this.d_selection[e],n=r.findIndexInList(i,t);if(n===t.length-1)break;{let e=t[n],i=t[n+1];t[n+1]=e,t[n]=i}}this.reorderDirection="down",this.$emit("update:modelValue",t),this.$emit("reorder",{originalEvent:e,value:t,direction:this.reorderDirection})}},moveBottom(e){if(this.d_selection){let t=[...this.modelValue];for(let e=this.d_selection.length-1;e>=0;e--){let i=this.d_selection[e],n=r.findIndexInList(i,t);if(n===t.length-1)break;{let e=t.splice(n,1)[0];t.push(e)}}this.reorderDirection="bottom",this.$emit("update:modelValue",t),this.$emit("reorder",{originalEvent:e,value:t,direction:this.reorderDirection})}},onItemClick(e,t,i){this.itemTouched=!1;const n=r.findIndexInList(t,this.d_selection),o=-1!=n,l=!this.itemTouched&&this.metaKeySelection,s=d.find(this.list,".p-orderlist-item")[i].getAttribute("id");if(this.focusedOptionIndex=s,l){const l=e.metaKey||e.ctrlKey;o&&l?this.d_selection=this.d_selection.filter(((e,t)=>t!==n)):(this.d_selection=l&&this.d_selection?[...this.d_selection]:[],r.insertIntoOrderedArray(t,i,this.d_selection,this.modelValue))}else o?this.d_selection=this.d_selection.filter(((e,t)=>t!==n)):(this.d_selection=this.d_selection?[...this.d_selection]:[],r.insertIntoOrderedArray(t,i,this.d_selection,this.modelValue));this.$emit("update:selection",this.d_selection),this.$emit("selection-change",{originalEvent:e,value:this.d_selection})},onItemTouchEnd(){this.itemTouched=!0},findNextItem(e){let t=e.nextElementSibling;return t?d.hasClass(t,"p-orderlist-item")?t:this.findNextItem(t):null},findPrevItem(e){let t=e.previousElementSibling;return t?d.hasClass(t,"p-orderlist-item")?t:this.findPrevItem(t):null},findFirstItem(){return d.findSingle(this.list,".p-orderlist-item")},findLastItem(){const e=d.find(this.list,".p-orderlist-item");return e[e.length-1]},itemClass(e,t){return["p-orderlist-item",{"p-highlight":this.isSelected(e),"p-focus":t===this.focusedOptionId}]},updateListScroll(){const e=d.find(this.list,".p-orderlist-item.p-highlight");if(e&&e.length)switch(this.reorderDirection){case"up":d.scrollInView(this.list,e[0]);break;case"top":this.list.scrollTop=0;break;case"down":d.scrollInView(this.list,e[e.length-1]);break;case"bottom":this.list.scrollTop=this.list.scrollHeight}},createStyle(){if(!this.styleElement){this.$el.setAttribute(this.attributeSelector,""),this.styleElement=document.createElement("style"),this.styleElement.type="text/css",document.head.appendChild(this.styleElement);let e=`\n@media screen and (max-width: ${this.breakpoint}) {\n .p-orderlist[${this.attributeSelector}] {\n flex-direction: column;\n }\n\n .p-orderlist[${this.attributeSelector}] .p-orderlist-controls {\n padding: var(--content-padding);\n flex-direction: row;\n }\n\n .p-orderlist[${this.attributeSelector}] .p-orderlist-controls .p-button {\n margin-right: var(--inline-spacing);\n margin-bottom: 0;\n }\n\n .p-orderlist[${this.attributeSelector}] .p-orderlist-controls .p-button:last-child {\n margin-right: 0;\n }\n}\n`;this.styleElement.innerHTML=e}},destroyStyle(){this.styleElement&&(document.head.removeChild(this.styleElement),this.styleElement=null)},moveDisabled(){if(!this.d_selection||!this.d_selection.length)return!0},listRef(e){this.list=e?e.$el:void 0}},computed:{containerClass(){return["p-orderlist p-component",{"p-orderlist-striped":this.stripedRows}]},attributeSelector:()=>s(),focusedOptionId(){return-1!==this.focusedOptionIndex?this.focusedOptionIndex:null},moveUpAriaLabel(){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria.moveUp:void 0},moveTopAriaLabel(){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria.moveTop:void 0},moveDownAriaLabel(){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria.moveDown:void 0},moveBottomAriaLabel(){return this.$primevue.config.locale.aria?this.$primevue.config.locale.aria.moveBottom:void 0}},components:{OLButton:e,AngleUpIcon:o,AngleDownIcon:n,AngleDoubleUpIcon:i,AngleDoubleDownIcon:t},directives:{ripple:l}};const D={class:"p-orderlist-controls"},K={class:"p-orderlist-list-container"},S={key:0,class:"p-orderlist-header"},O=["id","onClick","aria-selected","onMousedown"];!function(e,t){void 0===t&&(t={});var i=t.insertAt;if(e&&"undefined"!=typeof document){var n=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css","top"===i&&n.firstChild?n.insertBefore(o,n.firstChild):n.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}}("\n.p-orderlist {\n display: flex;\n}\n.p-orderlist-controls {\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n.p-orderlist-list-container {\n flex: 1 1 auto;\n}\n.p-orderlist-list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n overflow: auto;\n min-height: 12rem;\n max-height: 24rem;\n}\n.p-orderlist-item {\n cursor: pointer;\n overflow: hidden;\n position: relative;\n}\n.p-orderlist.p-state-disabled .p-orderlist-item,\n.p-orderlist.p-state-disabled .p-button {\n cursor: default;\n}\n.p-orderlist.p-state-disabled .p-orderlist-list {\n overflow: hidden;\n}\n"),_.render=function(e,t,i,n,o,l){const s=a("AngleUpIcon"),r=a("OLButton"),d=a("AngleDoubleUpIcon"),_=a("AngleDownIcon"),A=a("AngleDoubleDownIcon"),k=c("ripple");return h(),u("div",{class:p(l.containerClass)},[m("div",D,[f(e.$slots,"controlsstart"),b(r,v({type:"button",onClick:l.moveUp,"aria-label":l.moveUpAriaLabel,disabled:l.moveDisabled()},i.moveUpButtonProps),{icon:y((()=>[f(e.$slots,"moveupicon",{},(()=>[b(s)]))])),_:3},16,["onClick","aria-label","disabled"]),b(r,v({type:"button",onClick:l.moveTop,"aria-label":l.moveTopAriaLabel,disabled:l.moveDisabled()},i.moveTopButtonProps),{icon:y((()=>[f(e.$slots,"movetopicon",{},(()=>[b(d)]))])),_:3},16,["onClick","aria-label","disabled"]),b(r,v({type:"button",onClick:l.moveDown,"aria-label":l.moveDownAriaLabel,disabled:l.moveDisabled()},i.moveDownButtonProps),{icon:y((()=>[f(e.$slots,"movedownicon",{},(()=>[b(_)]))])),_:3},16,["onClick","aria-label","disabled"]),b(r,v({type:"button",onClick:l.moveBottom,"aria-label":l.moveBottomAriaLabel,disabled:l.moveDisabled()},i.moveBottomButtonProps),{icon:y((()=>[f(e.$slots,"movebottomicon",{},(()=>[b(A)]))])),_:3},16,["onClick","aria-label","disabled"]),f(e.$slots,"controlsend")]),m("div",K,[e.$slots.header?(h(),u("div",S,[f(e.$slots,"header")])):g("",!0),b(I,v({ref:l.listRef,id:o.id+"_list",name:"p-orderlist-flip",tag:"ul",class:"p-orderlist-list",style:i.listStyle,role:"listbox","aria-multiselectable":"true",tabindex:i.tabindex,"aria-activedescendant":o.focused?l.focusedOptionId:void 0,"aria-label":e.ariaLabel,"aria-labelledby":e.ariaLabelledby,onFocus:l.onListFocus,onBlur:l.onListBlur,onKeydown:l.onListKeyDown},i.listProps),{default:y((()=>[(h(!0),u(x,null,w(i.modelValue,((i,n)=>$((h(),u("li",{key:l.getItemKey(i,n),id:o.id+"_"+n,role:"option",class:p(l.itemClass(i,`${o.id}_${n}`)),onClick:e=>l.onItemClick(e,i,n),onTouchend:t[0]||(t[0]=(...e)=>l.onItemTouchEnd&&l.onItemTouchEnd(...e)),"aria-selected":l.isSelected(i),onMousedown:e=>l.onOptionMouseDown(n)},[f(e.$slots,"item",{item:i,index:n})],42,O)),[[k]]))),128))])),_:3},16,["id","style","tabindex","aria-activedescendant","aria-label","aria-labelledby","onFocus","onBlur","onKeydown"])])],2)};export{_ as default};