primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue) [ • 13.8 kB
JavaScript
import e from"primevue/basecomponent";import t from"primevue/button";import i from"primevue/icons/angledoubledown";import o from"primevue/icons/angledoubleup";import n from"primevue/icons/angledown";import s from"primevue/icons/angleup";import l from"primevue/ripple";import{UniqueComponentId as r,ObjectUtils as d,DomHandler as a}from"primevue/utils";import{resolveComponent as c,resolveDirective as p,openBlock as h,createElementBlock as u,mergeProps as m,createElementVNode as f,renderSlot as v,createVNode as b,withCtx as y,normalizeProps as g,guardReactiveProps as I,createCommentVNode as x,TransitionGroup as w,Fragment as $,renderList as _,withDirectives as D}from"vue";var O={name:"OrderList",extends:e,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||r()}},beforeUnmount(){this.destroyStyle()},updated(){this.reorderDirection&&(this.updateListScroll(),this.reorderDirection=null)},mounted(){this.id=this.id||r(),this.responsive&&this.createStyle()},methods:{getItemKey(e,t){return this.dataKey?d.resolveFieldData(e,this.dataKey):t},getPTOptions(e,t){return this.ptm(t,{context:{active:this.isSelected(e),focused:this.id===this.focusedOptionId}})},isSelected(e){return-1!=d.findIndexInList(e,this.d_selection)},onListFocus(e){const t=a.findSingle(this.list,"li.p-orderlist-item.p-highlight"),i=d.findIndexInList(t,this.list.children);this.focused=!0;const o=-1!==this.focusedOptionIndex?this.focusedOptionIndex:t?i:-1;this.changeFocusedOptionIndex(o),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=a.find(this.list,"li.p-orderlist-item"),t=a.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=a.find(this.list,"li.p-orderlist-item"),t=a.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(a.find(this.list,"li.p-orderlist-item").length-1);e.preventDefault()},onEnterKey(e){const t=a.find(this.list,"li.p-orderlist-item"),i=a.findSingle(this.list,`li.p-orderlist-item[id=${this.focusedOptionIndex}]`),o=[...t].findIndex((e=>e===i));this.onItemClick(e,this.modelValue[o],o),e.preventDefault()},onSpaceKey(e){if(e.shiftKey){const e=a.find(this.list,"li.p-orderlist-item"),t=d.findIndexInList(this.d_selection[0],[...this.modelValue]),i=a.findSingle(this.list,`li.p-orderlist-item[id=${this.focusedOptionIndex}]`),o=[...e].findIndex((e=>e===i));this.d_selection=[...this.modelValue].slice(Math.min(t,o),Math.max(t,o)+1),this.$emit("update:selection",this.d_selection)}else this.onEnterKey(e)},findNextOptionIndex(e){const t=[...a.find(this.list,"li.p-orderlist-item")].findIndex((t=>t.id===e));return t>-1?t+1:0},findPrevOptionIndex(e){const t=[...a.find(this.list,"li.p-orderlist-item")].findIndex((t=>t.id===e));return t>-1?t-1:0},changeFocusedOptionIndex(e){const t=a.find(this.list,"li.p-orderlist-item");let i=e>=t.length?t.length-1:e<0?0:e;this.focusedOptionIndex=t[i]?t[i].getAttribute("id"):-1,this.scrollInView(this.focusedOptionIndex)},scrollInView(e){const t=a.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],o=d.findIndexInList(i,t);if(0===o)break;{let e=t[o],i=t[o-1];t[o-1]=e,t[o]=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],o=d.findIndexInList(i,t);if(0===o)break;{let e=t.splice(o,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],o=d.findIndexInList(i,t);if(o===t.length-1)break;{let e=t[o],i=t[o+1];t[o+1]=e,t[o]=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],o=d.findIndexInList(i,t);if(o===t.length-1)break;{let e=t.splice(o,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 o=d.findIndexInList(t,this.d_selection),n=-1!=o,s=!this.itemTouched&&this.metaKeySelection,l=a.find(this.list,".p-orderlist-item")[i].getAttribute("id");if(this.focusedOptionIndex=l,s){const s=e.metaKey||e.ctrlKey;n&&s?this.d_selection=this.d_selection.filter(((e,t)=>t!==o)):(this.d_selection=s&&this.d_selection?[...this.d_selection]:[],d.insertIntoOrderedArray(t,i,this.d_selection,this.modelValue))}else n?this.d_selection=this.d_selection.filter(((e,t)=>t!==o)):(this.d_selection=this.d_selection?[...this.d_selection]:[],d.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?a.hasClass(t,"p-orderlist-item")?t:this.findNextItem(t):null},findPrevItem(e){let t=e.previousElementSibling;return t?a.hasClass(t,"p-orderlist-item")?t:this.findPrevItem(t):null},findFirstItem(){return a.findSingle(this.list,".p-orderlist-item")},findLastItem(){const e=a.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=a.find(this.list,".p-orderlist-item.p-highlight");if(e&&e.length)switch(this.reorderDirection){case"up":a.scrollInView(this.list,e[0]);break;case"top":this.list.scrollTop=0;break;case"down":a.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:()=>r(),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:t,AngleUpIcon:s,AngleDownIcon:n,AngleDoubleUpIcon:o,AngleDoubleDownIcon:i},directives:{ripple:l}};const S=["id","onClick","aria-selected","onMousedown"];!function(e,t){void 0===t&&(t={});var i=t.insertAt;if(e&&"undefined"!=typeof document){var o=document.head||document.getElementsByTagName("head")[0],n=document.createElement("style");n.type="text/css","top"===i&&o.firstChild?o.insertBefore(n,o.firstChild):o.appendChild(n),n.styleSheet?n.styleSheet.cssText=e:n.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"),O.render=function(e,t,i,o,n,s){const l=c("AngleUpIcon"),r=c("OLButton"),d=c("AngleDoubleUpIcon"),a=c("AngleDownIcon"),O=c("AngleDoubleDownIcon"),K=p("ripple");return h(),u("div",m({class:s.containerClass},e.ptm("root")),[f("div",m({class:"p-orderlist-controls"},e.ptm("controls")),[v(e.$slots,"controlsstart"),b(r,m({type:"button",onClick:s.moveUp,"aria-label":s.moveUpAriaLabel,disabled:s.moveDisabled()},i.moveUpButtonProps,{pt:e.ptm("moveUpButton")}),{icon:y((()=>[v(e.$slots,"moveupicon",{},(()=>[b(l,g(I(e.ptm("moveUpButton").icon)),null,16)]))])),_:3},16,["onClick","aria-label","disabled","pt"]),b(r,m({type:"button",onClick:s.moveTop,"aria-label":s.moveTopAriaLabel,disabled:s.moveDisabled()},i.moveTopButtonProps,{pt:e.ptm("moveTopButton")}),{icon:y((()=>[v(e.$slots,"movetopicon",{},(()=>[b(d,g(I(e.ptm("moveTopButton").icon)),null,16)]))])),_:3},16,["onClick","aria-label","disabled","pt"]),b(r,m({type:"button",onClick:s.moveDown,"aria-label":s.moveDownAriaLabel,disabled:s.moveDisabled()},i.moveDownButtonProps,{pt:e.ptm("moveDownButton")}),{icon:y((()=>[v(e.$slots,"movedownicon",{},(()=>[b(a,g(I(e.ptm("moveDownButton").icon)),null,16)]))])),_:3},16,["onClick","aria-label","disabled","pt"]),b(r,m({type:"button",onClick:s.moveBottom,"aria-label":s.moveBottomAriaLabel,disabled:s.moveDisabled()},i.moveBottomButtonProps,{pt:e.ptm("moveBottomButton")}),{icon:y((()=>[v(e.$slots,"movebottomicon",{},(()=>[b(O,g(I(e.ptm("moveBottomButton").icon)),null,16)]))])),_:3},16,["onClick","aria-label","disabled","pt"]),v(e.$slots,"controlsend")],16),f("div",m({class:"p-orderlist-list-container"},e.ptm("container")),[e.$slots.header?(h(),u("div",m({key:0,class:"p-orderlist-header"},e.ptm("header")),[v(e.$slots,"header")],16)):x("",!0),b(w,m({ref:s.listRef,id:n.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":n.focused?s.focusedOptionId:void 0,"aria-label":e.ariaLabel,"aria-labelledby":e.ariaLabelledby,onFocus:s.onListFocus,onBlur:s.onListBlur,onKeydown:s.onListKeyDown},{...i.listProps,...e.ptm("list")}),{default:y((()=>[(h(!0),u($,null,_(i.modelValue,((i,o)=>D((h(),u("li",m({key:s.getItemKey(i,o),id:n.id+"_"+o,role:"option",class:s.itemClass(i,`${n.id}_${o}`),onClick:e=>s.onItemClick(e,i,o),onTouchend:t[0]||(t[0]=(...e)=>s.onItemTouchEnd&&s.onItemTouchEnd(...e)),"aria-selected":s.isSelected(i),onMousedown:e=>s.onOptionMouseDown(o)},s.getPTOptions(i,"item")),[v(e.$slots,"item",{item:i,index:o})],16,S)),[[K]]))),128))])),_:3},16,["id","style","tabindex","aria-activedescendant","aria-label","aria-labelledby","onFocus","onBlur","onKeydown"])],16)],16)};export{O as default};