mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 23:17:33 +08:00
17 lines
341 B
JavaScript
17 lines
341 B
JavaScript
export function getColorsInRows(allColorInfos, itemPerRow) {
|
|
const ret = [];
|
|
let rowCount = -1;
|
|
|
|
for (let i = 0; i < allColorInfos.length; i++) {
|
|
if (i % itemPerRow === 0) {
|
|
ret[++rowCount] = [];
|
|
}
|
|
|
|
ret[rowCount].push({
|
|
color: allColorInfos[i]
|
|
});
|
|
}
|
|
|
|
return ret;
|
|
}
|