-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
28
-
29
-
30
-
31
-
32
-
33
-
34
-
35
-
36
-
37
-
38
-
39
-
40
-
41
-
42
-
43
-
44
-
45
-
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
-
55
-
56
-
57
-
58
-
59
-
60
-
61
-
62
-
63
-
64
-
65
-
66
-
67
-
68
-
69
-
70
-
71
-
72
-
73
-
74
-
75
-
76
-
77
-
78
-
79
-
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
-
97
-
98
-
99
-
100
-
101
-
102
-
103
-
104
-
105
-
106
-
107
-
108
-
109
-
110
-
111
-
112
-
113
-
114
-
115
-
116
-
117
-
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
-
126
-
127
-
128
-
129
-
130
-
131
-
132
-
133
-
134
-
135
-
136
-
137
-
138
-
139
-
140
-
141
-
142
-
143
-
144
-
145
-
146
-
147
-
148
-
149
-
150
-
151
-
152
-
153
-
154
-
155
-
156
-
157
-
158
-
159
-
160
-
161
-
162
-
163
-
164
-
165
-
166
-
167
-
168
-
169
-
170
-
171
-
172
-
173
-
174
-
175
-
176
-
177
-
178
-
179
-
180
-
181
-
182
-
183
-
184
-
185
-
186
// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import { Slot } from "@radix-ui/themes";
import { type FC, type ReactNode, use, useCallback } from "react";
import { GridSizeContext } from "./GridSizeContext.ts";
import { RowContext } from "./RowContext.ts";
import { UpdateSelectionContext } from "./UpdateSelectionContext.ts";
import { SelectionContext } from "./SelectionContext.ts";
import { getCellsForRange } from "./helpers.ts";
import type { GridCell, GridSize } from "./types.ts";
function moveCellByKeyboard(
{ row, column }: GridCell,
size: GridSize,
event: KeyboardEvent,
): GridCell {
const prevColumn = column === 0 ? size.columns - 1 : column - 1;
const nextColumn = column === size.columns - 1 ? 0 : column + 1;
const isJumpKeyPressed = event.ctrlKey || event.metaKey;
switch (event.key) {
case "Tab":
return {
row,
column: event.shiftKey ? prevColumn : nextColumn,
};
case "ArrowLeft":
return {
row,
column: isJumpKeyPressed ? 0 : prevColumn,
};
case "ArrowRight":
return {
row,
column: isJumpKeyPressed ? size.columns - 1 : nextColumn,
};
case "ArrowDown":
return {
row: isJumpKeyPressed ? size.rows - 1 : row === size.rows - 1 ? 0 : row + 1,
column,
};
case "ArrowUp":
return {
row: isJumpKeyPressed ? 0 : row === 0 ? size.rows - 1 : row - 1,
column,
};
default:
return { row, column };
}
}
export interface CellProps {
className?: string;
children: ReactNode;
asChild?: boolean;
column: number;
}
export const Cell: FC<CellProps> = ({ asChild, column, ...props }) => {
const updater = use(UpdateSelectionContext);
const row = use(RowContext);
const size = use(GridSizeContext);
const selection = use(SelectionContext);
const Component = asChild ? Slot : "div";
const moveTo = useCallback(
(row: number, column: number) => {
updater(() => {
return {
cursor: { row, column },
expandingTo: null,
committed: [],
};
});
},
[updater],
);
return (
<Component
role="gridcell"
tabIndex={0}
aria-selected={selection.cells.some(
(cell) => cell.row === row && cell.column === column,
)}
data-selection-start={
selection.cursor &&
selection.cursor.row === row &&
selection.cursor.column === column
? ""
: undefined
}
data-gridrow={row}
data-gridcol={column}
style={{ userSelect: "none" }}
onClick={(event) => {
event.preventDefault();
if (event.shiftKey) {
updater((prev) => {
return {
...prev,
expandingTo: { row, column },
};
});
return;
}
if (event.ctrlKey || event.metaKey) {
updater((prev) => {
if (!prev.cursor) {
return {
...prev,
cursor: { row, column },
expandingTo: null,
};
}
return {
cursor: { row, column },
expandingTo: null,
committed: [
...prev.committed,
...getCellsForRange(prev.cursor, prev.expandingTo || prev.cursor),
],
};
});
return;
}
moveTo(row, column);
}}
onKeyDown={(event) => {
switch (event.key) {
case "Tab":
case "ArrowDown":
case "ArrowUp":
case "ArrowRight":
case "ArrowLeft": {
event.preventDefault();
let next: GridCell;
if (event.key !== "Tab" && event.shiftKey) {
next = moveCellByKeyboard(
selection.expandingTo || { row, column },
size,
event.nativeEvent,
);
updater((prev) => {
return {
...prev,
expandingTo: next,
};
});
} else {
next = moveCellByKeyboard(
selection.cursor || { row, column },
size,
event.nativeEvent,
);
moveTo(next.row, next.column);
}
const nextEl = document.querySelector(
`[data-gridrow="${next.row}"][data-gridcol="${next.column}"]`,
);
if (nextEl instanceof HTMLElement) {
nextEl.focus();
}
return;
}
}
}}
{...props}
/>
);
};