mirror of
https://github.com/heyman/heynote.git
synced 2024-11-25 01:13:17 +01:00
Make moveLineUp and changeLanguageTo command respect state.readOnly
This commit is contained in:
parent
fc63ad1651
commit
c8cc1cb5f1
@ -46,6 +46,8 @@ export const selectAll = ({ state, dispatch }) => {
|
||||
* Prevent moveLineUp from executing if any cursor is on the first line of the first note
|
||||
*/
|
||||
export function moveLineUp({ state, dispatch }) {
|
||||
if (state.readOnly)
|
||||
return false
|
||||
if (state.selection.ranges.some(range => {
|
||||
let startLine = state.doc.lineAt(range.from)
|
||||
return startLine.from <= state.facet(blockState)[0].content.from
|
||||
@ -57,6 +59,8 @@ export function moveLineUp({ state, dispatch }) {
|
||||
|
||||
|
||||
export function changeLanguageTo(state, dispatch, block, language, auto) {
|
||||
if (state.readOnly)
|
||||
return false
|
||||
const delimRegex = /^\n∞∞∞[a-z]{0,16}(-a)?\n/g
|
||||
if (state.doc.sliceString(block.delimiter.from, block.delimiter.to).match(delimRegex)) {
|
||||
//console.log("changing language to", language)
|
||||
|
Loading…
Reference in New Issue
Block a user