debian-mirror-gitlab/app/assets/javascripts/boards/components/board_sidebar.js

142 lines
4.1 KiB
JavaScript
Raw Normal View History

2018-11-08 19:23:39 +05:30
/* eslint-disable comma-dangle, no-new */
2017-08-17 22:00:37 +05:30
2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2017-08-17 22:00:37 +05:30
import Vue from 'vue';
2018-03-17 18:26:18 +05:30
import Flash from '../../flash';
2018-11-20 20:47:30 +05:30
import { sprintf, __ } from '../../locale';
2018-03-17 18:26:18 +05:30
import Sidebar from '../../right_sidebar';
2017-08-17 22:00:37 +05:30
import eventHub from '../../sidebar/event_hub';
2018-11-08 19:23:39 +05:30
import AssigneeTitle from '../../sidebar/components/assignees/assignee_title.vue';
import Assignees from '../../sidebar/components/assignees/assignees.vue';
2018-03-17 18:26:18 +05:30
import DueDateSelectors from '../../due_date_select';
2018-11-08 19:23:39 +05:30
import RemoveBtn from './sidebar/remove_issue.vue';
2018-03-17 18:26:18 +05:30
import IssuableContext from '../../issuable_context';
import LabelsSelect from '../../labels_select';
2018-11-08 19:23:39 +05:30
import Subscriptions from '../../sidebar/components/subscriptions/subscriptions.vue';
2018-03-17 18:26:18 +05:30
import MilestoneSelect from '../../milestone_select';
2017-08-17 22:00:37 +05:30
const Store = gl.issueBoards.BoardsStore;
window.gl = window.gl || {};
window.gl.issueBoards = window.gl.issueBoards || {};
gl.issueBoards.BoardSidebar = Vue.extend({
2018-11-08 19:23:39 +05:30
components: {
AssigneeTitle,
Assignees,
RemoveBtn,
Subscriptions,
},
2017-08-17 22:00:37 +05:30
props: {
2018-11-08 19:23:39 +05:30
currentUser: {
type: Object,
default: () => ({}),
},
2017-08-17 22:00:37 +05:30
},
data() {
return {
detail: Store.detail,
issue: {},
list: {},
loadingAssignees: false,
};
},
computed: {
showSidebar () {
return Object.keys(this.issue).length;
},
2017-09-10 17:25:29 +05:30
milestoneTitle() {
return this.issue.milestone ? this.issue.milestone.title : 'No Milestone';
},
canRemove() {
return !this.list.preset;
},
2018-11-18 11:00:15 +05:30
hasLabels() {
return this.issue.labels && this.issue.labels.length;
},
labelDropdownTitle() {
2018-11-20 20:47:30 +05:30
return this.hasLabels ? sprintf(__('%{firstLabel} +%{labelCount} more'), {
firstLabel: this.issue.labels[0].title,
labelCount: this.issue.labels.length - 1
}) : __('Label');
2018-11-18 11:00:15 +05:30
},
selectedLabels() {
return this.hasLabels ? this.issue.labels.map(l => l.title).join(',') : '';
}
2017-08-17 22:00:37 +05:30
},
watch: {
detail: {
handler () {
if (this.issue.id !== this.detail.issue.id) {
$('.block.assignee')
.find('input:not(.js-vue)[name="issue[assignee_ids][]"]')
.each((i, el) => {
$(el).remove();
});
$('.js-issue-board-sidebar', this.$el).each((i, el) => {
$(el).data('glDropdown').clearMenu();
});
}
this.issue = this.detail.issue;
this.list = this.detail.list;
},
deep: true
},
},
2018-11-08 19:23:39 +05:30
created () {
// Get events from glDropdown
eventHub.$on('sidebar.removeAssignee', this.removeAssignee);
eventHub.$on('sidebar.addAssignee', this.addAssignee);
eventHub.$on('sidebar.removeAllAssignees', this.removeAllAssignees);
eventHub.$on('sidebar.saveAssignees', this.saveAssignees);
},
beforeDestroy() {
eventHub.$off('sidebar.removeAssignee', this.removeAssignee);
eventHub.$off('sidebar.addAssignee', this.addAssignee);
eventHub.$off('sidebar.removeAllAssignees', this.removeAllAssignees);
eventHub.$off('sidebar.saveAssignees', this.saveAssignees);
},
mounted () {
new IssuableContext(this.currentUser);
new MilestoneSelect();
new DueDateSelectors();
new LabelsSelect();
new Sidebar();
},
2017-08-17 22:00:37 +05:30
methods: {
closeSidebar () {
this.detail.issue = {};
},
assignSelf () {
// Notify gl dropdown that we are now assigning to current user
this.$refs.assigneeBlock.dispatchEvent(new Event('assignYourself'));
this.addAssignee(this.currentUser);
this.saveAssignees();
},
removeAssignee (a) {
gl.issueBoards.BoardsStore.detail.issue.removeAssignee(a);
},
addAssignee (a) {
gl.issueBoards.BoardsStore.detail.issue.addAssignee(a);
},
removeAllAssignees () {
gl.issueBoards.BoardsStore.detail.issue.removeAllAssignees();
},
saveAssignees () {
this.loadingAssignees = true;
2018-05-09 12:01:36 +05:30
gl.issueBoards.BoardsStore.detail.issue.update()
2017-08-17 22:00:37 +05:30
.then(() => {
this.loadingAssignees = false;
})
.catch(() => {
this.loadingAssignees = false;
2018-03-27 19:54:05 +05:30
Flash(__('An error occurred while saving assignees'));
2017-08-17 22:00:37 +05:30
});
},
},
});