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

enable tool

parent 384e0d9c
No related branches found
No related tags found
1 merge request!135Code block
......@@ -21,6 +21,8 @@ import {
NoteToolGroupService,
TrackChangeService,
CommentsService,
CodeBlockService,
CodeBlockToolGroupService,
} from 'wax-prosemirror-services';
import { WaxSelectionPlugin } from 'wax-prosemirror-plugins';
......@@ -45,6 +47,7 @@ export default {
'Lists',
'Images',
'Tables',
'CodeBlock',
],
},
{
......@@ -86,5 +89,7 @@ export default {
new AnnotationToolGroupService(),
new NoteToolGroupService(),
new ListToolGroupService(),
new CodeBlockService(),
new CodeBlockToolGroupService(),
],
};
const codeBlock = {
content: 'text*',
content: 'block+',
group: 'block',
code: true,
defining: true,
......
......@@ -6,7 +6,7 @@ export default class CodeBlockService extends Service {
boot() {}
register() {
this.container.bind('CodeBlock').to(CodeBlockTool);
this.container.bind('CodeBlockTool').to(CodeBlockTool);
const createNode = this.container.get('CreateNode');
createNode({
......
import Tools from '../lib/Tools';
import { injectable } from 'inversify';
import { icons } from 'wax-prosemirror-components';
import { Fragment } from 'prosemirror-model';
import { wrapIn } from 'prosemirror-commands';
@injectable()
class CodeBlockTool extends Tools {
title = 'Insert Code Block';
content = icons.footnote;
get run() {}
get run() {
return (state, dispatch) => {
wrapIn(state.config.schema.nodes.codeblock)(state, dispatch);
};
}
get enable() {}
}
......
......@@ -4,7 +4,7 @@ import ToolGroup from '../../lib/ToolGroup';
@injectable()
class CodeBlock extends ToolGroup {
tools = [];
constructor(@inject('CodeBlock') codeblock) {
constructor(@inject('CodeBlockTool') codeblock) {
super();
this.tools = [codeblock];
}
......
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