This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/views/teams/NewTeam.vue

81 lines
1.8 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 class="close" @click="back()">
<icon :icon="['far', 'times-circle']">
</icon>
</a>
2018-09-14 17:19:50 +00:00
<h3>Create a new team</h3>
2018-12-25 15:03:51 +00:00
<form @submit.prevent="newTeam" @keyup.esc="back()">
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
v-focus
class="input"
:class="{ 'disabled': teamService.loading}" v-model="team.name"
type="text"
placeholder="The team's name goes here..."/>
2018-09-14 17:19:50 +00:00
</p>
<p class="control">
2018-12-25 15:03:51 +00:00
<button type="submit" class="button is-success noshadow">
2018-09-14 17:19:50 +00:00
<span class="icon is-small">
<icon icon="plus"/>
</span>
Add
</button>
</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 {
2020-06-17 17:10:48 +00:00
name: 'NewTeam',
2018-09-14 17:19:50 +00:00
data() {
return {
teamService: TeamService,
team: TeamModel,
showError: false,
2018-09-14 17:19:50 +00:00
}
},
2018-12-25 15:03:51 +00:00
created() {
this.teamService = new TeamService()
2019-10-26 12:19:56 +00:00
this.team = new TeamModel()
this.$store.commit(IS_FULLPAGE, true)
2018-12-25 15:03:51 +00:00
},
mounted() {
this.setTitle('Create a new Team')
},
2018-09-14 17:19:50 +00:00
methods: {
newTeam() {
2020-06-17 17:10:48 +00:00
if (this.team.name === '') {
this.showError = true
return
}
this.showError = false
this.teamService.create(this.team)
2018-09-14 17:19:50 +00:00
.then(response => {
router.push({name: 'teams.edit', params: {id: response.id}})
this.success({message: 'The team was successfully created.'}, this)
2018-09-14 17:19:50 +00:00
})
.catch(e => {
this.error(e, this)
2018-09-14 17:19:50 +00:00
})
},
2018-12-25 15:03:51 +00:00
back() {
router.go(-1)
},
2018-09-14 17:19:50 +00:00
}
}
</script>