Adds launch app functionality in context menu

This commit is contained in:
Alicia Sykes 2021-06-25 13:25:08 +01:00
parent 8890703598
commit 9370f2d1df
2 changed files with 74 additions and 15 deletions

View File

@ -1,12 +1,24 @@
<template> <template>
<transition name="slide"> <transition name="slide">
<div class="context-menu" v-if="show" <div class="context-menu" v-if="show && menuEnabled"
:style="posX && posY ? `top:${posY}px;left:${posX}px;` : ''"> :style="posX && posY ? `top:${posY}px;left:${posX}px;` : ''">
<ul> <ul>
<li><SameTabOpenIcon /> Open in Current Tab</li> <li @click="launch('sametab')">
<li><NewTabOpenIcon /> Open in New Tab</li> <SameTabOpenIcon />
<li><IframeOpenIcon /> Open in Pop-Up Modal</li> <span>Open in Current Tab</span>
<li><WorkspaceOpenIcon /> Open in Workspace View </li> </li>
<li @click="launch('newtab')">
<NewTabOpenIcon />
<span>Open in New Tab</span>
</li>
<li @click="launch('modal')">
<IframeOpenIcon />
<span>Open in Pop-Up Modal</span>
</li>
<li @click="launch('workspace')">
<WorkspaceOpenIcon />
<span>Open in Workspace View</span>
</li>
</ul> </ul>
</div> </div>
</transition> </transition>
@ -29,9 +41,28 @@ export default {
WorkspaceOpenIcon, WorkspaceOpenIcon,
}, },
props: { props: {
posX: Number, posX: Number, // The X coordinate for positioning
posY: Number, posY: Number, // The Y coordinate for positioning
show: Boolean, show: Boolean, // Should show or hide the menu
},
data() {
return {
menuEnabled: !this.isMenuDisabled(), // Specifies if the context menu should be used
};
},
methods: {
/* Called on item click, emits an event up to Item */
/* in order to launch the current app to a given target */
launch(target) {
this.$emit('contextItemClick', target);
},
/* Checks if the user as disabled context menu in config */
isMenuDisabled() {
if (this.config && this.config.appConfig) {
return !!this.config.appConfig.disableContextMenu;
}
return false;
},
}, },
}; };
</script> </script>

View File

@ -3,7 +3,7 @@
<a @click="itemOpened" <a @click="itemOpened"
@mouseup.right="openContextMenu" @mouseup.right="openContextMenu"
@contextmenu.prevent @contextmenu.prevent
:href="target !== 'iframe' ? url : '#'" :href="target !== 'modal' ? url : '#'"
:target="target === 'newtab' ? '_blank' : ''" :target="target === 'newtab' ? '_blank' : ''"
:class="`item ${!icon? 'short': ''} size-${itemSize}`" :class="`item ${!icon? 'short': ''} size-${itemSize}`"
v-tooltip="getTooltipOptions()" v-tooltip="getTooltipOptions()"
@ -36,12 +36,14 @@
:posX="contextPos.posX" :posX="contextPos.posX"
:posY="contextPos.posY" :posY="contextPos.posY"
:id="`context-menu-${id}`" :id="`context-menu-${id}`"
@contextItemClick="contextItemClick"
/> />
</div> </div>
</template> </template>
<script> <script>
import axios from 'axios'; import axios from 'axios';
import router from '@/router';
import Icon from '@/components/LinkItems/ItemIcon.vue'; import Icon from '@/components/LinkItems/ItemIcon.vue';
import ItemOpenMethodIcon from '@/components/LinkItems/ItemOpenMethodIcon'; import ItemOpenMethodIcon from '@/components/LinkItems/ItemOpenMethodIcon';
import StatusIndicator from '@/components/LinkItems/StatusIndicator'; import StatusIndicator from '@/components/LinkItems/StatusIndicator';
@ -58,10 +60,10 @@ export default {
color: String, // Optional text and icon color, specified in hex code color: String, // Optional text and icon color, specified in hex code
backgroundColor: String, // Optional item background color backgroundColor: String, // Optional item background color
url: String, // URL to the resource, optional but recommended url: String, // URL to the resource, optional but recommended
target: { // Where resource will open, either 'newtab', 'sametab' or 'iframe' target: { // Where resource will open, either 'newtab', 'sametab' or 'modal'
type: String, type: String,
default: 'newtab', default: 'newtab',
validator: (value) => ['newtab', 'sametab', 'iframe'].indexOf(value) !== -1, validator: (value) => ['newtab', 'sametab', 'modal', 'workspace'].indexOf(value) !== -1,
}, },
itemSize: String, itemSize: String,
enableStatusCheck: Boolean, enableStatusCheck: Boolean,
@ -89,9 +91,9 @@ export default {
ContextMenu, ContextMenu,
}, },
methods: { methods: {
/* Called when an item is clicked, manages the opening of iframe & resets the search field */ /* Called when an item is clicked, manages the opening of modal & resets the search field */
itemOpened(e) { itemOpened(e) {
if (e.altKey || this.target === 'iframe') { if (e.altKey || this.target === 'modal') {
e.preventDefault(); e.preventDefault();
this.$emit('triggerModal', this.url); this.$emit('triggerModal', this.url);
} else { } else {
@ -101,7 +103,13 @@ export default {
/* Open custom context menu, and set position */ /* Open custom context menu, and set position */
openContextMenu(e) { openContextMenu(e) {
this.contextMenuOpen = !this.contextMenuOpen; this.contextMenuOpen = !this.contextMenuOpen;
if (e) this.contextPos = { posX: e.clientX, posY: e.clientY }; if (e && window) {
// Calculate placement based on cursor and scroll position
this.contextPos = {
posX: e.clientX + window.pageXOffset,
posY: e.clientY + window.pageYOffset,
};
}
}, },
/* Closes the context menu, called when user clicks literally anywhere */ /* Closes the context menu, called when user clicks literally anywhere */
closeContextMenu() { closeContextMenu() {
@ -125,7 +133,7 @@ export default {
switch (this.target) { switch (this.target) {
case 'newtab': return '"\\f360"'; case 'newtab': return '"\\f360"';
case 'sametab': return '"\\f24d"'; case 'sametab': return '"\\f24d"';
case 'iframe': return '"\\f2d0"'; case 'modal': return '"\\f2d0"';
default: return '"\\f054"'; default: return '"\\f054"';
} }
}, },
@ -145,6 +153,26 @@ export default {
}; };
}); });
}, },
/* Handle navigation options from the context menu */
contextItemClick(method) {
const { url } = this;
this.contextMenuOpen = false;
switch (method) {
case 'newtab':
window.open(url, '_blank');
break;
case 'sametab':
window.open(url, '_self');
break;
case 'modal':
this.$emit('triggerModal', url);
break;
case 'workspace':
router.push({ name: 'workspace', query: { url } });
break;
default: window.open(url, '_blank');
}
},
}, },
mounted() { mounted() {
// If ststus checking is enabled, then check service status // If ststus checking is enabled, then check service status