forked from noxious/client
59 lines
2.1 KiB
Vue
59 lines
2.1 KiB
Vue
<template>
|
|
<Modal :isModalOpen="true" @modal:close="() => zoneEditorStore.toggleCreateZoneModal()" :modal-width="300" :modal-height="400" :is-resizable="false">
|
|
<template #modalHeader>
|
|
<h3 class="m-0 font-medium shrink-0">Create new zone</h3>
|
|
</template>
|
|
|
|
<template #modalBody>
|
|
<div class="m-4">
|
|
<form method="post" @submit.prevent="submit" class="inline">
|
|
<div class="gap-2.5 flex flex-wrap">
|
|
<div class="form-field-full">
|
|
<label for="name">Name</label>
|
|
<input class="input-field max-w-64" v-model="name" name="name" id="name" />
|
|
</div>
|
|
<div class="form-field-half">
|
|
<label for="name">Width</label>
|
|
<input class="input-field max-w-64" v-model="width" name="name" id="name" type="number" />
|
|
</div>
|
|
<div class="form-field-half">
|
|
<label for="name">Height</label>
|
|
<input class="input-field max-w-64" v-model="height" name="name" id="name" type="number" />
|
|
</div>
|
|
<div class="form-field-full">
|
|
<label for="name">PVP enabled</label>
|
|
<select class="input-field" name="pvp" id="pvp">
|
|
<option :value="false">No</option>
|
|
<option :value="true">Yes</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<button class="btn-cyan px-4 py-1.5 min-w-24" type="submit">Save</button>
|
|
</form>
|
|
</div>
|
|
</template>
|
|
</Modal>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import Modal from '@/components/utilities/Modal.vue'
|
|
import { useGameStore } from '@/stores/gameStore'
|
|
import { useZoneEditorStore } from '@/stores/zoneEditorStore'
|
|
import type { Zone } from '@/types'
|
|
|
|
const gameStore = useGameStore()
|
|
const zoneEditorStore = useZoneEditorStore()
|
|
|
|
const name = ref('')
|
|
const width = ref(0)
|
|
const height = ref(0)
|
|
|
|
function submit() {
|
|
gameStore.connection.emit('gm:zone_editor:zone:create', { name: name.value, width: width.value, height: height.value }, (response: Zone[]) => {
|
|
zoneEditorStore.setZoneList(response)
|
|
})
|
|
zoneEditorStore.toggleCreateZoneModal()
|
|
}
|
|
</script>
|