mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 00:11:33 +03:00
feat: Intra-line double link interaction
This commit is contained in:
parent
c67d961d66
commit
33d8b551d4
@ -79,16 +79,12 @@ export const DoubleLinkMenuContainer = (
|
||||
if (types && ['ArrowUp', 'ArrowDown'].includes(event.code)) {
|
||||
event.preventDefault();
|
||||
const isUpkey = event.code === 'ArrowUp';
|
||||
const indexBound = isUpkey ? types.length - 1 : 0;
|
||||
if (!currentItem && types.length) {
|
||||
setCurrentItem(types[indexBound]);
|
||||
setCurrentItem(types[isUpkey ? types.length - 1 : 0]);
|
||||
}
|
||||
if (currentItem) {
|
||||
const idx = types.indexOf(currentItem);
|
||||
const needChange = isUpkey
|
||||
? idx > indexBound
|
||||
: idx < indexBound;
|
||||
if (needChange) {
|
||||
if (isUpkey ? idx > 0 : idx < types.length - 1) {
|
||||
setNeedCheckIntoView(true);
|
||||
setCurrentItem(types[isUpkey ? idx - 1 : idx + 1]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user