|
|
|
@ -52,6 +52,7 @@
|
|
|
|
|
widthBoard: '250px',
|
|
|
|
|
responsive: '700',
|
|
|
|
|
colors: ["yellow", "green", "blue", "red", "orange"],
|
|
|
|
|
responsivePercentage: false,
|
|
|
|
|
boards: [],
|
|
|
|
|
dragBoards: true,
|
|
|
|
|
addItemButton: false,
|
|
|
|
@ -67,7 +68,7 @@
|
|
|
|
|
click: function (el) {},
|
|
|
|
|
boardTitleclick: function (el, boardId) {},
|
|
|
|
|
buttonClick: function (el, boardId) {},
|
|
|
|
|
colorClick: function (el, boardId) {},
|
|
|
|
|
colorClick: function (el, type) {},
|
|
|
|
|
addItemClick: function (el, boardId) {},
|
|
|
|
|
onChange: function () {}
|
|
|
|
|
};
|
|
|
|
@ -85,12 +86,12 @@
|
|
|
|
|
//Init Drag Board
|
|
|
|
|
self.drakeBoard = self.dragula([self.container], {
|
|
|
|
|
moves: function (el, source, handle, sibling) {
|
|
|
|
|
if (self.options.readOnly) { return false; }
|
|
|
|
|
if (self.options.readOnly) { return false; }
|
|
|
|
|
if (!self.options.dragBoards) return false;
|
|
|
|
|
return (handle.classList.contains('kanban-board-header') || handle.classList.contains('kanban-title-board'));
|
|
|
|
|
},
|
|
|
|
|
accepts: function (el, target, source, sibling) {
|
|
|
|
|
if (self.options.readOnly) { return false; }
|
|
|
|
|
if (self.options.readOnly) { return false; }
|
|
|
|
|
return target.classList.contains('kanban-container');
|
|
|
|
|
},
|
|
|
|
|
revertOnSpill: true,
|
|
|
|
@ -145,14 +146,17 @@
|
|
|
|
|
//Init Drag Item
|
|
|
|
|
self.drake = self.dragula(self.boardContainer, {
|
|
|
|
|
moves: function (el, source, handle, sibling) {
|
|
|
|
|
if (self.options.readOnly) { return false; }
|
|
|
|
|
if (self.options.readOnly) { return false; }
|
|
|
|
|
return handle.classList.contains('kanban-item');
|
|
|
|
|
},
|
|
|
|
|
accepts: function (el, target, source, sibling) {
|
|
|
|
|
if (self.options.readOnly) { return false; }
|
|
|
|
|
if (self.options.readOnly) { return false; }
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
revertOnSpill: true
|
|
|
|
|
})
|
|
|
|
|
.on('cancel', function(el, container, source) {
|
|
|
|
|
self.enableAllBoards();
|
|
|
|
|
})
|
|
|
|
|
.on('drag', function (el, source) {
|
|
|
|
|
// we need to calculate the position before starting to drag
|
|
|
|
@ -184,7 +188,9 @@
|
|
|
|
|
var boardId = source.parentNode.dataset.id;
|
|
|
|
|
self.options.dragcancelEl(el, boardId);
|
|
|
|
|
})
|
|
|
|
|
.on('drop', function (el, target, source, sibling) {
|
|
|
|
|
.on('drop', function(el, target, source, sibling) {
|
|
|
|
|
self.enableAllBoards();
|
|
|
|
|
|
|
|
|
|
console.log("In drop");
|
|
|
|
|
|
|
|
|
|
// TODO: update board object board order
|
|
|
|
@ -240,6 +246,15 @@
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
this.enableAllBoards = function() {
|
|
|
|
|
var allB = document.querySelectorAll('.kanban-board');
|
|
|
|
|
if (allB.length > 0 && allB !== undefined) {
|
|
|
|
|
for (var i = 0; i < allB.length; i++) {
|
|
|
|
|
allB[i].classList.remove('disabled-board');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
this.addElement = function (boardID, element) {
|
|
|
|
|
|
|
|
|
|
// add Element to JSON
|
|
|
|
@ -260,6 +275,7 @@
|
|
|
|
|
nodeItem.dragendfn = element.dragend;
|
|
|
|
|
nodeItem.dropfn = element.drop;
|
|
|
|
|
__onclickHandler(nodeItem);
|
|
|
|
|
__onColorClickHandler(nodeItem, "item");
|
|
|
|
|
board.appendChild(nodeItem);
|
|
|
|
|
// send event that board has changed
|
|
|
|
|
self.onChange();
|
|
|
|
@ -272,8 +288,19 @@
|
|
|
|
|
return self;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
this.addBoards = function (boards) {
|
|
|
|
|
|
|
|
|
|
this.addBoards = function(boards) {
|
|
|
|
|
if (self.options.responsivePercentage) {
|
|
|
|
|
self.container.style.width = '100%';
|
|
|
|
|
self.options.gutter = '1%';
|
|
|
|
|
if (window.innerWidth > self.options.responsive) {
|
|
|
|
|
var boardWidth = (100 - boards.length * 2) / boards.length;
|
|
|
|
|
} else {
|
|
|
|
|
var boardWidth = 100 - (boards.length * 2);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
var boardWidth = self.options.widthBoard;
|
|
|
|
|
}
|
|
|
|
|
var addButton = self.options.addItemButton;
|
|
|
|
|
var buttonContent = self.options.buttonContent;
|
|
|
|
|
|
|
|
|
@ -290,7 +317,11 @@
|
|
|
|
|
boardNode.dataset.id = board.id;
|
|
|
|
|
boardNode.classList.add('kanban-board');
|
|
|
|
|
//set style
|
|
|
|
|
if (self.options.responsivePercentage) {
|
|
|
|
|
boardNode.style.width = boardWidth + '%';
|
|
|
|
|
} else {
|
|
|
|
|
boardNode.style.width = boardWidth;
|
|
|
|
|
}
|
|
|
|
|
boardNode.style.marginLeft = self.options.gutter;
|
|
|
|
|
boardNode.style.marginRight = self.options.gutter;
|
|
|
|
|
// header board
|
|
|
|
@ -303,6 +334,10 @@
|
|
|
|
|
headerBoard.classList.add(value);
|
|
|
|
|
});
|
|
|
|
|
if (board.color !== '' && board.color !== undefined) {
|
|
|
|
|
headerBoard._jscLinkedInstance = undefined;
|
|
|
|
|
jscolorL = new jscolor(headerBoard,{valueElement:undefined});
|
|
|
|
|
jscolorL.fromString(board.color);
|
|
|
|
|
headerBoard._jscLinkedInstance = undefined;
|
|
|
|
|
headerBoard.classList.add("kanban-header-" + board.color);
|
|
|
|
|
}
|
|
|
|
|
titleBoard = document.createElement('div');
|
|
|
|
@ -311,7 +346,7 @@
|
|
|
|
|
titleBoard.clickfn = board.boardTitleClick;
|
|
|
|
|
__onboardTitleClickHandler(titleBoard);
|
|
|
|
|
headerBoard.appendChild(titleBoard);
|
|
|
|
|
__onColorClickHandler(headerBoard);
|
|
|
|
|
__onColorClickHandler(headerBoard, "board");
|
|
|
|
|
|
|
|
|
|
// if add button is true, add button to the board
|
|
|
|
|
if (addButton) {
|
|
|
|
@ -332,14 +367,24 @@
|
|
|
|
|
var nodeItem = document.createElement('div');
|
|
|
|
|
nodeItem.classList.add('kanban-item');
|
|
|
|
|
nodeItem.dataset.eid = itemKanban.id;
|
|
|
|
|
nodeItem.innerHTML = itemKanban.title;
|
|
|
|
|
var nodeItemText = document.createElement('div');
|
|
|
|
|
nodeItemText.classList.add('kanban-item-text');
|
|
|
|
|
nodeItemText.dataset.eid = itemKanban.id;
|
|
|
|
|
nodeItemText.innerHTML = itemKanban.title;
|
|
|
|
|
nodeItem.appendChild(nodeItemText);
|
|
|
|
|
//add function
|
|
|
|
|
nodeItem.clickfn = itemKanban.click;
|
|
|
|
|
nodeItem.dragfn = itemKanban.drag;
|
|
|
|
|
nodeItem.dragendfn = itemKanban.dragend;
|
|
|
|
|
nodeItem.dropfn = itemKanban.drop;
|
|
|
|
|
nodeItemText.clickfn = itemKanban.click;
|
|
|
|
|
nodeItemText.dragfn = itemKanban.drag;
|
|
|
|
|
nodeItemText.dragendfn = itemKanban.dragend;
|
|
|
|
|
nodeItemText.dropfn = itemKanban.drop;
|
|
|
|
|
//add click handler of item
|
|
|
|
|
__onclickHandler(nodeItem);
|
|
|
|
|
__onclickHandler(nodeItemText);
|
|
|
|
|
if (itemKanban.color !== '' && itemKanban.color !== undefined) {
|
|
|
|
|
jscolorL = new jscolor(nodeItem,{valueElement:undefined});
|
|
|
|
|
jscolorL.fromString(itemKanban.color);
|
|
|
|
|
}
|
|
|
|
|
__onColorClickHandler(nodeItem, "item");
|
|
|
|
|
|
|
|
|
|
contentBoard.appendChild(nodeItem);
|
|
|
|
|
}
|
|
|
|
|
//footer board
|
|
|
|
@ -487,12 +532,10 @@
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function __onColorClickHandler(nodeItem, clickfn) {
|
|
|
|
|
function __onColorClickHandler(nodeItem, type) {
|
|
|
|
|
nodeItem.addEventListener('click', function (e) {
|
|
|
|
|
e.preventDefault;
|
|
|
|
|
self.options.colorClick(this);
|
|
|
|
|
if (typeof (this.clickfn) === 'function')
|
|
|
|
|
this.clickfn(this);
|
|
|
|
|
self.options.colorClick(this, type);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|