You've already forked 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
117 lines
2.9 KiB
Vue
117 lines
2.9 KiB
Vue
<script setup lang="ts">
|
|
import { PlayIcon, PlusIcon, XIcon } from '@modrinth/assets'
|
|
import { ButtonStyled, commonMessages, injectNotificationManager } from '@modrinth/ui'
|
|
import { defineMessages, useVIntl } from '@vintl/vintl'
|
|
import { ref } from 'vue'
|
|
|
|
import InstanceModalTitlePrefix from '@/components/ui/modal/InstanceModalTitlePrefix.vue'
|
|
import ModalWrapper from '@/components/ui/modal/ModalWrapper.vue'
|
|
import ServerModalBody from '@/components/ui/world/modal/ServerModalBody.vue'
|
|
import type { GameInstance } from '@/helpers/types'
|
|
import { add_server_to_profile, type ServerPackStatus, type ServerWorld } from '@/helpers/worlds.ts'
|
|
|
|
const { handleError } = injectNotificationManager()
|
|
const { formatMessage } = useVIntl()
|
|
|
|
const emit = defineEmits<{
|
|
submit: [server: ServerWorld, play: boolean]
|
|
}>()
|
|
|
|
const props = defineProps<{
|
|
instance: GameInstance
|
|
}>()
|
|
|
|
const modal = ref()
|
|
|
|
const name = ref()
|
|
const address = ref()
|
|
const resourcePack = ref<ServerPackStatus>('enabled')
|
|
|
|
async function addServer(play: boolean) {
|
|
const serverName = name.value ? name.value : address.value
|
|
const resourcePackStatus = resourcePack.value
|
|
const index =
|
|
(await add_server_to_profile(
|
|
props.instance.path,
|
|
serverName,
|
|
address.value,
|
|
resourcePackStatus,
|
|
).catch(handleError)) ?? 0
|
|
emit(
|
|
'submit',
|
|
{
|
|
name: serverName,
|
|
type: 'server',
|
|
index,
|
|
address: address.value,
|
|
pack_status: resourcePackStatus,
|
|
},
|
|
play,
|
|
)
|
|
hide()
|
|
}
|
|
|
|
function show() {
|
|
name.value = ''
|
|
address.value = ''
|
|
resourcePack.value = 'enabled'
|
|
modal.value.show()
|
|
}
|
|
|
|
function hide() {
|
|
modal.value.hide()
|
|
}
|
|
|
|
const messages = defineMessages({
|
|
title: {
|
|
id: 'instance.add-server.title',
|
|
defaultMessage: 'Add a server',
|
|
},
|
|
addServer: {
|
|
id: 'instance.add-server.add-server',
|
|
defaultMessage: 'Add server',
|
|
},
|
|
addAndPlay: {
|
|
id: 'instance.add-server.add-and-play',
|
|
defaultMessage: 'Add and play',
|
|
},
|
|
})
|
|
|
|
defineExpose({ show, hide })
|
|
</script>
|
|
<template>
|
|
<ModalWrapper ref="modal">
|
|
<template #title>
|
|
<span class="flex items-center gap-2 text-lg font-semibold text-primary">
|
|
<InstanceModalTitlePrefix :instance="instance" />
|
|
<span class="font-extrabold text-contrast">{{ formatMessage(messages.title) }}</span>
|
|
</span>
|
|
</template>
|
|
<ServerModalBody
|
|
v-model:name="name"
|
|
v-model:address="address"
|
|
v-model:resource-pack="resourcePack"
|
|
/>
|
|
<div class="flex gap-2 mt-4">
|
|
<ButtonStyled color="brand">
|
|
<button :disabled="!address" @click="addServer(true)">
|
|
<PlayIcon />
|
|
{{ formatMessage(messages.addAndPlay) }}
|
|
</button>
|
|
</ButtonStyled>
|
|
<ButtonStyled>
|
|
<button :disabled="!address" @click="addServer(false)">
|
|
<PlusIcon />
|
|
{{ formatMessage(messages.addServer) }}
|
|
</button>
|
|
</ButtonStyled>
|
|
<ButtonStyled>
|
|
<button @click="hide()">
|
|
<XIcon />
|
|
{{ formatMessage(commonMessages.cancelButton) }}
|
|
</button>
|
|
</ButtonStyled>
|
|
</div>
|
|
</ModalWrapper>
|
|
</template>
|