63 lines
2.0 KiB
JavaScript
63 lines
2.0 KiB
JavaScript
|
|
/*
|
|
* @copyright Copyright (c) 2016 Julius Härtl <jus@bitgrid.net>
|
|
*
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
app.controller('ListController', function ($scope, $location, BoardService) {
|
|
$scope.boards = null;
|
|
$scope.newBoard = {};
|
|
$scope.status = {};
|
|
$scope.colors = ['31CC7C', '317CCC', 'FF7A66', 'F1DB50', '7C31CC', 'CC317C', '3A3B3D', 'CACBCD'];
|
|
|
|
$scope.boardservice = BoardService;
|
|
|
|
BoardService.fetchAll(); // TODO: show error when loading fails
|
|
|
|
$scope.selectColor = function(color) {
|
|
$scope.newBoard.color = color;
|
|
};
|
|
|
|
$scope.boardCreate = function () {
|
|
BoardService.create($scope.newBoard)
|
|
.then(function (response) {
|
|
$scope.newBoard = {};
|
|
$scope.status.addBoard=false;
|
|
}, function(error) {
|
|
$scope.status.createBoard = 'Unable to insert board: ' + error.message;
|
|
});
|
|
};
|
|
$scope.boardUpdate = function(board) {
|
|
BoardService.update(board);
|
|
board.status.edit = false;
|
|
};
|
|
$scope.boardDelete = function(board) {
|
|
// TODO: Ask for confirmation
|
|
//if (confirm('Are you sure you want to delete this?')) {
|
|
BoardService.delete(board.id);
|
|
//}
|
|
};
|
|
|
|
|
|
|
|
|
|
});
|
|
|