143 lines
3.2 KiB
Vue
143 lines
3.2 KiB
Vue
<script>
|
|
import eventHub from '../eventhub';
|
|
import ProjectSelect from './project_select.vue';
|
|
import ListIssue from '../models/issue';
|
|
|
|
const Store = gl.issueBoards.BoardsStore;
|
|
|
|
export default {
|
|
name: 'BoardNewIssue',
|
|
components: {
|
|
ProjectSelect,
|
|
},
|
|
props: {
|
|
groupId: {
|
|
type: Number,
|
|
required: false,
|
|
default: 0,
|
|
},
|
|
list: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
error: false,
|
|
selectedProject: {},
|
|
};
|
|
},
|
|
computed: {
|
|
disabled() {
|
|
if (this.groupId) {
|
|
return this.title === '' || !this.selectedProject.name;
|
|
}
|
|
return this.title === '';
|
|
},
|
|
},
|
|
mounted() {
|
|
this.$refs.input.focus();
|
|
eventHub.$on('setSelectedProject', this.setSelectedProject);
|
|
},
|
|
methods: {
|
|
submit(e) {
|
|
e.preventDefault();
|
|
if (this.title.trim() === '') return Promise.resolve();
|
|
|
|
this.error = false;
|
|
|
|
const labels = this.list.label ? [this.list.label] : [];
|
|
const issue = new ListIssue({
|
|
title: this.title,
|
|
labels,
|
|
subscribed: true,
|
|
assignees: [],
|
|
project_id: this.selectedProject.id,
|
|
});
|
|
|
|
eventHub.$emit(`scroll-board-list-${this.list.id}`);
|
|
this.cancel();
|
|
|
|
return this.list.newIssue(issue)
|
|
.then(() => {
|
|
// Need this because our jQuery very kindly disables buttons on ALL form submissions
|
|
$(this.$refs.submitButton).enable();
|
|
|
|
Store.detail.issue = issue;
|
|
Store.detail.list = this.list;
|
|
})
|
|
.catch(() => {
|
|
// Need this because our jQuery very kindly disables buttons on ALL form submissions
|
|
$(this.$refs.submitButton).enable();
|
|
|
|
// Remove the issue
|
|
this.list.removeIssue(issue);
|
|
|
|
// Show error message
|
|
this.error = true;
|
|
});
|
|
},
|
|
cancel() {
|
|
this.title = '';
|
|
eventHub.$emit(`hide-issue-form-${this.list.id}`);
|
|
},
|
|
setSelectedProject(selectedProject) {
|
|
this.selectedProject = selectedProject;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="board-new-issue-form">
|
|
<div class="card">
|
|
<form @submit="submit($event)">
|
|
<div
|
|
class="flash-container"
|
|
v-if="error"
|
|
>
|
|
<div class="flash-alert">
|
|
An error occurred. Please try again.
|
|
</div>
|
|
</div>
|
|
<label
|
|
class="label-light"
|
|
:for="list.id + '-title'"
|
|
>
|
|
Title
|
|
</label>
|
|
<input
|
|
class="form-control"
|
|
type="text"
|
|
v-model="title"
|
|
ref="input"
|
|
autocomplete="off"
|
|
:id="list.id + '-title'"
|
|
/>
|
|
<project-select
|
|
v-if="groupId"
|
|
:group-id="groupId"
|
|
/>
|
|
<div class="clearfix prepend-top-10">
|
|
<button
|
|
class="btn btn-success pull-left"
|
|
type="submit"
|
|
:disabled="disabled"
|
|
ref="submit-button"
|
|
>
|
|
Submit issue
|
|
</button>
|
|
<button
|
|
class="btn btn-default pull-right"
|
|
type="button"
|
|
@click="cancel"
|
|
>
|
|
Cancel
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|