119 lines
3.1 KiB
JavaScript
119 lines
3.1 KiB
JavaScript
import Sortable from 'sortablejs';
|
|
import Vue from 'vue';
|
|
import { n__ } from '~/locale';
|
|
import Icon from '~/vue_shared/components/icon.vue';
|
|
import Tooltip from '~/vue_shared/directives/tooltip';
|
|
import AccessorUtilities from '../../lib/utils/accessor';
|
|
import BoardBlankState from './board_blank_state.vue';
|
|
import BoardDelete from './board_delete';
|
|
import BoardList from './board_list.vue';
|
|
import boardsStore from '../stores/boards_store';
|
|
import { getBoardSortableDefaultOptions, sortableEnd } from '../mixins/sortable_default_options';
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
BoardBlankState,
|
|
BoardDelete,
|
|
BoardList,
|
|
Icon,
|
|
},
|
|
directives: {
|
|
Tooltip,
|
|
},
|
|
props: {
|
|
list: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
issueLinkBase: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
rootPath: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
boardId: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
detailIssue: boardsStore.detail,
|
|
filter: boardsStore.filter,
|
|
};
|
|
},
|
|
computed: {
|
|
counterTooltip() {
|
|
const { issuesSize } = this.list;
|
|
return `${n__('%d issue', '%d issues', issuesSize)}`;
|
|
},
|
|
isNewIssueShown() {
|
|
return this.list.type === 'backlog' || (!this.disabled && this.list.type !== 'closed');
|
|
},
|
|
},
|
|
watch: {
|
|
filter: {
|
|
handler() {
|
|
this.list.page = 1;
|
|
this.list.getIssues(true).catch(() => {
|
|
// TODO: handle request error
|
|
});
|
|
},
|
|
deep: true,
|
|
},
|
|
},
|
|
mounted() {
|
|
this.sortableOptions = getBoardSortableDefaultOptions({
|
|
disabled: this.disabled,
|
|
group: 'boards',
|
|
draggable: '.is-draggable',
|
|
handle: '.js-board-handle',
|
|
onEnd: e => {
|
|
sortableEnd();
|
|
|
|
if (e.newIndex !== undefined && e.oldIndex !== e.newIndex) {
|
|
const order = this.sortable.toArray();
|
|
const list = boardsStore.findList('id', parseInt(e.item.dataset.id, 10));
|
|
|
|
this.$nextTick(() => {
|
|
boardsStore.moveList(list, order);
|
|
});
|
|
}
|
|
},
|
|
});
|
|
|
|
this.sortable = Sortable.create(this.$el.parentNode, this.sortableOptions);
|
|
},
|
|
created() {
|
|
if (this.list.isExpandable && AccessorUtilities.isLocalStorageAccessSafe()) {
|
|
const isCollapsed =
|
|
localStorage.getItem(`boards.${this.boardId}.${this.list.type}.expanded`) === 'false';
|
|
|
|
this.list.isExpanded = !isCollapsed;
|
|
}
|
|
},
|
|
methods: {
|
|
showNewIssueForm() {
|
|
this.$refs['board-list'].showIssueForm = !this.$refs['board-list'].showIssueForm;
|
|
},
|
|
toggleExpanded(e) {
|
|
if (this.list.isExpandable && !e.target.classList.contains('js-no-trigger-collapse')) {
|
|
this.list.isExpanded = !this.list.isExpanded;
|
|
|
|
if (AccessorUtilities.isLocalStorageAccessSafe()) {
|
|
localStorage.setItem(
|
|
`boards.${this.boardId}.${this.list.type}.expanded`,
|
|
this.list.isExpanded,
|
|
);
|
|
}
|
|
}
|
|
},
|
|
},
|
|
template: '#js-board-template',
|
|
});
|