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

52 lines
1.1 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
2016-07-28 11:33:04 +00:00
//= require_tree ./components
$(function () {
if (!window.gl) {
window.gl = {};
}
gl.boardService = new BoardService($('#board-app').data('endpoint'));
2016-07-28 11:33:04 +00:00
if (gl.IssueBoardsApp) {
gl.IssueBoardsApp.$destroy(true);
}
gl.IssueBoardsApp = new Vue({
2016-07-28 11:33:04 +00:00
el: '#board-app',
props: {
disabled: Boolean
},
2016-07-28 11:33:04 +00:00
data: {
state: BoardsStore.state
},
init: function () {
BoardsStore.create();
},
2016-07-28 11:33:04 +00:00
ready: function () {
BoardsStore.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();
boards.forEach((board) => {
const list = BoardsStore.addList(board);
if (list.type === 'done') {
list.position = 9999999;
2016-08-05 16:01:34 +00:00
} else if (list.type === 'backlog') {
list.position = -1;
}
2016-07-28 11:33:04 +00:00
});
BoardsStore.addBlankState();
2016-07-28 11:33:04 +00:00
});
}
});
});