Filter visible boards by user projects

This commit is contained in:
2019-12-05 13:57:00 +01:00
parent d374999d88
commit 1f3f4bdeed
2 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,11 @@
export function selectBoardByUserProjects(boardsByID, projectsByName) {
const userProjects = Object.keys(projectsByName);
return Object.keys(boardsByID).reduce((filteredBoardsByID, boardID) => {
const board = boardsByID[boardID];
const hasProject = board.projects.some(p => userProjects.indexOf(p) !== -1);
if (hasProject) {
filteredBoardsByID[boardID] = board;
}
return filteredBoardsByID;
}, {});
}