mirror of
https://github.com/modrinth/code.git
synced 2026-08-30 19:46:33 +00:00
* feat: base of instances v2 * feat: use old profiles with compat layer * prototype: instances v2 * fix: install_from using profile * fix: skins migration fix * fix: frontend still using profile path * fix: add update proj multiselect guard * fix: cargo fmt * fix: content missing fields * feat: break up app-lib/api/instance.rs * fix: check_content_updates mismatch * fix: updater modal cleanup w/new structure * feat: better update all handling * fix: remove preview_update_all * fix: feedback on bulk update + lint * fix: rem transitions * fix: change to jsonb * feat: app db backup after update * fix: lint * fix: sqlx prepare + use sqlx macros * fix: lint * fix: bugs * feat: defuck the installing process up * fix: bug of hell * fix: shear * fix: fmt * fix: install progress spacing + change mc/content/overrides to bytes * fix: lint * fix: prepr * fix: navtabs anim not working in app * fix: worlds.vue improvements + browse page fixes * feat: optimise queries + adapter fns * fix: lint * fix: lint * feat: shared modrinth-content-management crate (#6469) * feat: disable warnings setting * feat: add instances shortcuts (#6329) * Add modrinth://launch deep link to start a profile Support external profile launching via modrinth://launch/{profile_path} for integrations such as Stream Deck. * Change route to /launch/profile/{id} for future extensibility * fix: ensure profile path is url decoded * fix: URL-decode profile path from deep link * fix: use urlencoding crate for URL decoding * feat: implement app instance shortcuts * feat: change windows shortcut creation to use windows api instead * feat: implement creating a shortcut launching world/server * format * fmt * fix multiline inline tables * pnpm prepr * feat: move create shortcut to last item * refactor: split up shortcuts.rs for individual platforms * refactor: turn profile launch url into url type * use string literal and add safety comment * pt2 * refactor: rename anything that's profile into instance * update mac shortcut --------- Co-authored-by: DJCheesusReal <134006619+DJCheesusReal@users.noreply.github.com> --------- Co-authored-by: Truman Gao <106889354+tdgao@users.noreply.github.com> Co-authored-by: DJCheesusReal <134006619+DJCheesusReal@users.noreply.github.com>
182 lines
3.9 KiB
Vue
182 lines
3.9 KiB
Vue
<template>
|
|
<transition name="fade">
|
|
<div
|
|
v-show="shown"
|
|
ref="contextMenu"
|
|
class="context-menu"
|
|
:style="{
|
|
left: left,
|
|
top: top,
|
|
}"
|
|
>
|
|
<div v-for="(option, index) in options" :key="index" @click.stop="optionClicked(option.name)">
|
|
<hr v-if="option.type === 'divider'" class="divider" />
|
|
<div
|
|
v-else-if="!(isInstanceLink(item) && option.name === `add_content`)"
|
|
class="item clickable"
|
|
:class="[option.color ?? 'base']"
|
|
>
|
|
<slot :name="option.name" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { nextTick, onBeforeUnmount, onMounted, ref } from 'vue'
|
|
|
|
const emit = defineEmits(['menu-closed', 'option-clicked'])
|
|
|
|
const item = ref(null)
|
|
const contextMenu = ref(null)
|
|
const options = ref([])
|
|
const left = ref('0px')
|
|
const top = ref('0px')
|
|
const shown = ref(false)
|
|
|
|
defineExpose({
|
|
showMenu: (event, passedItem, passedOptions) => {
|
|
item.value = passedItem
|
|
options.value = passedOptions
|
|
|
|
// show to get dimensions
|
|
shown.value = true
|
|
|
|
// then, adjust position if overflowing
|
|
nextTick(() => {
|
|
const menuWidth = contextMenu.value?.clientWidth || 200
|
|
const menuHeight = contextMenu.value?.clientHeight || 100
|
|
const minFromEdge = 10
|
|
|
|
if (event.pageX + menuWidth + minFromEdge >= window.innerWidth) {
|
|
left.value = Math.max(minFromEdge, event.pageX - menuWidth - minFromEdge) + 'px'
|
|
} else {
|
|
left.value = event.pageX + minFromEdge + 'px'
|
|
}
|
|
|
|
if (event.pageY + menuHeight + minFromEdge >= window.innerHeight) {
|
|
top.value = Math.max(minFromEdge, event.pageY - menuHeight - minFromEdge) + 'px'
|
|
} else {
|
|
top.value = event.pageY + minFromEdge + 'px'
|
|
}
|
|
})
|
|
},
|
|
})
|
|
|
|
const isInstanceLink = (item) => {
|
|
if (item.instance != undefined && item.instance.link) {
|
|
return true
|
|
} else if (item != undefined && item.link) {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
const hideContextMenu = () => {
|
|
shown.value = false
|
|
emit('menu-closed')
|
|
}
|
|
|
|
const optionClicked = (option) => {
|
|
emit('option-clicked', {
|
|
item: item.value,
|
|
option: option,
|
|
})
|
|
hideContextMenu()
|
|
}
|
|
|
|
const onEscKeyRelease = (event) => {
|
|
if (event.keyCode === 27) {
|
|
hideContextMenu()
|
|
}
|
|
}
|
|
|
|
const handleClickOutside = (event) => {
|
|
const elements = document.elementsFromPoint(event.clientX, event.clientY)
|
|
if (
|
|
contextMenu.value &&
|
|
contextMenu.value.$el !== event.target &&
|
|
!elements.includes(contextMenu.value.$el)
|
|
) {
|
|
hideContextMenu()
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
window.addEventListener('click', handleClickOutside)
|
|
document.body.addEventListener('keyup', onEscKeyRelease)
|
|
})
|
|
|
|
onBeforeUnmount(() => {
|
|
window.removeEventListener('click', handleClickOutside)
|
|
document.removeEventListener('keyup', onEscKeyRelease)
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.context-menu {
|
|
background-color: var(--color-raised-bg);
|
|
border-radius: var(--radius-md);
|
|
box-shadow: var(--shadow-floating);
|
|
border: 1px solid var(--color-divider);
|
|
margin: 0;
|
|
position: fixed;
|
|
z-index: 1000000;
|
|
overflow: hidden;
|
|
padding: var(--gap-sm);
|
|
|
|
.item {
|
|
align-items: center;
|
|
color: var(--color-base);
|
|
cursor: pointer;
|
|
display: flex;
|
|
gap: var(--gap-sm);
|
|
padding: var(--gap-sm);
|
|
border-radius: var(--radius-sm);
|
|
|
|
&:hover,
|
|
&:active {
|
|
&.base {
|
|
background-color: var(--color-button-bg);
|
|
color: var(--color-contrast);
|
|
}
|
|
|
|
&.primary {
|
|
background-color: var(--color-brand);
|
|
color: var(--color-accent-contrast);
|
|
font-weight: bold;
|
|
}
|
|
|
|
&.danger {
|
|
background-color: var(--color-red);
|
|
color: var(--color-accent-contrast);
|
|
font-weight: bold;
|
|
}
|
|
|
|
&.contrast {
|
|
background-color: var(--color-orange);
|
|
color: var(--color-accent-contrast);
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
|
|
.divider {
|
|
border: 1px solid var(--color-divider);
|
|
margin: var(--gap-sm);
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.fade-enter-active,
|
|
.fade-leave-active {
|
|
transition: opacity 0.2s ease-in-out;
|
|
}
|
|
|
|
.fade-enter-from,
|
|
.fade-leave-to {
|
|
opacity: 0;
|
|
}
|
|
</style>
|