Skip to content
Snippets Groups Projects
Commit 83d54d06 authored by chris's avatar chris
Browse files

fix tool disabled

parent bd3a06d1
No related branches found
No related tags found
1 merge request!374Add feedback
This commit is part of merge request !374. Comments created here will be created in the context of that merge request.
...@@ -15,7 +15,7 @@ const Button = ({ view = {}, item }) => { ...@@ -15,7 +15,7 @@ const Button = ({ view = {}, item }) => {
const handleMouseDown = (e, editorState, editorDispatch) => { const handleMouseDown = (e, editorState, editorDispatch) => {
e.preventDefault(); e.preventDefault();
options.fullScreen = !options.fullScreen; Object.assign(options, { fullScreen: !options.fullScreen });
activeView.dispatch( activeView.dispatch(
activeView.state.tr.setSelection( activeView.state.tr.setSelection(
TextSelection.between( TextSelection.between(
......
...@@ -16,7 +16,7 @@ class CodeBlockTool extends Tools { ...@@ -16,7 +16,7 @@ class CodeBlockTool extends Tools {
select = (state, activeViewId, activeView) => { select = (state, activeViewId, activeView) => {
const { disallowedTools } = activeView.props; const { disallowedTools } = activeView.props;
if (disallowedTools.includes('codeBlock')) return false; if (disallowedTools.includes('CodeBlock')) return false;
return true; return true;
}; };
......
/* eslint-disable react/destructuring-assignment */
/* eslint react/prop-types: 0 */ /* eslint react/prop-types: 0 */
import React, { useEffect, useRef, useContext, useMemo } from 'react'; import React, { useEffect, useRef, useContext, useMemo } from 'react';
import styled from 'styled-components'; import styled from 'styled-components';
...@@ -45,7 +44,7 @@ export default ({ node, view }) => { ...@@ -45,7 +44,7 @@ export default ({ node, view }) => {
}), }),
// This is the magic part // This is the magic part
dispatchTransaction, dispatchTransaction,
disallowedTools: ['Tables', 'Images'], disallowedTools: ['Tables', 'Images', 'Lists', 'CodeBlock'],
handleDOMEvents: { handleDOMEvents: {
blur: (editorView, event) => { blur: (editorView, event) => {
if (context.view[noteId]) { if (context.view[noteId]) {
...@@ -62,9 +61,6 @@ export default ({ node, view }) => { ...@@ -62,9 +61,6 @@ export default ({ node, view }) => {
mousedown: () => { mousedown: () => {
context.updateView({}, noteId); context.updateView({}, noteId);
clickInNote = true; clickInNote = true;
// Kludge to prevent issues due to the fact that the whole
// footnote is node-selected (and thus DOM-selected) when
// the parent editor is focused.
// if (noteView.hasFocus()) noteView.focus(); // if (noteView.hasFocus()) noteView.focus();
}, },
}, },
...@@ -147,7 +143,7 @@ export default ({ node, view }) => { ...@@ -147,7 +143,7 @@ export default ({ node, view }) => {
const outerTr = view.state.tr; const outerTr = view.state.tr;
const offsetMap = StepMap.offset(noteFound[0].pos + 1); const offsetMap = StepMap.offset(noteFound[0].pos + 1);
for (let i = 0; i < transactions.length; i++) { for (let i = 0; i < transactions.length; i++) {
let { steps } = transactions[i]; const { steps } = transactions[i];
for (let j = 0; j < steps.length; j++) for (let j = 0; j < steps.length; j++)
outerTr.step(steps[j].map(offsetMap)); outerTr.step(steps[j].map(offsetMap));
} }
...@@ -169,7 +165,6 @@ export default ({ node, view }) => { ...@@ -169,7 +165,6 @@ export default ({ node, view }) => {
return { return {
'Mod-z': () => undo(view.state, view.dispatch), 'Mod-z': () => undo(view.state, view.dispatch),
'Mod-y': () => redo(view.state, view.dispatch), 'Mod-y': () => redo(view.state, view.dispatch),
// 'Mod-u': () => Commands.markActive(noteView.state.config.schema.marks.underline)(noteView.state),
}; };
}; };
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment