aboutsummaryrefslogtreecommitdiffhomepage
path: root/api/services/zmk/layout.js
diff options
context:
space:
mode:
Diffstat (limited to 'api/services/zmk/layout.js')
-rw-r--r--api/services/zmk/layout.js13
1 files changed, 10 insertions, 3 deletions
diff --git a/api/services/zmk/layout.js b/api/services/zmk/layout.js
index 383e710..c914177 100644
--- a/api/services/zmk/layout.js
+++ b/api/services/zmk/layout.js
@@ -16,9 +16,16 @@ function renderTable (layout, layer, opts={}) {
} = opts
const minWidth = useQuotes ? 9 : 7
const table = layer.reduce((map, code, i) => {
- const { row = 0, col } = layout[i]
- map[row] = map[row] || []
- map[row][col || map[row].length] = code
+ // TODO: this would be better as a loop over `layout`, checking for a
+ // matching element in the `layer` array. Or, alternatively, an earlier
+ // validation that asserts each layer is equal in length to the number of
+ // keys in the layout.
+ if (layout[i]) {
+ const { row = 0, col } = layout[i]
+ map[row] = map[row] || []
+ map[row][col || map[row].length] = code
+ }
+
return map
}, [])