2018-09-14 19:19:50 +02:00
|
|
|
<template>
|
2021-01-21 23:33:16 +01:00
|
|
|
<create
|
|
|
|
title="Create a new team"
|
|
|
|
@create="newTeam()"
|
|
|
|
:create-disabled="team.name === ''"
|
|
|
|
>
|
|
|
|
<div class="field">
|
|
|
|
<label class="label" for="teamName">Team Name</label>
|
|
|
|
<div
|
|
|
|
class="control is-expanded"
|
|
|
|
:class="{ 'is-loading': teamService.loading }"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
:class="{ 'disabled': teamService.loading }"
|
|
|
|
class="input"
|
|
|
|
id="teamName"
|
|
|
|
placeholder="The team's name goes here..."
|
|
|
|
type="text"
|
|
|
|
v-focus
|
|
|
|
v-model="team.name"
|
|
|
|
@keyup.enter="newTeam"
|
|
|
|
/>
|
2018-09-14 19:19:50 +02:00
|
|
|
</div>
|
2021-01-21 23:33:16 +01:00
|
|
|
</div>
|
|
|
|
<p class="help is-danger" v-if="showError && team.name === ''">
|
|
|
|
Please specify a name.
|
|
|
|
</p>
|
|
|
|
</create>
|
2018-09-14 19:19:50 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-09-05 22:35:52 +02:00
|
|
|
import router from '../../router'
|
|
|
|
import TeamModel from '../../models/team'
|
|
|
|
import TeamService from '../../services/team'
|
2021-01-21 23:33:16 +01:00
|
|
|
import Create from '@/components/misc/create'
|
2018-09-14 19:19:50 +02:00
|
|
|
|
2020-09-05 22:35:52 +02:00
|
|
|
export default {
|
|
|
|
name: 'NewTeam',
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
teamService: TeamService,
|
|
|
|
team: TeamModel,
|
|
|
|
showError: false,
|
|
|
|
}
|
|
|
|
},
|
2021-01-21 23:33:16 +01:00
|
|
|
components: {
|
|
|
|
Create,
|
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
created() {
|
|
|
|
this.teamService = new TeamService()
|
|
|
|
this.team = new TeamModel()
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.setTitle('Create a new Team')
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
newTeam() {
|
|
|
|
if (this.team.name === '') {
|
|
|
|
this.showError = true
|
|
|
|
return
|
2018-09-14 19:19:50 +02:00
|
|
|
}
|
2020-09-05 22:35:52 +02:00
|
|
|
this.showError = false
|
|
|
|
|
2021-01-21 23:33:16 +01:00
|
|
|
this.teamService
|
|
|
|
.create(this.team)
|
|
|
|
.then((response) => {
|
|
|
|
router.push({
|
|
|
|
name: 'teams.edit',
|
|
|
|
params: { id: response.id },
|
|
|
|
})
|
|
|
|
this.success(
|
|
|
|
{ message: 'The team was successfully created.' },
|
|
|
|
this
|
|
|
|
)
|
2020-09-05 22:35:52 +02:00
|
|
|
})
|
2021-01-21 23:33:16 +01:00
|
|
|
.catch((e) => {
|
2020-09-05 22:35:52 +02:00
|
|
|
this.error(e, this)
|
|
|
|
})
|
2018-09-14 19:19:50 +02:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
back() {
|
|
|
|
router.go(-1)
|
2020-07-07 22:07:13 +02:00
|
|
|
},
|
2020-09-05 22:35:52 +02:00
|
|
|
},
|
|
|
|
}
|
2018-09-14 19:19:50 +02:00
|
|
|
</script>
|