frontend/src/views/teams/NewTeam.vue

79 lines
1.6 KiB
Vue

<template>
<create-edit
:title="$t('team.create.title')"
@create="newTeam()"
:create-disabled="team.name === ''"
>
<div class="field">
<label class="label" for="teamName">{{ $t('team.attributes.name') }}</label>
<div
class="control is-expanded"
:class="{ 'is-loading': teamService.loading }"
>
<input
:class="{ 'disabled': teamService.loading }"
class="input"
id="teamName"
:placeholder="$t('team.attributes.namePlaceholder')"
type="text"
v-focus
v-model="team.name"
@keyup.enter="newTeam"
/>
</div>
</div>
<p class="help is-danger" v-if="showError && team.name === ''">
{{ $t('team.attributes.nameRequired') }}
</p>
</create-edit>
</template>
<script>
import TeamModel from '../../models/team'
import TeamService from '../../services/team'
import CreateEdit from '@/components/misc/create-edit.vue'
export default {
name: 'NewTeam',
data() {
return {
teamService: TeamService,
team: TeamModel,
showError: false,
}
},
components: {
CreateEdit,
},
created() {
this.teamService = new TeamService()
this.team = new TeamModel()
},
mounted() {
this.setTitle(this.$t('team.create.title'))
},
methods: {
newTeam() {
if (this.team.name === '') {
this.showError = true
return
}
this.showError = false
this.teamService
.create(this.team)
.then((response) => {
this.$router.push({
name: 'teams.edit',
params: { id: response.id },
})
this.success({message: this.$t('team.create.success') })
})
.catch((e) => {
this.error(e)
})
},
},
}
</script>