mirror of
https://github.com/modrinth/code.git
synced 2026-08-30 11:36:05 +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>
124 lines
3.0 KiB
Vue
124 lines
3.0 KiB
Vue
<script setup lang="ts">
|
|
import { SaveIcon, XIcon } from '@modrinth/assets'
|
|
import {
|
|
ButtonStyled,
|
|
commonMessages,
|
|
defineMessage,
|
|
injectNotificationManager,
|
|
NewModal,
|
|
useVIntl,
|
|
} from '@modrinth/ui'
|
|
import { computed, ref } from 'vue'
|
|
|
|
import HideFromHomeOption from '@/components/ui/world/modal/HideFromHomeOption.vue'
|
|
import ServerModalBody from '@/components/ui/world/modal/ServerModalBody.vue'
|
|
import type { GameInstance } from '@/helpers/types'
|
|
import {
|
|
type DisplayStatus,
|
|
edit_server_in_instance,
|
|
type ServerPackStatus,
|
|
type ServerWorld,
|
|
set_world_display_status,
|
|
} from '@/helpers/worlds.ts'
|
|
|
|
const { handleError } = injectNotificationManager()
|
|
const { formatMessage } = useVIntl()
|
|
|
|
const emit = defineEmits<{
|
|
submit: [server: ServerWorld]
|
|
}>()
|
|
|
|
const props = defineProps<{
|
|
instance: GameInstance
|
|
}>()
|
|
|
|
const modal = ref<InstanceType<typeof NewModal>>()
|
|
|
|
const name = ref<string>('')
|
|
const address = ref<string>('')
|
|
const resourcePack = ref<ServerPackStatus>('enabled')
|
|
const index = ref<number>(0)
|
|
const displayStatus = ref<DisplayStatus>('normal')
|
|
const hideFromHome = ref(false)
|
|
|
|
const newDisplayStatus = computed(() => (hideFromHome.value ? 'hidden' : 'normal'))
|
|
|
|
async function saveServer() {
|
|
const serverName = name.value ? name.value : address.value
|
|
const resourcePackStatus = resourcePack.value
|
|
await edit_server_in_instance(
|
|
props.instance.id,
|
|
index.value,
|
|
serverName,
|
|
address.value,
|
|
resourcePackStatus,
|
|
).catch(handleError)
|
|
|
|
if (newDisplayStatus.value !== displayStatus.value) {
|
|
await set_world_display_status(
|
|
props.instance.id,
|
|
'server',
|
|
address.value,
|
|
newDisplayStatus.value,
|
|
).catch(handleError)
|
|
}
|
|
|
|
emit('submit', {
|
|
name: serverName,
|
|
type: 'server',
|
|
index: index.value,
|
|
address: address.value,
|
|
pack_status: resourcePackStatus,
|
|
display_status: newDisplayStatus.value,
|
|
})
|
|
hide()
|
|
}
|
|
|
|
function show(server: ServerWorld) {
|
|
name.value = server.name
|
|
address.value = server.address
|
|
resourcePack.value = server.pack_status
|
|
index.value = server.index
|
|
displayStatus.value = server.display_status
|
|
hideFromHome.value = server.display_status === 'hidden'
|
|
modal.value?.show()
|
|
}
|
|
|
|
function hide() {
|
|
modal.value?.hide()
|
|
}
|
|
|
|
defineExpose({ show })
|
|
|
|
const titleMessage = defineMessage({
|
|
id: 'instance.edit-server.title',
|
|
defaultMessage: 'Edit server',
|
|
})
|
|
</script>
|
|
<template>
|
|
<NewModal ref="modal" :header="formatMessage(titleMessage)" width="500px" max-width="500px">
|
|
<ServerModalBody
|
|
v-model:name="name"
|
|
v-model:address="address"
|
|
v-model:resource-pack="resourcePack"
|
|
/>
|
|
<HideFromHomeOption v-model="hideFromHome" class="mt-3" />
|
|
<template #actions>
|
|
<div class="flex gap-2 justify-end">
|
|
<ButtonStyled type="outlined">
|
|
<button @click="hide()">
|
|
<XIcon />
|
|
{{ formatMessage(commonMessages.cancelButton) }}
|
|
</button>
|
|
</ButtonStyled>
|
|
<ButtonStyled color="brand">
|
|
<button :disabled="!address" @click="saveServer">
|
|
<SaveIcon />
|
|
{{ formatMessage(commonMessages.saveChangesButton) }}
|
|
</button>
|
|
</ButtonStyled>
|
|
</div>
|
|
</template>
|
|
</NewModal>
|
|
</template>
|