vikunja/frontend/src/views/teams/NewTeam.vue

103 lines
2.3 KiB
Vue

<template>
<CreateEdit
:title="title"
:primary-disabled="team.name === ''"
@create="newTeam()"
>
<div class="field">
<label
class="label"
for="teamName"
>{{ $t('team.attributes.name') }}</label>
<div
class="control is-expanded"
:class="{ 'is-loading': teamService.loading }"
>
<input
id="teamName"
v-model="team.name"
v-focus
:class="{ 'disabled': teamService.loading }"
class="input"
:placeholder="$t('team.attributes.namePlaceholder')"
type="text"
@keyup.enter="newTeam"
>
</div>
</div>
<div
v-if="configStore.publicTeamsEnabled"
class="field"
>
<label
class="label"
for="teamIsPublic"
>{{ $t('team.attributes.isPublic') }}</label>
<div
class="control is-expanded"
:class="{ 'is-loading': teamService.loading }"
>
<Fancycheckbox
v-model="team.isPublic"
:class="{ 'disabled': teamService.loading }"
>
{{ $t('team.attributes.isPublicDescription') }}
</Fancycheckbox>
</div>
</div>
<p
v-if="showError && team.name === ''"
class="help is-danger"
>
{{ $t('team.attributes.nameRequired') }}
</p>
</CreateEdit>
</template>
<script lang="ts">
export default { name: 'NewTeam' }
</script>
<script setup lang="ts">
import {reactive, ref, shallowReactive, computed} from 'vue'
import {useI18n} from 'vue-i18n'
import TeamModel from '@/models/team'
import TeamService from '@/services/team'
import CreateEdit from '@/components/misc/create-edit.vue'
import Fancycheckbox from '@/components/input/fancycheckbox.vue'
import {useTitle} from '@/composables/useTitle'
import {useRouter} from 'vue-router'
import {success} from '@/message'
import {useConfigStore} from '@/stores/config'
const {t} = useI18n()
const title = computed(() => t('team.create.title'))
useTitle(title)
const router = useRouter()
const teamService = shallowReactive(new TeamService())
const team = reactive(new TeamModel())
const showError = ref(false)
const configStore = useConfigStore()
async function newTeam() {
if (team.name === '') {
showError.value = true
return
}
showError.value = false
const response = await teamService.create(team)
router.push({
name: 'teams.edit',
params: { id: response.id },
})
success({message: t('team.create.success') })
}
</script>