frontend/src/views/teams/NewTeam.vue

78 lines
1.7 KiB
Vue
Raw Normal View History

2018-09-14 17:19:50 +00:00
<template>
2018-12-25 15:03:51 +00:00
<div class="fullpage">
<a @click="back()" class="close">
2018-12-25 15:03:51 +00:00
<icon :icon="['far', 'times-circle']">
</icon>
</a>
2018-09-14 17:19:50 +00:00
<h3>Create a new team</h3>
<form @keyup.esc="back()" @submit.prevent="newTeam">
2018-09-14 17:19:50 +00:00
<div class="field is-grouped">
<p class="control is-expanded" v-bind:class="{ 'is-loading': teamService.loading}">
<input
:class="{ 'disabled': teamService.loading}"
class="input"
placeholder="The team's name goes here..." type="text"
v-focus
v-model="team.name"/>
2018-09-14 17:19:50 +00:00
</p>
<p class="control">
<x-button :shadow="false" @click="newTeam" icon="plus">
2018-09-14 17:19:50 +00:00
Add
</x-button>
2018-09-14 17:19:50 +00:00
</p>
</div>
2020-06-17 17:10:48 +00:00
<p class="help is-danger" v-if="showError && team.name === ''">
Please specify a name.
</p>
2018-09-14 17:19:50 +00:00
</form>
</div>
</template>
<script>
import router from '../../router'
import TeamModel from '../../models/team'
import TeamService from '../../services/team'
import {IS_FULLPAGE} from '@/store/mutation-types'
2018-09-14 17:19:50 +00:00
export default {
name: 'NewTeam',
data() {
return {
teamService: TeamService,
team: TeamModel,
showError: false,
}
},
created() {
this.teamService = new TeamService()
this.team = new TeamModel()
this.$store.commit(IS_FULLPAGE, true)
},
mounted() {
this.setTitle('Create a new Team')
},
methods: {
newTeam() {
if (this.team.name === '') {
this.showError = true
return
2018-09-14 17:19:50 +00:00
}
this.showError = false
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)
})
.catch(e => {
this.error(e, this)
})
2018-09-14 17:19:50 +00:00
},
back() {
router.go(-1)
},
},
}
2018-09-14 17:19:50 +00:00
</script>