gitlab-org--gitlab-foss/app/assets/javascripts/boards/boards_bundle.js.es6

63 lines
1.5 KiB
JavaScript
Raw Normal View History

2016-07-28 11:33:04 +00:00
//= require vue
//= require vue-resource
//= require Sortable
2016-08-01 13:18:30 +00:00
//= require_tree ./models
2016-07-28 11:33:04 +00:00
//= require_tree ./stores
//= require_tree ./services
//= require_tree ./mixins
//= require ./components/board
//= require ./components/new_list_dropdown
2016-07-28 11:33:04 +00:00
$(() => {
const $boardApp = document.getElementById('board-app'),
Store = gl.issueBoards.BoardsStore;
window.gl = window.gl || {};
2016-07-28 11:33:04 +00:00
if (gl.IssueBoardsApp) {
gl.IssueBoardsApp.$destroy(true);
}
gl.IssueBoardsApp = new Vue({
el: $boardApp,
components: {
'board': gl.issueBoards.Board
},
2016-07-28 11:33:04 +00:00
data: {
state: Store.state,
loading: true,
endpoint: $boardApp.dataset.endpoint,
disabled: $boardApp.dataset.disabled === 'true',
issueLinkBase: $boardApp.dataset.issueLinkBase
2016-07-28 11:33:04 +00:00
},
init () {
gl.issueBoards.BoardsStore.create();
},
created () {
2016-08-08 15:15:05 +00:00
this.loading = true;
gl.boardService = new BoardService(this.endpoint);
},
ready () {
Store.disabled = this.disabled;
gl.boardService.all()
2016-07-28 11:33:04 +00:00
.then((resp) => {
2016-08-02 08:58:09 +00:00
const boards = resp.json();
for (let i = 0, boardsLength = boards.length; i < boardsLength; i++) {
const board = boards[i],
list = Store.addList(board);
if (list.type === 'done') {
list.position = Infinity;
2016-08-05 16:01:34 +00:00
} else if (list.type === 'backlog') {
list.position = -1;
}
}
Store.addBlankState();
2016-08-08 15:15:05 +00:00
this.loading = false;
2016-07-28 11:33:04 +00:00
});
}
});
});