mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-22 04:26:23 +08:00
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import {
|
|
type BlockComponent,
|
|
BlockSelection,
|
|
type Command,
|
|
} from '@blocksuite/block-std';
|
|
|
|
export const selectBlocksBetween: Command<{
|
|
focusBlock?: BlockComponent;
|
|
anchorBlock?: BlockComponent;
|
|
tail: boolean;
|
|
}> = (ctx, next) => {
|
|
const { focusBlock, anchorBlock, tail } = ctx;
|
|
if (!focusBlock || !anchorBlock) {
|
|
return;
|
|
}
|
|
const selection = ctx.std.selection;
|
|
|
|
// In same block
|
|
if (anchorBlock.blockId === focusBlock.blockId) {
|
|
const blockId = focusBlock.blockId;
|
|
selection.setGroup('note', [selection.create(BlockSelection, { blockId })]);
|
|
return next();
|
|
}
|
|
|
|
// In different blocks
|
|
const selections = [...selection.value];
|
|
if (selections.every(sel => sel.blockId !== focusBlock.blockId)) {
|
|
if (tail) {
|
|
selections.push(
|
|
selection.create(BlockSelection, { blockId: focusBlock.blockId })
|
|
);
|
|
} else {
|
|
selections.unshift(
|
|
selection.create(BlockSelection, { blockId: focusBlock.blockId })
|
|
);
|
|
}
|
|
}
|
|
|
|
let start = false;
|
|
const sel = selections.filter(sel => {
|
|
if (
|
|
sel.blockId === anchorBlock.blockId ||
|
|
sel.blockId === focusBlock.blockId
|
|
) {
|
|
start = !start;
|
|
return true;
|
|
}
|
|
return start;
|
|
});
|
|
|
|
selection.setGroup('note', sel);
|
|
return next();
|
|
};
|