mirror of
https://github.com/modrinth/code.git
synced 2026-08-30 11:36:05 +00:00
* feat: implement instance share page + search_users backend call * feat: invite players modal * feat: use tanstack queries for friends sync across app pages * feat: base shared instances implementation * fix: admon style * feat: impl instance admonitions like server panel * fix: impl get + del usage * feat: support modpack links * feat: invite notif accepting * fix: lint + fmt * feat: impl install to play * feat: impl usage of UpdateToPlayModal * feat: warnings on deleting/disabling shared-instance version content * fix: send instance name * feat: align with backend * feat: shared instances qa * feat: wrong account protection * feat: qa * fix: smartly apply updates * fix: install bug * fix: 401/404 differentiation * fix: fmt+prepr * feat: qa * feat: qa * fix: signing out messes up revoke/deleted checks * feat: qa * fix: fmt + lint * feat: lock content if part of shared instance * fix: lint * [do not merge] feat: rough invite links impl temp (#6666) * fix: wrong cmd * feat: invite page * fix: server-manager DTO mismatch * fix: drop anonymous invite link acceptance * refactor: structured shared-instance unavailable errors * refactor: centralise error presentations * refactor: dedupe shared instance diff detection * fix: logging in reqwests * refactor: move app.vue shared instances into handler * refactor: break up Share.vue * refactor: split up shared instances state outside of instance index * refactor: dedicated shared instances install/update modals + split up page * refactor: centralized managed content * refactor: split up install shared to own runner + shared.rs split up * refactor: dedupe sql for instance metadata enrichmnt * refactor: friends composable + dedupe friends logic across usages * chore: reduced unused code * fix: align with backend * fix: lint * fix: file sha changes * fix: invite links not working due to icon signed * feat: qa * feat: reporting frontend dummy * fix: try use header * remove: file hash field * fix: pin box * feat: malware warning for shared instances * fix: cache rule * feat: config files syncing * feat: disable config sharing * fix: header * fix: use mark ready * fix: dont cause push update for configs * fix: lint * feat: sharing page in settings * feat: move config + change flow * fix: qa * fix: lint prepr * feat: proxy file upload thru shared instances backend * fix: use collapisible * fix: push config * fix: config * feat: swap out sign in modal for new one * fix: report flow * fix: exclude configs.zip from external warnings * fix: nuxi init * fix: config bundle downloading * fix: error notif * fix: polling * fix: qa * fix: lint + prepr * feat: shared instances moderation frontend + hook up report flow * fix: report copy * fix: lint * fix: lint * fix: modrinth ids being undefined * feat: instance quarantining * fix: prepr + fmt * fix: quarantined -> locked terminology * fix: missing endpoint impls + fmt * fix: missing api in build.rs * fix: share tab jittery * fix: fmt *PT bug * fix: invites count as users even if pending * fix: prepr * fix: invite page owner in users list * fix: lint * fix: qa * fix: lint * fix: members stale not clearing * fix: invite use joined_at field * fix: lint * fix: qa --------- Co-authored-by: sychic <47618543+Sychic@users.noreply.github.com>
361 lines
9.1 KiB
Vue
361 lines
9.1 KiB
Vue
<script setup>
|
|
import {
|
|
ClipboardCopyIcon,
|
|
EyeIcon,
|
|
FolderOpenIcon,
|
|
PlayIcon,
|
|
PlusIcon,
|
|
SearchIcon,
|
|
StopCircleIcon,
|
|
TrashIcon,
|
|
} from '@modrinth/assets'
|
|
import {
|
|
Accordion,
|
|
DropdownSelect,
|
|
formatLoader,
|
|
injectNotificationManager,
|
|
StyledInput,
|
|
useVIntl,
|
|
} from '@modrinth/ui'
|
|
import { useStorage } from '@vueuse/core'
|
|
import dayjs from 'dayjs'
|
|
import { computed, ref } from 'vue'
|
|
|
|
import ContextMenu from '@/components/ui/ContextMenu.vue'
|
|
import Instance from '@/components/ui/Instance.vue'
|
|
import ConfirmDeleteInstanceModal from '@/components/ui/modal/ConfirmDeleteInstanceModal.vue'
|
|
import { install_duplicate_instance } from '@/helpers/install'
|
|
import { remove } from '@/helpers/instance'
|
|
|
|
const { handleError } = injectNotificationManager()
|
|
|
|
const { formatMessage } = useVIntl()
|
|
|
|
const props = defineProps({
|
|
instances: {
|
|
type: Array,
|
|
default() {
|
|
return []
|
|
},
|
|
},
|
|
label: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
})
|
|
const instanceOptions = ref(null)
|
|
const instanceComponents = ref(null)
|
|
|
|
const currentDeleteInstance = ref(null)
|
|
const confirmModal = ref(null)
|
|
|
|
async function deleteInstance() {
|
|
if (currentDeleteInstance.value) {
|
|
instanceComponents.value = instanceComponents.value.filter(
|
|
(x) => x.instance.id !== currentDeleteInstance.value,
|
|
)
|
|
await remove(currentDeleteInstance.value).catch(handleError)
|
|
}
|
|
}
|
|
|
|
async function duplicateInstance(p) {
|
|
await install_duplicate_instance(p).catch(handleError)
|
|
}
|
|
|
|
const handleRightClick = (event, instanceId) => {
|
|
const item = instanceComponents.value.find((x) => x.instance.id === instanceId)
|
|
const baseOptions = [
|
|
...(item.instance.quarantined ? [] : [{ name: 'add_content' }, { type: 'divider' }]),
|
|
{ name: 'edit' },
|
|
{ name: 'duplicate' },
|
|
{ name: 'open' },
|
|
{ name: 'copy' },
|
|
{ type: 'divider' },
|
|
{
|
|
name: 'delete',
|
|
color: 'danger',
|
|
},
|
|
]
|
|
|
|
instanceOptions.value.showMenu(
|
|
event,
|
|
item,
|
|
item.playing
|
|
? [
|
|
{
|
|
name: 'stop',
|
|
color: 'danger',
|
|
},
|
|
...baseOptions,
|
|
]
|
|
: [
|
|
...(item.instance.quarantined
|
|
? []
|
|
: [
|
|
{
|
|
name: 'play',
|
|
color: 'primary',
|
|
},
|
|
]),
|
|
...baseOptions,
|
|
],
|
|
)
|
|
}
|
|
|
|
const handleOptionsClick = async (args) => {
|
|
switch (args.option) {
|
|
case 'play':
|
|
args.item.play(null, 'InstanceGridContextMenu')
|
|
break
|
|
case 'stop':
|
|
args.item.stop(null, 'InstanceGridContextMenu')
|
|
break
|
|
case 'add_content':
|
|
await args.item.addContent()
|
|
break
|
|
case 'edit':
|
|
await args.item.seeInstance()
|
|
break
|
|
case 'duplicate':
|
|
if (args.item.instance.install_stage == 'installed')
|
|
await duplicateInstance(args.item.instance.id)
|
|
break
|
|
case 'open':
|
|
await args.item.openFolder()
|
|
break
|
|
case 'copy':
|
|
await navigator.clipboard.writeText(args.item.instance.id)
|
|
break
|
|
case 'delete':
|
|
currentDeleteInstance.value = args.item.instance.id
|
|
confirmModal.value.show()
|
|
break
|
|
}
|
|
}
|
|
|
|
const state = useStorage(
|
|
`${props.label}-grid-display-state`,
|
|
{
|
|
group: 'Group',
|
|
sortBy: 'Name',
|
|
collapsedGroups: [],
|
|
},
|
|
localStorage,
|
|
{ mergeDefaults: true },
|
|
)
|
|
|
|
const search = ref('')
|
|
const collapsedSectionKeys = computed(() => new Set(state.value.collapsedGroups ?? []))
|
|
|
|
const getSectionKey = (sectionName) => `${state.value.group}:${sectionName}`
|
|
|
|
const isSectionCollapsed = (sectionName) => {
|
|
return collapsedSectionKeys.value.has(getSectionKey(sectionName))
|
|
}
|
|
|
|
const setSectionCollapsed = (sectionName, collapsed) => {
|
|
const sectionKey = getSectionKey(sectionName)
|
|
const collapsedSections = new Set(state.value.collapsedGroups ?? [])
|
|
|
|
if (collapsed) {
|
|
collapsedSections.add(sectionKey)
|
|
} else {
|
|
collapsedSections.delete(sectionKey)
|
|
}
|
|
|
|
state.value.collapsedGroups = [...collapsedSections]
|
|
}
|
|
|
|
const filteredResults = computed(() => {
|
|
const { group = 'Group', sortBy = 'Name' } = state.value
|
|
|
|
const instances = props.instances.filter((instance) => {
|
|
return instance.name.toLowerCase().includes(search.value.toLowerCase())
|
|
})
|
|
|
|
if (sortBy === 'Name') {
|
|
instances.sort((a, b) => {
|
|
return a.name.localeCompare(b.name)
|
|
})
|
|
}
|
|
|
|
if (sortBy === 'Game version') {
|
|
instances.sort((a, b) => {
|
|
return a.game_version.localeCompare(b.game_version, undefined, { numeric: true })
|
|
})
|
|
}
|
|
|
|
if (sortBy === 'Last played') {
|
|
instances.sort((a, b) => {
|
|
return dayjs(b.last_played ?? 0).diff(dayjs(a.last_played ?? 0))
|
|
})
|
|
}
|
|
|
|
if (sortBy === 'Date created') {
|
|
instances.sort((a, b) => {
|
|
return dayjs(b.date_created).diff(dayjs(a.date_created))
|
|
})
|
|
}
|
|
|
|
if (sortBy === 'Date modified') {
|
|
instances.sort((a, b) => {
|
|
return dayjs(b.date_modified).diff(dayjs(a.date_modified))
|
|
})
|
|
}
|
|
|
|
const instanceMap = new Map()
|
|
|
|
if (group === 'Loader') {
|
|
instances.forEach((instance) => {
|
|
const loader = formatLoader(formatMessage, instance.loader)
|
|
if (!instanceMap.has(loader)) {
|
|
instanceMap.set(loader, [])
|
|
}
|
|
|
|
instanceMap.get(loader).push(instance)
|
|
})
|
|
} else if (group === 'Game version') {
|
|
instances.forEach((instance) => {
|
|
if (!instanceMap.has(instance.game_version)) {
|
|
instanceMap.set(instance.game_version, [])
|
|
}
|
|
|
|
instanceMap.get(instance.game_version).push(instance)
|
|
})
|
|
} else if (group === 'Group') {
|
|
instances.forEach((instance) => {
|
|
if (instance.groups.length === 0) {
|
|
instance.groups.push('None')
|
|
}
|
|
|
|
for (const category of instance.groups) {
|
|
if (!instanceMap.has(category)) {
|
|
instanceMap.set(category, [])
|
|
}
|
|
|
|
instanceMap.get(category).push(instance)
|
|
}
|
|
})
|
|
} else {
|
|
return instanceMap.set('None', instances)
|
|
}
|
|
|
|
// For 'name', we intuitively expect the sorting to apply to the name of the group first, not just the name of the instance
|
|
// ie: Category A should come before B, even if the first instance in B comes before the first instance in A
|
|
if (sortBy === 'Name') {
|
|
const sortedEntries = [...instanceMap.entries()].sort((a, b) => {
|
|
// None should always be first
|
|
if (a[0] === 'None' && b[0] !== 'None') {
|
|
return -1
|
|
}
|
|
if (a[0] !== 'None' && b[0] === 'None') {
|
|
return 1
|
|
}
|
|
return a[0].localeCompare(b[0])
|
|
})
|
|
instanceMap.clear()
|
|
sortedEntries.forEach((entry) => {
|
|
instanceMap.set(entry[0], entry[1])
|
|
})
|
|
}
|
|
// default sorting would do 1.20.4 < 1.8.9 because 2 < 8
|
|
// localeCompare with numeric=true puts 1.8.9 < 1.20.4 because 8 < 20
|
|
if (group === 'Game version') {
|
|
const sortedEntries = [...instanceMap.entries()].sort((a, b) => {
|
|
return a[0].localeCompare(b[0], undefined, { numeric: true })
|
|
})
|
|
instanceMap.clear()
|
|
sortedEntries.forEach((entry) => {
|
|
instanceMap.set(entry[0], entry[1])
|
|
})
|
|
}
|
|
|
|
return instanceMap
|
|
})
|
|
</script>
|
|
<template>
|
|
<div class="flex gap-2">
|
|
<StyledInput
|
|
v-model="search"
|
|
:icon="SearchIcon"
|
|
type="text"
|
|
placeholder="Search"
|
|
clearable
|
|
wrapper-class="flex-1"
|
|
/>
|
|
<DropdownSelect
|
|
v-slot="{ selected }"
|
|
v-model="state.sortBy"
|
|
name="Sort Dropdown"
|
|
class="max-w-[16rem]"
|
|
:options="['Name', 'Last played', 'Date created', 'Date modified', 'Game version']"
|
|
placeholder="Select..."
|
|
>
|
|
<span class="font-semibold text-primary">Sort by: </span>
|
|
<span class="font-semibold text-secondary">{{ selected }}</span>
|
|
</DropdownSelect>
|
|
<DropdownSelect
|
|
v-slot="{ selected }"
|
|
v-model="state.group"
|
|
class="max-w-[16rem]"
|
|
name="Group Dropdown"
|
|
:options="['Group', 'Loader', 'Game version', 'None']"
|
|
placeholder="Select..."
|
|
>
|
|
<span class="font-semibold text-primary">Group by: </span>
|
|
<span class="font-semibold text-secondary">{{ selected }}</span>
|
|
</DropdownSelect>
|
|
</div>
|
|
<Accordion
|
|
v-for="instanceSection in Array.from(filteredResults, ([key, value]) => ({
|
|
key,
|
|
value,
|
|
}))"
|
|
:key="instanceSection.key"
|
|
:divider="instanceSection.key !== 'None'"
|
|
:open-by-default="!isSectionCollapsed(instanceSection.key)"
|
|
class="row"
|
|
@on-open="setSectionCollapsed(instanceSection.key, false)"
|
|
@on-close="setSectionCollapsed(instanceSection.key, true)"
|
|
>
|
|
<template v-if="instanceSection.key !== 'None'" #title>
|
|
<span class="text-base">{{ instanceSection.key }}</span>
|
|
</template>
|
|
<section class="instances">
|
|
<Instance
|
|
v-for="instance in instanceSection.value"
|
|
ref="instanceComponents"
|
|
:key="instance.id + instance.install_stage"
|
|
:instance="instance"
|
|
@contextmenu.prevent.stop="(event) => handleRightClick(event, instance.id)"
|
|
/>
|
|
</section>
|
|
</Accordion>
|
|
<ConfirmDeleteInstanceModal ref="confirmModal" @delete="deleteInstance" />
|
|
<ContextMenu ref="instanceOptions" @option-clicked="handleOptionsClick">
|
|
<template #play> <PlayIcon /> Play </template>
|
|
<template #stop> <StopCircleIcon /> Stop </template>
|
|
<template #add_content> <PlusIcon /> Add content </template>
|
|
<template #edit> <EyeIcon /> View instance </template>
|
|
<template #duplicate> <ClipboardCopyIcon /> Duplicate instance</template>
|
|
<template #delete> <TrashIcon /> Delete </template>
|
|
<template #open> <FolderOpenIcon /> Open folder </template>
|
|
<template #copy> <ClipboardCopyIcon /> Copy path </template>
|
|
</ContextMenu>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
.row {
|
|
width: 100%;
|
|
}
|
|
|
|
.instances {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
|
|
width: 100%;
|
|
gap: 0.75rem;
|
|
margin-right: auto;
|
|
scroll-behavior: smooth;
|
|
overflow-y: auto;
|
|
}
|
|
</style>
|