mirror of
https://github.com/heyman/heynote.git
synced 2024-11-25 01:13:17 +01:00
Add gotoNextBlock and gotoPreviousBlock commmands (keymapped to Mod-Up/Down)
This commit is contained in:
parent
7dc39ca6e4
commit
818d7f0260
@ -72,6 +72,10 @@ export function getActiveNoteBlock(state) {
|
|||||||
return state.facet(blockState).find(block => block.content.from <= range.from && block.content.to >= range.from)
|
return state.facet(blockState).find(block => block.content.from <= range.from && block.content.to >= range.from)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getNoteBlockFromPos(state, pos) {
|
||||||
|
return state.facet(blockState).find(block => block.content.from <= pos && block.content.to >= pos)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
class NoteBlockStart extends WidgetType {
|
class NoteBlockStart extends WidgetType {
|
||||||
constructor(isFirst) {
|
constructor(isFirst) {
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
import { EditorView } from "@codemirror/view"
|
import { EditorView } from "@codemirror/view"
|
||||||
|
import { EditorSelection } from "@codemirror/state"
|
||||||
import {
|
import {
|
||||||
selectAll as defaultSelectAll,
|
selectAll as defaultSelectAll,
|
||||||
moveLineUp as defaultMoveLineUp,
|
moveLineUp as defaultMoveLineUp,
|
||||||
} from "@codemirror/commands"
|
} from "@codemirror/commands"
|
||||||
import { heynoteEvent, LANGUAGE_CHANGE } from "../annotation.js";
|
import { heynoteEvent, LANGUAGE_CHANGE } from "../annotation.js";
|
||||||
import { HIGHLIGHTJS_TO_TOKEN } from "../languages"
|
import { HIGHLIGHTJS_TO_TOKEN } from "../languages"
|
||||||
import { blockState, getActiveNoteBlock } from "./block"
|
import { blockState, getActiveNoteBlock, getNoteBlockFromPos } from "./block"
|
||||||
import { levenshtein_distance } from "../language-detection/levenshtein"
|
import { levenshtein_distance } from "../language-detection/levenshtein"
|
||||||
|
|
||||||
|
|
||||||
@ -72,3 +73,41 @@ export function changeLanguageTo(state, dispatch, block, language, auto) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function gotoPreviousBlock({state, dispatch}) {
|
||||||
|
const blocks = state.facet(blockState)
|
||||||
|
const newSelection = EditorSelection.create(state.selection.ranges.map(sel => {
|
||||||
|
const block = getNoteBlockFromPos(state, sel.head)
|
||||||
|
if (sel.head === block.content.from) {
|
||||||
|
const index = blocks.indexOf(block)
|
||||||
|
const previousBlockIndex = index > 0 ? index - 1 : 0
|
||||||
|
return EditorSelection.cursor(blocks[previousBlockIndex].content.from)
|
||||||
|
} else {
|
||||||
|
return EditorSelection.cursor(block.content.from)
|
||||||
|
}
|
||||||
|
}), state.selection.mainIndex)
|
||||||
|
dispatch(state.update({
|
||||||
|
selection: newSelection,
|
||||||
|
scrollIntoView: true,
|
||||||
|
}))
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
export function gotoNextBlock({state, dispatch}) {
|
||||||
|
const blocks = state.facet(blockState)
|
||||||
|
const newSelection = EditorSelection.create(state.selection.ranges.map(sel => {
|
||||||
|
const block = getNoteBlockFromPos(state, sel.head)
|
||||||
|
if (sel.head === block.content.to) {
|
||||||
|
const index = blocks.indexOf(block)
|
||||||
|
const previousBlockIndex = index < blocks.length - 1 ? index + 1 : index
|
||||||
|
return EditorSelection.cursor(blocks[previousBlockIndex].content.to)
|
||||||
|
} else {
|
||||||
|
return EditorSelection.cursor(block.content.to)
|
||||||
|
}
|
||||||
|
}), state.selection.mainIndex)
|
||||||
|
dispatch(state.update({
|
||||||
|
selection: newSelection,
|
||||||
|
scrollIntoView: true,
|
||||||
|
}))
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { keymap } from "@codemirror/view"
|
import { keymap } from "@codemirror/view"
|
||||||
import { indentWithTab, insertTab, indentLess, indentMore } from "@codemirror/commands"
|
import { indentWithTab, insertTab, indentLess, indentMore } from "@codemirror/commands"
|
||||||
import { insertNewNote, moveLineUp, selectAll } from "./block/commands.js";
|
import { insertNewNote, moveLineUp, selectAll, gotoPreviousBlock, gotoNextBlock } from "./block/commands.js";
|
||||||
|
|
||||||
export const heynoteKeymap = keymap.of([
|
export const heynoteKeymap = keymap.of([
|
||||||
{
|
{
|
||||||
@ -29,4 +29,14 @@ export const heynoteKeymap = keymap.of([
|
|||||||
preventDefault: true,
|
preventDefault: true,
|
||||||
run: moveLineUp,
|
run: moveLineUp,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "Mod-ArrowUp",
|
||||||
|
preventDefault: true,
|
||||||
|
run: gotoPreviousBlock,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "Mod-ArrowDown",
|
||||||
|
preventDefault: true,
|
||||||
|
run: gotoNextBlock,
|
||||||
|
},
|
||||||
])
|
])
|
||||||
|
Loading…
Reference in New Issue
Block a user