@gravitee/ui-components 3.25.3-typescript-e7256ca → 3.25.3-typescript-9cbc31e
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/package.json +5 -13
- package/src/atoms/gv-autocomplete.js +422 -1
- package/src/atoms/gv-button.js +397 -1
- package/src/atoms/gv-checkbox.js +178 -1
- package/src/atoms/gv-date-picker-calendar.js +812 -1
- package/src/atoms/gv-date-picker-cell.js +174 -1
- package/src/atoms/gv-date-picker.js +638 -1
- package/src/atoms/gv-file-upload.js +348 -1
- package/src/atoms/gv-icon.js +93 -1
- package/src/atoms/gv-image.js +135 -1
- package/src/atoms/gv-input-message.js +78 -1
- package/src/atoms/gv-input.js +508 -1
- package/src/atoms/gv-link.js +204 -1
- package/src/atoms/gv-message.js +133 -1
- package/src/atoms/gv-metric.js +112 -1
- package/src/atoms/gv-relative-time.js +143 -1
- package/src/atoms/gv-select-native.js +363 -1
- package/src/atoms/gv-select.js +413 -1
- package/src/atoms/gv-spinner.js +54 -1
- package/src/atoms/gv-state.js +125 -1
- package/src/atoms/gv-switch.js +235 -1
- package/src/atoms/gv-tag.js +162 -1
- package/src/atoms/gv-text.js +160 -1
- package/src/charts/gv-chart-bar.js +101 -1
- package/src/charts/gv-chart-gauge.js +92 -1
- package/src/charts/gv-chart-histogram.js +78 -1
- package/src/charts/gv-chart-line.js +218 -1
- package/src/charts/gv-chart-map.js +111 -1
- package/src/charts/gv-chart-pie.js +89 -1
- package/src/index.js +77 -1
- package/src/lib/cron-expression.js +176 -1
- package/src/lib/date.js +43 -1
- package/src/lib/events.js +26 -1
- package/src/lib/http-client-schema-form.js +67 -1
- package/src/lib/http.js +237 -1
- package/src/lib/i18n.js +93 -1
- package/src/lib/item.js +110 -1
- package/src/lib/properties.js +171 -1
- package/src/lib/schema-form.js +39 -1
- package/src/lib/studio.js +144 -1
- package/src/lib/style.js +39 -1
- package/src/lib/text-format.js +65 -1
- package/src/lib/theme.js +60 -1
- package/src/lib/utils.js +106 -1
- package/src/mixins/chart-element.js +153 -1
- package/src/mixins/input-element.js +136 -1
- package/src/mixins/item-resource.js +102 -1
- package/src/mixins/keyboard-element.js +62 -1
- package/src/mixins/update-after-browser.js +30 -1
- package/src/mixins/with-resize-observer.js +62 -1
- package/src/mixins/with-skeleton-attribute.js +109 -1
- package/src/molecules/gv-card-full.js +209 -1
- package/src/molecules/gv-card-list.js +101 -1
- package/src/molecules/gv-card.js +130 -1
- package/src/molecules/gv-category-list.js +56 -1
- package/src/molecules/gv-category.js +163 -1
- package/src/molecules/gv-code.js +334 -1
- package/src/molecules/gv-confirm.js +175 -1
- package/src/molecules/gv-cron-editor.js +685 -1
- package/src/molecules/gv-dropdown-menu.js +108 -1
- package/src/molecules/gv-expandable.js +116 -1
- package/src/molecules/gv-expression-language.js +263 -1
- package/src/molecules/gv-identity-picture.js +139 -1
- package/src/molecules/gv-list.js +214 -1
- package/src/molecules/gv-metrics.js +147 -1
- package/src/molecules/gv-modal.js +203 -1
- package/src/molecules/gv-nav.js +180 -1
- package/src/molecules/gv-option.js +230 -1
- package/src/molecules/gv-plans.js +400 -1
- package/src/molecules/gv-popover.js +323 -1
- package/src/molecules/gv-promote.js +203 -1
- package/src/molecules/gv-rating-list.js +341 -1
- package/src/molecules/gv-rating.js +234 -1
- package/src/molecules/gv-row-expandable.js +42 -1
- package/src/molecules/gv-row.js +205 -1
- package/src/molecules/gv-stats.js +110 -1
- package/src/molecules/gv-stepper.js +274 -1
- package/src/molecules/gv-table.js +644 -1
- package/src/molecules/gv-tree.js +238 -1
- package/src/organisms/gv-documentation.js +205 -1
- package/src/organisms/gv-header.js +276 -1
- package/src/organisms/gv-http-client.js +258 -1
- package/src/organisms/gv-menu.js +258 -1
- package/src/organisms/gv-newsletter-subscription.js +258 -1
- package/src/organisms/gv-pagination.js +179 -1
- package/src/organisms/gv-properties.js +860 -1
- package/src/organisms/gv-resizable-views.js +371 -1
- package/src/organisms/gv-resources.js +496 -1
- package/src/organisms/gv-schema-form-array.js +237 -1
- package/src/organisms/gv-schema-form-control-object.js +141 -1
- package/src/organisms/gv-schema-form-control.js +419 -1
- package/src/organisms/gv-schema-form.js +700 -1
- package/src/organisms/gv-tabs.js +201 -1
- package/src/organisms/gv-user-menu.js +298 -1
- package/src/organisms/gv-vertical-menu.js +119 -1
- package/src/policy-studio/gv-flow-step.js +443 -1
- package/src/policy-studio/gv-flow.js +595 -1
- package/src/policy-studio/gv-policy-studio-menu.js +689 -1
- package/src/policy-studio/gv-policy-studio.js +1712 -1
- package/src/styles/empty.js +35 -1
- package/src/styles/input.js +262 -1
- package/src/styles/link.js +31 -1
- package/src/styles/shapes.js +17 -1
- package/src/styles/skeleton.js +52 -1
- package/src/styles/zoom.js +39 -1
- package/src/theme/gv-theme.js +197 -1
- package/wc/gv-autocomplete.js +1 -1
- package/wc/gv-button.js +1 -1
- package/wc/gv-card-full.js +1 -1
- package/wc/gv-card-list.js +1 -1
- package/wc/gv-card.js +1 -1
- package/wc/gv-category-list.js +1 -1
- package/wc/gv-category.js +1 -1
- package/wc/gv-chart-bar.js +1 -1
- package/wc/gv-chart-gauge.js +1 -1
- package/wc/gv-chart-histogram.js +1 -1
- package/wc/gv-chart-line.js +1 -1
- package/wc/gv-chart-map.js +1 -1
- package/wc/gv-chart-pie.js +1 -1
- package/wc/gv-checkbox.js +1 -1
- package/wc/gv-code.js +1 -1
- package/wc/gv-confirm.js +1 -1
- package/wc/gv-cron-editor.js +1 -1
- package/wc/gv-date-picker-calendar.js +1 -1
- package/wc/gv-date-picker-cell.js +1 -1
- package/wc/gv-date-picker.js +1 -1
- package/wc/gv-documentation.js +1 -1
- package/wc/gv-dropdown-menu.js +1 -1
- package/wc/gv-expandable.js +1 -1
- package/wc/gv-expression-language.js +1 -1
- package/wc/gv-file-upload.js +1 -1
- package/wc/gv-flow-step.js +1 -1
- package/wc/gv-flow.js +1 -1
- package/wc/gv-header.js +1 -1
- package/wc/gv-http-client.js +1 -1
- package/wc/gv-icon.js +1 -1
- package/wc/gv-identity-picture.js +1 -1
- package/wc/gv-image.js +1 -1
- package/wc/gv-input-message.js +1 -1
- package/wc/gv-input.js +1 -1
- package/wc/gv-link.js +1 -1
- package/wc/gv-list.js +1 -1
- package/wc/gv-menu.js +1 -1
- package/wc/gv-message.js +1 -1
- package/wc/gv-metric.js +1 -1
- package/wc/gv-metrics.js +1 -1
- package/wc/gv-modal.js +1 -1
- package/wc/gv-nav.js +1 -1
- package/wc/gv-newsletter-subscription.js +1 -1
- package/wc/gv-option.js +1 -1
- package/wc/gv-pagination.js +1 -1
- package/wc/gv-plans.js +1 -1
- package/wc/gv-policy-studio-menu.js +1 -1
- package/wc/gv-policy-studio.js +1 -1
- package/wc/gv-popover.js +1 -1
- package/wc/gv-promote.js +1 -1
- package/wc/gv-properties.js +1 -1
- package/wc/gv-rating-list.js +1 -1
- package/wc/gv-rating.js +1 -1
- package/wc/gv-relative-time.js +1 -1
- package/wc/gv-resizable-views.js +1 -1
- package/wc/gv-resources.js +1 -1
- package/wc/gv-row-expandable.js +1 -1
- package/wc/gv-row.js +1 -1
- package/wc/gv-schema-form-array.js +1 -1
- package/wc/gv-schema-form-control-object.js +1 -1
- package/wc/gv-schema-form-control.js +1 -1
- package/wc/gv-schema-form.js +1 -1
- package/wc/gv-select-native.js +1 -1
- package/wc/gv-select.js +1 -1
- package/wc/gv-spinner.js +1 -1
- package/wc/gv-state.js +1 -1
- package/wc/gv-stats.js +1 -1
- package/wc/gv-stepper.js +1 -1
- package/wc/gv-switch.js +1 -1
- package/wc/gv-table.js +1 -1
- package/wc/gv-tabs.js +1 -1
- package/wc/gv-tag.js +1 -1
- package/wc/gv-text.js +1 -1
- package/wc/gv-theme.js +1 -1
- package/wc/gv-tree.js +1 -1
- package/wc/gv-user-menu.js +1 -1
- package/wc/gv-vertical-menu.js +1 -1
|
@@ -1 +1,689 @@
|
|
|
1
|
-
Object.defineProperty(exports,"__esModule",{value:!0}),exports.GvPolicyStudioMenu=void 0;const e=require("lit"),t=require("../styles/link"),i=require("../lib/events"),o=require("lit/directives/class-map");require("../atoms/gv-image"),require("../atoms/gv-state"),require("../molecules/gv-popover"),require("./gv-flow-step");const l=require("../lib/studio"),s=require("lit/directives/repeat"),n=require("../lib/utils");class a extends e.LitElement{static get properties(){return{policies:{type:Array},flows:{type:Object},plans:{type:Object},selectedIds:{type:Array},sortable:{type:Boolean},disabled:{type:Boolean,reflect:!0},query:{type:String},flowsTitle:{type:String,attribute:"flows-title"},hasPolicyFilter:{type:Boolean,attribute:"has-policy-filter"},canAdd:{type:Boolean,attribute:"can-add"},readonly:{type:Boolean},readonlyPlans:{type:Boolean}}}constructor(){super(),this.selectedIds=[],this.flowsTitle="Flows"}static get styles(){return[t.link,l.methods,e.css`:host{box-sizing:border-box;min-width:250px;display:flex;flex-direction:column}:host([disabled]){opacity:.5}:host([disabled]) *{cursor:not-allowed}.box{flex:1;overflow:auto}.type{background-color:#f5f5f5;text-transform:capitalize;text-decoration:none;padding:.2rem;color:#262626;border-width:1px 0 1px 0;border-style:solid;border-color:#bfbfbf;font-size:15px;display:flex;align-items:center;box-sizing:border-box;height:42px}.type .type-name{flex:1}.entry .entry-name,.type .type-name{display:flex;align-items:center;white-space:nowrap;overflow:hidden;min-width:150px;height:100%}.expandable{background:#fff;overflow:hidden;transition:height,opacity,width,padding,color .25s ease-in-out;line-height:0;color:transparent;box-sizing:border-box;font-size:14px;--gv-icon--s:0;visibility:hidden}.expandable.open{line-height:1.5;padding-top:.5rem;padding-bottom:.5rem;color:#262626;overflow:auto;visibility:visible}.entry{display:flex;align-items:center;user-select:none;position:relative}.entry.disabled{text-decoration:line-through;font-style:italic}.entry gv-image{height:0;width:0;transition:height 75ms ease-in-out;visibility:hidden}.entry gv-tag{display:none}.expandable-icon{margin-right:2px;--gv-icon--s:22px;--gv-icon--c:#5a7684;--gv-icon-opacity--c:#5a7684}.policy-icon{--gv-icon--s:40px;margin-right:2px;--gv-icon--c:#5a7684;--gv-icon-opacity--c:#5a7684}.expandable.open .entry gv-tag{display:block}.expandable.open .entry gv-image{height:40px;width:40px;margin-right:5px;visibility:visible}.expandable.open .entry:focus-within{--gv-icon--c:#28444f;color:#28444f}.expandable.open .entry:focus-within .actions{visibility:visible;opacity:1;height:25px}.flow-path{max-width:200px}.entry .actions{background-color:#fff;transition:all 250ms ease-in-out;align-items:center;display:flex;position:absolute;right:0;padding:.1rem}gv-button{--gv-icon--c:#28444f}.entry .actions>*{margin:1px;opacity:0;visibility:hidden;display:none}.entry:focus-within .actions>*{opacity:1;visibility:visible;display:block}.flow-path{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.expandable.open .entry{border:1px dotted transparent;padding:.2rem;line-height:25px;min-height:32px}.expandable.open .entry{--gv-icon--s:16px}.expandable.open .entry.selected,.expandable.open .entry.selected .actions{background-color:#f5f5f5}.expandable.open .entry.selected{border-top:1px dotted #bfbfbf;border-bottom:1px dotted #bfbfbf;border-right:1px dotted #bfbfbf}.dragging{cursor:grabbing;opacity:1;background-color:#f5f5f5;box-shadow:0 0 5px rgba(0,0,0,.1);transform:none}.flow{margin-left:.2rem}.flow.sortable{margin:0}.policy.draggable gv-icon,.policy.draggable gv-image,.sortable,.sortable gv-icon{cursor:grab}.policy.draggable:active,.sortable gv-icon:active,.sortable:active{cursor:grabbing}.policy-name{flex:1;display:flex;align-items:center}.policy .draggable-icon{opacity:0;visibility:hidden;transition:all 350ms ease-in-out}.policy:hover .draggable-icon{opacity:1;visibility:visible}gv-state,gv-tag{--gv-tag--p:1px 3px;--gv-state--p:4px 6px;--gv-state--fz:10px;--gv-state--c:#28444f;--gv-state--bgc:#ffffff;margin:0 1px}.error-icon{--gv-icon--c:var(--gv-theme-color-warning, #ff9800)}`]}_onExpand(e,t){this.disabled||(t.preventDefault(),t.stopPropagation(),this.shadowRoot.querySelector(e).classList.toggle("open"))}_onDragStartPolicy(e,t){t.dataTransfer.setData("text/plain",JSON.stringify({policy:e}));this._draggablePolicyImage=(0,n.appendDraggableImage)(e.icon,100),t.dataTransfer.setDragImage(this._draggablePolicyImage,50,50),(0,i.dispatchCustomEvent)(this,"dragstart-policy",{dataTransfer:t.dataTransfer})}_onDragEndPolicy(){this._draggablePolicyImage&&(this._draggablePolicyImage.remove(),this._draggablePolicyImage=null),(0,i.dispatchCustomEvent)(this,"dragend-policy")}_onClickFlow(e,t){this.disabled||(t.shiftKey?this._compareFlow(e):this._selectFlow(e))}_selectFlow(e){this.selectedIds=[e._id],(0,i.dispatchCustomEvent)(this,"select-flows",{flows:this.selectedIds})}_compareFlow(e){this.selectedIds.length>0?(this.selectedIds=[...new Set([this.selectedIds[0],e._id])],(0,i.dispatchCustomEvent)(this,"select-flows",{flows:this.selectedIds})):this._selectFlow(e)}_onMouseEnterPolicy(e){(0,i.dispatchCustomEvent)(this,"target-policy",{policy:e})}_onMouseLeavePolicy(){(0,i.dispatchCustomEvent)(this,"target-policy",null)}_onMouseEnterFlow(e){null==this._draggingFlow&&e.target.focus()}_onMouseLeaveFlow(e){null==this._draggingFlow&&e.target.blur()}_filter(e){return!this.query||e.name.toLowerCase().includes(this.query.toLowerCase())}hasCompare(){return this.selectedIds.length>1}_onChangeFlowState(e,{detail:t}){(0,i.dispatchCustomEvent)(this,"change-flow-state",{content:e,enabled:t})}_onDuplicateFlow(e){(0,i.dispatchCustomEvent)(this,"duplicate-flow",{content:e})}_onDeleteFlow(e){(0,i.dispatchCustomEvent)(this,"delete-flow",{content:e})}_renderFlowActions(t,i){if(this.disabled)return e.html``;const o=!1!==t.enabled,l=o?"Disable flow ?":"Enable flow ?";return e.html`<div class="actions">${this.hasCompare()||this.selectedIds.includes(t._id)?"":e.html`<gv-button tabindex="0" link small icon="navigation:route" @gv-button:click="${this._compareFlow.bind(this,t)}" title="Compare"></gv-button>`} ${this.canAdd&&!0!==i?e.html`<gv-button tabindex="0" link small icon="general:duplicate" @gv-button:click="${this._onDuplicateFlow.bind(this,t)}" title="Duplicate"></gv-button><gv-button tabindex="0" link small icon="home:trash" @gv-button:click="${this._onDeleteFlow.bind(this,t)}" title="Delete"></gv-button>`:""} ${!0!==i?e.html`<gv-switch tabindex="0" small title="${l}" .value="${o}" @gv-switch:input="${this._onChangeFlowState.bind(this,t)}"></gv-switch>`:""}</div>`}_onDragStartFlow(e,t,i){const o=i.target.classList;o&&o.contains("flow")&&(o.remove("hover"),o.add("dragging"),this._draggingFlow={target:i.target,flow:e,index:t})}_onDragEnterFlow(e){e.target.classList&&e.target.classList.contains("flow")&&this._draggingFlow.target.parentElement===e.target.parentElement&&(e.target.previousSibling!==this._draggingFlow.target?e.target.parentElement.insertBefore(this._draggingFlow.target,e.target):e.target.nextSibling?e.target.parentElement.insertBefore(this._draggingFlow.target,e.target.nextSibling):e.target.parentElement.appendChild(this._draggingFlow.target),this._draggingFlow.target.classList.remove("dragging"))}_findFlowCollection(e){const t=this.plans.find((t=>null!=t.flows.find((t=>t._id===e))));return{plan:t,flows:null!=t?t.flows:this.flows}}_onDragEndFlow(){this._draggingFlow.target.classList.remove("dragging");const e=[...this._draggingFlow.target.parentElement.querySelectorAll('.flow[draggable="true"]')].indexOf(this._draggingFlow.target);if(e!==this._draggingFlow.index){const{plan:t,flows:o}=this._findFlowCollection(this._draggingFlow.flow._id),l=o.splice(this._draggingFlow.index,1)[0];o.splice(e,0,l);const s=Math.min(this._draggingFlow.index,e),n=Math.max(this._draggingFlow.index,e);o.forEach(((e,t)=>{t>=s&&t<=n&&(e._dirty=!0)})),(0,i.dispatchCustomEvent)(this,"reorder-flows",{plan:t}),setTimeout((()=>{this._draggingFlow=null}),0),this._draggingFlow.target.focus()}}_onDragOverFlow(e){e.preventDefault()}_onKeyDownFlow(e,t){t.target.classList.contains("flow")&&32===t.keyCode&&(t.preventDefault(),this._selectFlow(e))}_onClickPolicy(e){this.disabled||(this.selectedIds=[e.id],(0,i.dispatchCustomEvent)(this,"fetch-documentation",{policy:e}))}_isSelected(e){return null!=this.selectedIds&&this.selectedIds.includes(e)}_renderFlows(t,i,a,r,d){const c=a&&this.readonlyPlans;return e.html`<div class="${(0,o.classMap)({content:!0,expandable:!0,open:d})}" id="${r}">${(0,s.repeat)(t,(()=>(0,n.uuid)()),((t,i)=>e.html`<div draggable="${this.sortable&&!this.disabled&&!c}" tabindex="0" @dragstart="${this._onDragStartFlow.bind(this,t,i)}" @dragenter="${this._onDragEnterFlow}" @dragend="${this._onDragEndFlow}" @dragover="${this._onDragOverFlow}" @keydown="${this._onKeyDownFlow.bind(this,i)}" @mouseenter="${this._onMouseEnterFlow}" @mouseleave="${this._onMouseLeaveFlow}" class="${(0,o.classMap)({entry:!0,flow:!0,sortable:this.sortable&&!this.disabled&&!c,selected:this.selectedIds.includes(t._id),child:a,disabled:!1===t.enabled})}"><div title="${t.name} | Compare with current selection (Shift + click)" @click="${this._onClickFlow.bind(this,t)}" class="entry-name link">${(0,l.getFlowName)(t,null,!0,this.sortable&&!c,!0)}</div>${this._renderFlowActions(t,this.readonly||c)}</div>`))}</div>`}_isDraggable(e){return!this.disabled&&(!0!==this.hasPolicyFilter||!0===e.onRequest||!0===e.onResponse)}_renderPolicies(t,i,l,s,n){return e.html`<div id="${s}" class="${(0,o.classMap)({content:!0,expandable:!0,open:!0,child:l})}">${t.map((t=>{const i=this._isDraggable(t);return e.html`<div class="${(0,o.classMap)({entry:!0,link:!0,policy:!0,selected:this._isSelected(t.id),draggable:i})}" draggable="${i}" @mouseenter="${this._onMouseEnterPolicy.bind(this,t)}" @mouseleave="${this._onMouseLeavePolicy.bind(this,t)}" @dragstart="${this._onDragStartPolicy.bind(this,t)}" @dragend="${this._onDragEndPolicy}" @click="${this._onClickPolicy.bind(this,t)}" title="Show documentation of ${t.name}">${null==t.icon&&null!=n?e.html`<gv-icon class="policy-icon" shape="${this._getGroupShape(n)}"></gv-icon>`:e.html`<gv-image src="${t.icon}"></gv-image>`}<div class="policy-name">${t.name}</div>${i?e.html`<gv-icon class="draggable-icon" shape="design:arrows"></gv-icon>`:e.html``}</div>`}))}</div>`}_getGroupShape(e){return"security"===e?"general:shield-protected":"transformation"===e?"tools:roller":"performance"===e?"general:thunder-move":"communication:shield-thunder"}_renderPart(t,i,o,l=[],s,n,a=null,r=!0,d=!1,c){let g;const h=l.filter((e=>this._filter(e)));if(s&&l.length>0||!s){if(a&&!d){const i=[...new Set(h.map((e=>e[a])))];return e.html`${i.map(((i,l)=>{let d=h.filter((e=>e[a]===i));const c=i?i.replace(/\s+/g,"-").toLowerCase():`group-${l}`,g=`#${c}`;let p=e.html`<gv-state>${d.length}</gv-state>`;return n&&(p=e.html`<gv-button small outlined icon="code:plus" title="Add new flow" @click="${n.bind(this,l,c)}"></gv-button>`),"flows"===t&&(d=d[0].flows),e.html`<div class="type" @click="${this._onExpand.bind(this,g)}"><gv-icon class="expandable-icon" shape="${this._getGroupShape(i)}"></gv-icon><div class="link type-name">${i||"No category"}</div>${p}</div>${this._renderPart(t,i,o,d,s,n,a,r,!0,c)}`}))}`}if(null==c&&(c=t.replace(/\s+/g,"-").toLowerCase()),g="flows"===t?this._renderFlows(h,t,d,c,r):this._renderPolicies(h,t,d,c,i),d)return e.html`${g}`;{const t=`#${c}`;let l="";return n&&(l=e.html`<gv-button small outlined icon="code:plus" title="Add new flow" @click="${n.bind(this,c)}"></gv-button>`),e.html`<div class="type" draggable="false">${o?e.html`<gv-icon class="expandable-icon" shape="${o}"></gv-icon>`:""}<div class="type-name link" @click="${this._onExpand.bind(this,t)}">${i}</div>${l}</div>${g}`}}return e.html``}_getListElement(e){return this.shadowRoot.querySelector(`#${e}`)}_onAddFlowToPlan(e,t,o){this._getListElement(t).classList.add("open"),o.preventDefault(),o.stopPropagation(),(0,i.dispatchCustomEvent)(this,"add-flow-plan",{planIndex:e})}_onAddFlow(e,t){this._getListElement(e).classList.add("open"),t.preventDefault(),t.stopPropagation(),(0,i.dispatchCustomEvent)(this,"add-flow")}render(){return e.html`<slot name="header"></slot><div class="box">${null!=this.plans?this._renderPart("flows","","shopping:sale#2",this.plans,!1,!this.canAdd||this.disabled||this.readonlyPlans?null:this._onAddFlowToPlan,"name"):""} ${null!=this.flows?this._renderPart("flows",this.flowsTitle,"shopping:box#3",this.flows,!1,this.canAdd&&!this.disabled?this._onAddFlow:null):""} ${null!=this.policies?this._renderPart("policies","Policies","communication:shield-thunder",this.policies,!0,null,this.policies.length>0&&null!=this.policies[0].category?"category":null):""}</div><slot name="footer"></slot>`}}exports.GvPolicyStudioMenu=a,window.customElements.define("gv-policy-studio-menu",a);
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { LitElement, html, css } from 'lit';
|
|
17
|
+
import { link } from '../styles/link';
|
|
18
|
+
import { dispatchCustomEvent } from '../lib/events';
|
|
19
|
+
import { classMap } from 'lit/directives/class-map';
|
|
20
|
+
import '../atoms/gv-image';
|
|
21
|
+
import '../atoms/gv-state';
|
|
22
|
+
import '../molecules/gv-popover';
|
|
23
|
+
import './gv-flow-step';
|
|
24
|
+
import { getFlowName, methods } from '../lib/studio';
|
|
25
|
+
import { repeat } from 'lit/directives/repeat';
|
|
26
|
+
import { appendDraggableImage, uuid } from '../lib/utils';
|
|
27
|
+
/**
|
|
28
|
+
* Policy studio menu component
|
|
29
|
+
*/
|
|
30
|
+
export class GvPolicyStudioMenu extends LitElement {
|
|
31
|
+
static get properties() {
|
|
32
|
+
return {
|
|
33
|
+
policies: { type: Array },
|
|
34
|
+
flows: { type: Object },
|
|
35
|
+
plans: { type: Object },
|
|
36
|
+
selectedIds: { type: Array },
|
|
37
|
+
sortable: { type: Boolean },
|
|
38
|
+
disabled: { type: Boolean, reflect: true },
|
|
39
|
+
query: { type: String },
|
|
40
|
+
flowsTitle: { type: String, attribute: 'flows-title' },
|
|
41
|
+
hasPolicyFilter: { type: Boolean, attribute: 'has-policy-filter' },
|
|
42
|
+
canAdd: { type: Boolean, attribute: 'can-add' },
|
|
43
|
+
readonly: { type: Boolean },
|
|
44
|
+
readonlyPlans: { type: Boolean },
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
constructor() {
|
|
48
|
+
super();
|
|
49
|
+
this.selectedIds = [];
|
|
50
|
+
this.flowsTitle = 'Flows';
|
|
51
|
+
}
|
|
52
|
+
static get styles() {
|
|
53
|
+
return [
|
|
54
|
+
link,
|
|
55
|
+
methods,
|
|
56
|
+
// language=CSS
|
|
57
|
+
css `
|
|
58
|
+
:host {
|
|
59
|
+
box-sizing: border-box;
|
|
60
|
+
min-width: 250px;
|
|
61
|
+
display: flex;
|
|
62
|
+
flex-direction: column;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
:host([disabled]) {
|
|
66
|
+
opacity: 0.5;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
:host([disabled]) * {
|
|
70
|
+
cursor: not-allowed;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.box {
|
|
74
|
+
flex: 1;
|
|
75
|
+
overflow: auto;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.type {
|
|
79
|
+
background-color: #f5f5f5;
|
|
80
|
+
text-transform: capitalize;
|
|
81
|
+
text-decoration: none;
|
|
82
|
+
padding: 0.2rem;
|
|
83
|
+
color: #262626;
|
|
84
|
+
border-width: 1px 0 1px 0;
|
|
85
|
+
border-style: solid;
|
|
86
|
+
border-color: #bfbfbf;
|
|
87
|
+
font-size: 15px;
|
|
88
|
+
display: flex;
|
|
89
|
+
align-items: center;
|
|
90
|
+
box-sizing: border-box;
|
|
91
|
+
height: 42px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.type .type-name {
|
|
95
|
+
flex: 1;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.type .type-name,
|
|
99
|
+
.entry .entry-name {
|
|
100
|
+
display: flex;
|
|
101
|
+
align-items: center;
|
|
102
|
+
white-space: nowrap;
|
|
103
|
+
overflow: hidden;
|
|
104
|
+
min-width: 150px;
|
|
105
|
+
height: 100%;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.expandable {
|
|
109
|
+
background: #fff;
|
|
110
|
+
overflow: hidden;
|
|
111
|
+
transition: height, opacity, width, padding, color 0.25s ease-in-out;
|
|
112
|
+
line-height: 0;
|
|
113
|
+
color: transparent;
|
|
114
|
+
box-sizing: border-box;
|
|
115
|
+
font-size: 14px;
|
|
116
|
+
--gv-icon--s: 0;
|
|
117
|
+
visibility: hidden;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.expandable.open {
|
|
121
|
+
line-height: 1.5;
|
|
122
|
+
padding-top: 0.5rem;
|
|
123
|
+
padding-bottom: 0.5rem;
|
|
124
|
+
color: #262626;
|
|
125
|
+
overflow: auto;
|
|
126
|
+
visibility: visible;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.entry {
|
|
130
|
+
display: flex;
|
|
131
|
+
align-items: center;
|
|
132
|
+
user-select: none;
|
|
133
|
+
position: relative;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.entry.disabled {
|
|
137
|
+
text-decoration: line-through;
|
|
138
|
+
font-style: italic;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.entry gv-image {
|
|
142
|
+
height: 0px;
|
|
143
|
+
width: 0px;
|
|
144
|
+
transition: height 75ms ease-in-out;
|
|
145
|
+
visibility: hidden;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.entry gv-tag {
|
|
149
|
+
display: none;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.expandable-icon {
|
|
153
|
+
margin-right: 2px;
|
|
154
|
+
--gv-icon--s: 22px;
|
|
155
|
+
--gv-icon--c: #5a7684;
|
|
156
|
+
--gv-icon-opacity--c: #5a7684;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.policy-icon {
|
|
160
|
+
--gv-icon--s: 40px;
|
|
161
|
+
margin-right: 2px;
|
|
162
|
+
--gv-icon--c: #5a7684;
|
|
163
|
+
--gv-icon-opacity--c: #5a7684;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.expandable.open .entry gv-tag {
|
|
167
|
+
display: block;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.expandable.open .entry gv-image {
|
|
171
|
+
height: 40px;
|
|
172
|
+
width: 40px;
|
|
173
|
+
margin-right: 5px;
|
|
174
|
+
visibility: visible;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.expandable.open .entry:focus-within {
|
|
178
|
+
--gv-icon--c: #28444f;
|
|
179
|
+
color: #28444f;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.expandable.open .entry:focus-within .actions {
|
|
183
|
+
visibility: visible;
|
|
184
|
+
opacity: 1;
|
|
185
|
+
height: 25px;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.flow-path {
|
|
189
|
+
max-width: 200px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.entry .actions {
|
|
193
|
+
background-color: white;
|
|
194
|
+
transition: all 250ms ease-in-out;
|
|
195
|
+
align-items: center;
|
|
196
|
+
display: flex;
|
|
197
|
+
position: absolute;
|
|
198
|
+
right: 0;
|
|
199
|
+
padding: 0.1rem;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
gv-button {
|
|
203
|
+
--gv-icon--c: #28444f;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.entry .actions > * {
|
|
207
|
+
margin: 1px;
|
|
208
|
+
opacity: 0;
|
|
209
|
+
visibility: hidden;
|
|
210
|
+
display: none;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.entry:focus-within .actions > * {
|
|
214
|
+
opacity: 1;
|
|
215
|
+
visibility: visible;
|
|
216
|
+
display: block;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.flow-path {
|
|
220
|
+
text-overflow: ellipsis;
|
|
221
|
+
overflow: hidden;
|
|
222
|
+
white-space: nowrap;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.expandable.open .entry {
|
|
226
|
+
border: 1px dotted transparent;
|
|
227
|
+
padding: 0.2rem;
|
|
228
|
+
line-height: 25px;
|
|
229
|
+
min-height: 32px;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.expandable.open .entry {
|
|
233
|
+
--gv-icon--s: 16px;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.expandable.open .entry.selected,
|
|
237
|
+
.expandable.open .entry.selected .actions {
|
|
238
|
+
background-color: #f5f5f5;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.expandable.open .entry.selected {
|
|
242
|
+
border-top: 1px dotted #bfbfbf;
|
|
243
|
+
border-bottom: 1px dotted #bfbfbf;
|
|
244
|
+
border-right: 1px dotted #bfbfbf;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.dragging {
|
|
248
|
+
cursor: grabbing;
|
|
249
|
+
opacity: 1;
|
|
250
|
+
background-color: #f5f5f5;
|
|
251
|
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
|
|
252
|
+
transform: none;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.flow {
|
|
256
|
+
margin-left: 0.2rem;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.flow.sortable {
|
|
260
|
+
margin: 0;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.policy.draggable gv-icon,
|
|
264
|
+
.policy.draggable gv-image,
|
|
265
|
+
.sortable,
|
|
266
|
+
.sortable gv-icon {
|
|
267
|
+
cursor: grab;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.policy.draggable:active,
|
|
271
|
+
.sortable:active,
|
|
272
|
+
.sortable gv-icon:active {
|
|
273
|
+
cursor: grabbing;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.policy-name {
|
|
277
|
+
flex: 1;
|
|
278
|
+
display: flex;
|
|
279
|
+
align-items: center;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.policy .draggable-icon {
|
|
283
|
+
opacity: 0;
|
|
284
|
+
visibility: hidden;
|
|
285
|
+
transition: all 350ms ease-in-out;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.policy:hover .draggable-icon {
|
|
289
|
+
opacity: 1;
|
|
290
|
+
visibility: visible;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
gv-tag,
|
|
294
|
+
gv-state {
|
|
295
|
+
--gv-tag--p: 1px 3px;
|
|
296
|
+
--gv-state--p: 4px 6px;
|
|
297
|
+
--gv-state--fz: 10px;
|
|
298
|
+
--gv-state--c: #28444f;
|
|
299
|
+
--gv-state--bgc: #ffffff;
|
|
300
|
+
margin: 0 1px;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.error-icon {
|
|
304
|
+
--gv-icon--c: var(--gv-theme-color-warning, #ff9800);
|
|
305
|
+
}
|
|
306
|
+
`,
|
|
307
|
+
];
|
|
308
|
+
}
|
|
309
|
+
_onExpand(anchor, e) {
|
|
310
|
+
if (!this.disabled) {
|
|
311
|
+
e.preventDefault();
|
|
312
|
+
e.stopPropagation();
|
|
313
|
+
this.shadowRoot.querySelector(anchor).classList.toggle('open');
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
_onDragStartPolicy(policy, e) {
|
|
317
|
+
e.dataTransfer.setData('text/plain', JSON.stringify({ policy }));
|
|
318
|
+
const size = 100;
|
|
319
|
+
this._draggablePolicyImage = appendDraggableImage(policy.icon, size);
|
|
320
|
+
e.dataTransfer.setDragImage(this._draggablePolicyImage, size / 2, size / 2);
|
|
321
|
+
dispatchCustomEvent(this, 'dragstart-policy', { dataTransfer: e.dataTransfer });
|
|
322
|
+
}
|
|
323
|
+
_onDragEndPolicy() {
|
|
324
|
+
if (this._draggablePolicyImage) {
|
|
325
|
+
this._draggablePolicyImage.remove();
|
|
326
|
+
this._draggablePolicyImage = null;
|
|
327
|
+
}
|
|
328
|
+
dispatchCustomEvent(this, 'dragend-policy');
|
|
329
|
+
}
|
|
330
|
+
_onClickFlow(flow, e) {
|
|
331
|
+
if (!this.disabled) {
|
|
332
|
+
if (e.shiftKey) {
|
|
333
|
+
this._compareFlow(flow);
|
|
334
|
+
}
|
|
335
|
+
else {
|
|
336
|
+
this._selectFlow(flow);
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
_selectFlow(flow) {
|
|
341
|
+
this.selectedIds = [flow._id];
|
|
342
|
+
dispatchCustomEvent(this, 'select-flows', { flows: this.selectedIds });
|
|
343
|
+
}
|
|
344
|
+
_compareFlow(flow) {
|
|
345
|
+
if (this.selectedIds.length > 0) {
|
|
346
|
+
this.selectedIds = [...new Set([this.selectedIds[0], flow._id])];
|
|
347
|
+
dispatchCustomEvent(this, 'select-flows', { flows: this.selectedIds });
|
|
348
|
+
}
|
|
349
|
+
else {
|
|
350
|
+
this._selectFlow(flow);
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
_onMouseEnterPolicy(policy) {
|
|
354
|
+
dispatchCustomEvent(this, 'target-policy', { policy });
|
|
355
|
+
}
|
|
356
|
+
_onMouseLeavePolicy() {
|
|
357
|
+
dispatchCustomEvent(this, 'target-policy', null);
|
|
358
|
+
}
|
|
359
|
+
_onMouseEnterFlow(e) {
|
|
360
|
+
if (this._draggingFlow == null) {
|
|
361
|
+
e.target.focus();
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
_onMouseLeaveFlow(e) {
|
|
365
|
+
if (this._draggingFlow == null) {
|
|
366
|
+
e.target.blur();
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
_filter(content) {
|
|
370
|
+
if (this.query) {
|
|
371
|
+
return content.name.toLowerCase().includes(this.query.toLowerCase());
|
|
372
|
+
}
|
|
373
|
+
return true;
|
|
374
|
+
}
|
|
375
|
+
hasCompare() {
|
|
376
|
+
return this.selectedIds.length > 1;
|
|
377
|
+
}
|
|
378
|
+
_onChangeFlowState(content, { detail }) {
|
|
379
|
+
dispatchCustomEvent(this, 'change-flow-state', { content, enabled: detail });
|
|
380
|
+
}
|
|
381
|
+
_onDuplicateFlow(content) {
|
|
382
|
+
dispatchCustomEvent(this, 'duplicate-flow', { content });
|
|
383
|
+
}
|
|
384
|
+
_onDeleteFlow(content) {
|
|
385
|
+
dispatchCustomEvent(this, 'delete-flow', { content });
|
|
386
|
+
}
|
|
387
|
+
_renderFlowActions(content, readonlyMode) {
|
|
388
|
+
if (this.disabled) {
|
|
389
|
+
return html ``;
|
|
390
|
+
}
|
|
391
|
+
const enabled = content.enabled !== false;
|
|
392
|
+
const stateLabel = enabled ? 'Disable flow ?' : 'Enable flow ?';
|
|
393
|
+
return html `<div class="actions">
|
|
394
|
+
${this.hasCompare() || this.selectedIds.includes(content._id)
|
|
395
|
+
? ''
|
|
396
|
+
: html `<gv-button
|
|
397
|
+
tabindex="0"
|
|
398
|
+
link
|
|
399
|
+
small
|
|
400
|
+
icon="navigation:route"
|
|
401
|
+
@gv-button:click="${this._compareFlow.bind(this, content)}"
|
|
402
|
+
title="Compare"
|
|
403
|
+
></gv-button>`}
|
|
404
|
+
${this.canAdd && readonlyMode !== true
|
|
405
|
+
? html `<gv-button
|
|
406
|
+
tabindex="0"
|
|
407
|
+
link
|
|
408
|
+
small
|
|
409
|
+
icon="general:duplicate"
|
|
410
|
+
@gv-button:click="${this._onDuplicateFlow.bind(this, content)}"
|
|
411
|
+
title="Duplicate"
|
|
412
|
+
></gv-button>
|
|
413
|
+
<gv-button
|
|
414
|
+
tabindex="0"
|
|
415
|
+
link
|
|
416
|
+
small
|
|
417
|
+
icon="home:trash"
|
|
418
|
+
@gv-button:click="${this._onDeleteFlow.bind(this, content)}"
|
|
419
|
+
title="Delete"
|
|
420
|
+
></gv-button>`
|
|
421
|
+
: ''}
|
|
422
|
+
${readonlyMode !== true
|
|
423
|
+
? html `<gv-switch
|
|
424
|
+
tabindex="0"
|
|
425
|
+
small
|
|
426
|
+
title="${stateLabel}"
|
|
427
|
+
.value="${enabled}"
|
|
428
|
+
@gv-switch:input="${this._onChangeFlowState.bind(this, content)}"
|
|
429
|
+
></gv-switch>`
|
|
430
|
+
: ''}
|
|
431
|
+
</div>`;
|
|
432
|
+
}
|
|
433
|
+
_onDragStartFlow(flow, index, event) {
|
|
434
|
+
const classList = event.target.classList;
|
|
435
|
+
if (classList && classList.contains('flow')) {
|
|
436
|
+
classList.remove('hover');
|
|
437
|
+
classList.add('dragging');
|
|
438
|
+
this._draggingFlow = { target: event.target, flow, index };
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
_onDragEnterFlow(event) {
|
|
442
|
+
if (event.target.classList &&
|
|
443
|
+
event.target.classList.contains('flow') &&
|
|
444
|
+
this._draggingFlow.target.parentElement === event.target.parentElement) {
|
|
445
|
+
if (event.target.previousSibling !== this._draggingFlow.target) {
|
|
446
|
+
event.target.parentElement.insertBefore(this._draggingFlow.target, event.target);
|
|
447
|
+
}
|
|
448
|
+
else if (event.target.nextSibling) {
|
|
449
|
+
event.target.parentElement.insertBefore(this._draggingFlow.target, event.target.nextSibling);
|
|
450
|
+
}
|
|
451
|
+
else {
|
|
452
|
+
event.target.parentElement.appendChild(this._draggingFlow.target);
|
|
453
|
+
}
|
|
454
|
+
this._draggingFlow.target.classList.remove('dragging');
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
_findFlowCollection(flowId) {
|
|
458
|
+
const plan = this.plans.find((plan) => plan.flows.find((flow) => flow._id === flowId) != null);
|
|
459
|
+
return { plan, flows: plan != null ? plan.flows : this.flows };
|
|
460
|
+
}
|
|
461
|
+
_onDragEndFlow() {
|
|
462
|
+
this._draggingFlow.target.classList.remove('dragging');
|
|
463
|
+
const index = [...this._draggingFlow.target.parentElement.querySelectorAll('.flow[draggable="true"]')].indexOf(this._draggingFlow.target);
|
|
464
|
+
if (index !== this._draggingFlow.index) {
|
|
465
|
+
const { plan, flows } = this._findFlowCollection(this._draggingFlow.flow._id);
|
|
466
|
+
const flowToReorder = flows.splice(this._draggingFlow.index, 1)[0];
|
|
467
|
+
flows.splice(index, 0, flowToReorder);
|
|
468
|
+
const min = Math.min(this._draggingFlow.index, index);
|
|
469
|
+
const max = Math.max(this._draggingFlow.index, index);
|
|
470
|
+
flows.forEach((flow, i) => {
|
|
471
|
+
if (i >= min && i <= max) {
|
|
472
|
+
flow._dirty = true;
|
|
473
|
+
}
|
|
474
|
+
});
|
|
475
|
+
dispatchCustomEvent(this, 'reorder-flows', { plan });
|
|
476
|
+
setTimeout(() => {
|
|
477
|
+
this._draggingFlow = null;
|
|
478
|
+
}, 0);
|
|
479
|
+
this._draggingFlow.target.focus();
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
_onDragOverFlow(e) {
|
|
483
|
+
e.preventDefault();
|
|
484
|
+
}
|
|
485
|
+
_onKeyDownFlow(index, e) {
|
|
486
|
+
if (e.target.classList.contains('flow') && e.keyCode === 32) {
|
|
487
|
+
e.preventDefault();
|
|
488
|
+
this._selectFlow(index);
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
_onClickPolicy(policy) {
|
|
492
|
+
if (!this.disabled) {
|
|
493
|
+
this.selectedIds = [policy.id];
|
|
494
|
+
dispatchCustomEvent(this, 'fetch-documentation', { policy });
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
_isSelected(id) {
|
|
498
|
+
return this.selectedIds != null && this.selectedIds.includes(id);
|
|
499
|
+
}
|
|
500
|
+
_renderFlows(filteredData, type, isChild, id, open) {
|
|
501
|
+
const readonlyForFlow = isChild && this.readonlyPlans;
|
|
502
|
+
return html `<div class="${classMap({ content: true, expandable: true, open })}" id="${id}">
|
|
503
|
+
${repeat(filteredData, () => uuid(), (content, index) => html `
|
|
504
|
+
<div
|
|
505
|
+
draggable="${this.sortable && !this.disabled && !readonlyForFlow}"
|
|
506
|
+
tabindex="0"
|
|
507
|
+
@dragstart="${this._onDragStartFlow.bind(this, content, index)}"
|
|
508
|
+
@dragenter="${this._onDragEnterFlow}"
|
|
509
|
+
@dragend="${this._onDragEndFlow}"
|
|
510
|
+
@dragover="${this._onDragOverFlow}"
|
|
511
|
+
@keydown="${this._onKeyDownFlow.bind(this, index)}"
|
|
512
|
+
@mouseenter="${this._onMouseEnterFlow}"
|
|
513
|
+
@mouseleave="${this._onMouseLeaveFlow}"
|
|
514
|
+
class="${classMap({
|
|
515
|
+
entry: true,
|
|
516
|
+
flow: true,
|
|
517
|
+
sortable: this.sortable && !this.disabled && !readonlyForFlow,
|
|
518
|
+
selected: this.selectedIds.includes(content._id),
|
|
519
|
+
child: isChild,
|
|
520
|
+
disabled: content.enabled === false,
|
|
521
|
+
})}"
|
|
522
|
+
>
|
|
523
|
+
<div
|
|
524
|
+
title="${content.name} | Compare with current selection (Shift + click)"
|
|
525
|
+
@click="${this._onClickFlow.bind(this, content)}"
|
|
526
|
+
class="entry-name link"
|
|
527
|
+
>
|
|
528
|
+
${getFlowName(content, null, true, this.sortable && !readonlyForFlow, true)}
|
|
529
|
+
</div>
|
|
530
|
+
${this._renderFlowActions(content, this.readonly || readonlyForFlow)}
|
|
531
|
+
</div>
|
|
532
|
+
`)}
|
|
533
|
+
</div> `;
|
|
534
|
+
}
|
|
535
|
+
_isDraggable(policy) {
|
|
536
|
+
return !this.disabled && (this.hasPolicyFilter !== true || policy.onRequest === true || policy.onResponse === true);
|
|
537
|
+
}
|
|
538
|
+
_renderPolicies(filteredData, type, isChild, id, group) {
|
|
539
|
+
return html `<div
|
|
540
|
+
id="${id}"
|
|
541
|
+
class="${classMap({
|
|
542
|
+
content: true,
|
|
543
|
+
expandable: true,
|
|
544
|
+
open: true,
|
|
545
|
+
child: isChild,
|
|
546
|
+
})}"
|
|
547
|
+
>
|
|
548
|
+
${filteredData.map((content) => {
|
|
549
|
+
const draggable = this._isDraggable(content);
|
|
550
|
+
return html `<div
|
|
551
|
+
class="${classMap({
|
|
552
|
+
entry: true,
|
|
553
|
+
link: true,
|
|
554
|
+
policy: true,
|
|
555
|
+
selected: this._isSelected(content.id),
|
|
556
|
+
draggable,
|
|
557
|
+
})}"
|
|
558
|
+
draggable="${draggable}"
|
|
559
|
+
@mouseenter="${this._onMouseEnterPolicy.bind(this, content)}"
|
|
560
|
+
@mouseleave="${this._onMouseLeavePolicy.bind(this, content)}"
|
|
561
|
+
@dragstart="${this._onDragStartPolicy.bind(this, content)}"
|
|
562
|
+
@dragend="${this._onDragEndPolicy}"
|
|
563
|
+
@click="${this._onClickPolicy.bind(this, content)}"
|
|
564
|
+
title="Show documentation of ${content.name}"
|
|
565
|
+
>
|
|
566
|
+
${content.icon == null && group != null
|
|
567
|
+
? html `<gv-icon class="policy-icon" shape="${this._getGroupShape(group)}"></gv-icon>`
|
|
568
|
+
: html `<gv-image src="${content.icon}"></gv-image>`}
|
|
569
|
+
<div class="policy-name">${content.name}</div>
|
|
570
|
+
${draggable ? html `<gv-icon class="draggable-icon" shape="design:arrows"></gv-icon>` : html ``}
|
|
571
|
+
</div>`;
|
|
572
|
+
})}
|
|
573
|
+
</div>`;
|
|
574
|
+
}
|
|
575
|
+
_getGroupShape(groupName) {
|
|
576
|
+
if (groupName === 'security') {
|
|
577
|
+
return 'general:shield-protected';
|
|
578
|
+
}
|
|
579
|
+
else if (groupName === 'transformation') {
|
|
580
|
+
return 'tools:roller';
|
|
581
|
+
}
|
|
582
|
+
else if (groupName === 'performance') {
|
|
583
|
+
return 'general:thunder-move';
|
|
584
|
+
}
|
|
585
|
+
else {
|
|
586
|
+
return 'communication:shield-thunder';
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
_renderPart(type, title, icon, data = [], hideIfEmpty, addHandler, groupKey = null, isOpen = true, isChild = false, listId) {
|
|
590
|
+
let list;
|
|
591
|
+
const filteredData = data.filter((content) => this._filter(content));
|
|
592
|
+
if ((hideIfEmpty && data.length > 0) || !hideIfEmpty) {
|
|
593
|
+
if (groupKey && !isChild) {
|
|
594
|
+
const groups = [...new Set(filteredData.map((content) => content[groupKey]))];
|
|
595
|
+
return html `${groups.map((group, index) => {
|
|
596
|
+
let groupData = filteredData.filter((data) => data[groupKey] === group);
|
|
597
|
+
const listId = group ? group.replace(/\s+/g, '-').toLowerCase() : `group-${index}`;
|
|
598
|
+
const anchor = `#${listId}`;
|
|
599
|
+
let right = html `<gv-state>${groupData.length}</gv-state>`;
|
|
600
|
+
if (addHandler) {
|
|
601
|
+
right = html `<gv-button
|
|
602
|
+
small
|
|
603
|
+
outlined
|
|
604
|
+
icon="code:plus"
|
|
605
|
+
title="Add new flow"
|
|
606
|
+
@click="${addHandler.bind(this, index, listId)}"
|
|
607
|
+
></gv-button>`;
|
|
608
|
+
}
|
|
609
|
+
if (type === 'flows') {
|
|
610
|
+
groupData = groupData[0].flows;
|
|
611
|
+
}
|
|
612
|
+
return html `<div class="type" @click="${this._onExpand.bind(this, anchor)}">
|
|
613
|
+
<gv-icon class="expandable-icon" shape="${this._getGroupShape(group)}"></gv-icon>
|
|
614
|
+
<div class="link type-name">${group || 'No category'}</div>
|
|
615
|
+
${right}
|
|
616
|
+
</div>
|
|
617
|
+
${this._renderPart(type, group, icon, groupData, hideIfEmpty, addHandler, groupKey, isOpen, true, listId)}`;
|
|
618
|
+
})}`;
|
|
619
|
+
}
|
|
620
|
+
else {
|
|
621
|
+
if (listId == null) {
|
|
622
|
+
listId = type.replace(/\s+/g, '-').toLowerCase();
|
|
623
|
+
}
|
|
624
|
+
if (type === 'flows') {
|
|
625
|
+
list = this._renderFlows(filteredData, type, isChild, listId, isOpen);
|
|
626
|
+
}
|
|
627
|
+
else {
|
|
628
|
+
list = this._renderPolicies(filteredData, type, isChild, listId, title);
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
if (isChild) {
|
|
632
|
+
return html `${list}`;
|
|
633
|
+
}
|
|
634
|
+
else {
|
|
635
|
+
const anchor = `#${listId}`;
|
|
636
|
+
let action = '';
|
|
637
|
+
if (addHandler) {
|
|
638
|
+
action = html `<gv-button
|
|
639
|
+
small
|
|
640
|
+
outlined
|
|
641
|
+
icon="code:plus"
|
|
642
|
+
title="Add new flow"
|
|
643
|
+
@click="${addHandler.bind(this, listId)}"
|
|
644
|
+
></gv-button>`;
|
|
645
|
+
}
|
|
646
|
+
return html `<div class="type" draggable="false">
|
|
647
|
+
${icon ? html `<gv-icon class="expandable-icon" shape="${icon}"></gv-icon>` : ''}
|
|
648
|
+
<div class="type-name link" @click="${this._onExpand.bind(this, anchor)}">${title}</div>
|
|
649
|
+
${action}
|
|
650
|
+
</div>
|
|
651
|
+
${list}`;
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
return html ``;
|
|
655
|
+
}
|
|
656
|
+
_getListElement(id) {
|
|
657
|
+
return this.shadowRoot.querySelector(`#${id}`);
|
|
658
|
+
}
|
|
659
|
+
_onAddFlowToPlan(index, listId, e) {
|
|
660
|
+
const list = this._getListElement(listId);
|
|
661
|
+
list.classList.add('open');
|
|
662
|
+
e.preventDefault();
|
|
663
|
+
e.stopPropagation();
|
|
664
|
+
dispatchCustomEvent(this, 'add-flow-plan', { planIndex: index });
|
|
665
|
+
}
|
|
666
|
+
_onAddFlow(listId, e) {
|
|
667
|
+
const list = this._getListElement(listId);
|
|
668
|
+
list.classList.add('open');
|
|
669
|
+
e.preventDefault();
|
|
670
|
+
e.stopPropagation();
|
|
671
|
+
dispatchCustomEvent(this, 'add-flow');
|
|
672
|
+
}
|
|
673
|
+
render() {
|
|
674
|
+
return html ` <slot name="header"></slot>
|
|
675
|
+
<div class="box">
|
|
676
|
+
${this.plans != null
|
|
677
|
+
? this._renderPart('flows', '', 'shopping:sale#2', this.plans, false, this.canAdd && !this.disabled && !this.readonlyPlans ? this._onAddFlowToPlan : null, 'name')
|
|
678
|
+
: ``}
|
|
679
|
+
${this.flows != null
|
|
680
|
+
? this._renderPart('flows', this.flowsTitle, 'shopping:box#3', this.flows, false, this.canAdd && !this.disabled ? this._onAddFlow : null)
|
|
681
|
+
: ``}
|
|
682
|
+
${this.policies != null
|
|
683
|
+
? this._renderPart('policies', 'Policies', 'communication:shield-thunder', this.policies, true, null, this.policies.length > 0 && this.policies[0].category != null ? 'category' : null)
|
|
684
|
+
: ''}
|
|
685
|
+
</div>
|
|
686
|
+
<slot name="footer"></slot>`;
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
window.customElements.define('gv-policy-studio-menu', GvPolicyStudioMenu);
|