You've already forked AstralRinth
forked from didirus/AstralRinth
* refactor: migrate to common eslint+prettier configs * fix: prettier frontend * feat: config changes * fix: lint issues * fix: lint * fix: type imports * fix: cyclical import issue * fix: lockfile * fix: missing dep * fix: switch to tabs * fix: continue switch to tabs * fix: rustfmt parity * fix: moderation lint issue * fix: lint issues * fix: ui intl * fix: lint issues * Revert "fix: rustfmt parity" This reverts commit cb99d2376c321d813d4b7fc7e2a213bb30a54711. * feat: revert last rs
120 lines
3.1 KiB
Vue
120 lines
3.1 KiB
Vue
<script setup lang="ts">
|
|
import { SaveIcon, XIcon } from '@modrinth/assets'
|
|
import { ButtonStyled, commonMessages, injectNotificationManager } from '@modrinth/ui'
|
|
import { defineMessage, useVIntl } from '@vintl/vintl'
|
|
import { computed, ref } from 'vue'
|
|
|
|
import ModalWrapper from '@/components/ui/modal/ModalWrapper.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_profile,
|
|
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()
|
|
|
|
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_profile(
|
|
props.instance.path,
|
|
index.value,
|
|
serverName,
|
|
address.value,
|
|
resourcePackStatus,
|
|
).catch(handleError)
|
|
|
|
if (newDisplayStatus.value !== displayStatus.value) {
|
|
await set_world_display_status(
|
|
props.instance.path,
|
|
'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>
|
|
<ModalWrapper ref="modal">
|
|
<template #title>
|
|
<span class="font-extrabold text-lg text-contrast">{{ formatMessage(titleMessage) }}</span>
|
|
</template>
|
|
<ServerModalBody
|
|
v-model:name="name"
|
|
v-model:address="address"
|
|
v-model:resource-pack="resourcePack"
|
|
/>
|
|
<HideFromHomeOption v-model="hideFromHome" class="mt-3" />
|
|
<div class="flex gap-2 mt-4">
|
|
<ButtonStyled color="brand">
|
|
<button :disabled="!address" @click="saveServer">
|
|
<SaveIcon />
|
|
{{ formatMessage(commonMessages.saveChangesButton) }}
|
|
</button>
|
|
</ButtonStyled>
|
|
<ButtonStyled>
|
|
<button @click="hide()">
|
|
<XIcon />
|
|
{{ formatMessage(commonMessages.cancelButton) }}
|
|
</button>
|
|
</ButtonStyled>
|
|
</div>
|
|
</ModalWrapper>
|
|
</template>
|