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

add attrs to create tools

parent e3450cf5
No related branches found
No related tags found
1 merge request!107Tracked transaction
Showing
with 32 additions and 36 deletions
......@@ -9,7 +9,9 @@ export default class Author extends Tools {
get run() {
return (state, dispatch) => {
Commands.setBlockType(state.config.schema.nodes.author)(state, dispatch);
Commands.setBlockType(state.config.schema.nodes.author, {
class: "author"
})(state, dispatch);
};
}
......
......@@ -9,10 +9,9 @@ export default class EpigraphPoetry extends Tools {
get run() {
return (state, dispatch) => {
Commands.setBlockType(state.config.schema.nodes.epigraphPoetry)(
state,
dispatch
);
Commands.setBlockType(state.config.schema.nodes.epigraphPoetry, {
class: "epigraph-poetry"
})(state, dispatch);
};
}
......
......@@ -9,10 +9,9 @@ export default class EpigraphProse extends Tools {
get run() {
return (state, dispatch) => {
Commands.setBlockType(state.config.schema.nodes.epigraphProse)(
state,
dispatch
);
Commands.setBlockType(state.config.schema.nodes.epigraphProse, {
class: "epigraph-prose"
})(state, dispatch);
};
}
......
......@@ -9,10 +9,9 @@ export default class SubTitle extends Tools {
get run() {
return (state, dispatch) => {
Commands.setBlockType(state.config.schema.nodes.subtitle)(
state,
dispatch
);
Commands.setBlockType(state.config.schema.nodes.subtitle, {
class: "cst"
})(state, dispatch);
};
}
......
......@@ -9,7 +9,9 @@ export default class Title extends Tools {
get run() {
return (state, dispatch) => {
Commands.setBlockType(state.config.schema.nodes.title)(state, dispatch);
Commands.setBlockType(state.config.schema.nodes.title, {
class: "title"
})(state, dispatch);
};
}
......
......@@ -9,10 +9,9 @@ class ExtractPoetry extends Tools {
get run() {
return (state, dispatch) => {
Commands.setBlockType(state.config.schema.nodes.extractPoetry)(
state,
dispatch
);
Commands.setBlockType(state.config.schema.nodes.extractPoetry, {
class: "extract-poetry"
})(state, dispatch);
};
}
......
......@@ -9,10 +9,9 @@ class ExtractProse extends Tools {
get run() {
return (state, dispatch) => {
Commands.setBlockType(state.config.schema.nodes.extractProse)(
state,
dispatch
);
Commands.setBlockType(state.config.schema.nodes.extractProse, {
class: "extract-prose"
})(state, dispatch);
};
}
......
......@@ -9,10 +9,9 @@ class ParagraphContinued extends Tools {
get run() {
return (state, dispatch) => {
Commands.setBlockType(state.config.schema.nodes.paragraphCont)(
state,
dispatch
);
Commands.setBlockType(state.config.schema.nodes.paragraphCont, {
class: "paragraph-cont"
})(state, dispatch);
};
}
......
......@@ -9,10 +9,9 @@ export default class Paragraph extends Tools {
get run() {
return (state, dispatch) => {
Commands.setBlockType(state.config.schema.nodes.paragraph)(
state,
dispatch
);
Commands.setBlockType(state.config.schema.nodes.paragraph, {
class: "paragraph"
})(state, dispatch);
};
}
......
......@@ -9,10 +9,9 @@ class SourceNote extends Tools {
get run() {
return (state, dispatch) => {
Commands.setBlockType(state.config.schema.nodes.sourceNote)(
state,
dispatch
);
Commands.setBlockType(state.config.schema.nodes.sourceNote, {
class: "source-note"
})(state, dispatch);
};
}
......
......@@ -16,8 +16,8 @@ const setBlockType = (nodeType, attrs = {}) => {
}
if (applicable) {
tr.setBlockType(
pos,
pos + node.nodeSize,
from,
to,
nodeType,
Object.assign({}, node.attrs, attrs)
);
......
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