Skip to content
Snippets Groups Projects
Commit fd588f70 authored by Giannis Kopanas's avatar Giannis Kopanas
Browse files

Merge branch 'wax-plugins' of https://gitlab.coko.foundation/wax/wax-prosemirror into wax-plugins

parents 45f7b743 6ef9efdc
No related branches found
No related tags found
1 merge request!45Develop
Showing
with 67 additions and 55 deletions
......@@ -2,8 +2,6 @@ import React from "react";
import ReactDOM from "react-dom";
import Editoria from "./Editoria";
import * as serviceWorker from "./serviceWorker";
const { whyDidYouUpdate } = require("why-did-you-update");
whyDidYouUpdate(React);
ReactDOM.render(<Editoria />, document.getElementById("root"));
// If you want your app to work offline and load faster, you can change
......
......@@ -10,12 +10,14 @@ class CodeService extends Service {
}
register() {
this.container
.bind("schema")
.toConstantValue({ code: codeMark })
.whenTargetNamed("mark");
this.container.bind("Code").to(Code);
const createMark = this.container.get("CreateMark");
createMark(
{
code: codeMark
},
{ toWaxSchema: true }
);
}
}
......
......@@ -11,13 +11,13 @@ class EmphasisService extends Service {
register() {
this.container.bind("Emphasis").to(Emphasis);
this.container
.bind("schema")
.toConstantValue({
const createMark = this.container.get("CreateMark");
createMark(
{
em: emphasisMark
})
.whenTargetNamed("mark");
},
{ toWaxSchema: true }
);
}
}
......
......@@ -5,13 +5,13 @@ import SmallCaps from "./SmallCaps";
class SmallCapsService extends Service {
register() {
this.container.bind("SmallCaps").to(SmallCaps);
this.container
.bind("schema")
.toConstantValue({
const createMark = this.container.get("CreateMark");
createMark(
{
smallcaps: smallcapsMark
})
.whenTargetNamed("mark");
},
{ toWaxSchema: true }
);
}
}
......
......@@ -4,13 +4,13 @@ import StrikeThrough from "./StrikeThrough";
class StrikeThroughService extends Service {
register() {
this.container.bind("StrikeThrough").to(StrikeThrough);
this.container
.bind("schema")
.toConstantValue({
const createMark = this.container.get("CreateMark");
createMark(
{
strikethrough: strikethroughMark
})
.whenTargetNamed("mark");
},
{ toWaxSchema: true }
);
}
}
......
......@@ -6,12 +6,14 @@ class SubscriptService extends Service {
boot() {}
register() {
this.container
.bind("schema")
.toConstantValue({ subscript: subscriptMark })
.whenTargetNamed("mark");
this.container.bind("Subscript").to(Subscript);
const createMark = this.container.get("CreateMark");
createMark(
{
subscript: subscriptMark
},
{ toWaxSchema: true }
);
}
}
......
......@@ -6,12 +6,14 @@ class SuperscriptService extends Service {
boot() {}
register() {
this.container
.bind("schema")
.toConstantValue({ superscript: superscriptMark })
.whenTargetNamed("mark");
this.container.bind("Superscript").to(Superscript);
const createMark = this.container.get("CreateMark");
createMark(
{
superscript: superscriptMark
},
{ toWaxSchema: true }
);
}
}
......
......@@ -11,13 +11,13 @@ class UnderlineService extends Service {
register() {
this.container.bind("Underline").to(Underline);
this.container
.bind("schema")
.toConstantValue({
const createMark = this.container.get("CreateMark");
createMark(
{
underline: underlineMark
})
.whenTargetNamed("mark");
},
{ toWaxSchema: true }
);
}
}
......
......@@ -7,11 +7,13 @@ class BulletListService extends Service {
register() {
this.container.bind("BulletList").to(BulletList);
this.container
.bind("schema")
.toConstantValue({ bulletlist: bulletListNode })
.whenTargetNamed("node");
const createNode = this.container.get("CreateNode");
createNode(
{
bulletlist: bulletListNode
},
{ toWaxSchema: true }
);
}
}
......
......@@ -5,10 +5,13 @@ class ListItemService extends Service {
boot() {}
register() {
this.container
.bind("schema")
.toConstantValue({ list_item: listItemNode })
.whenTargetNamed("node");
const createNode = this.container.get("CreateNode");
createNode(
{
list_item: listItemNode
},
{ toWaxSchema: true }
);
}
}
......
......@@ -7,10 +7,13 @@ class OrderedListService extends Service {
register() {
this.container.bind("OrderedList").to(OrderedList);
this.container
.bind("schema")
.toConstantValue({ orderedlist: orderedListNode })
.whenTargetNamed("node");
const createNode = this.container.get("CreateNode");
createNode(
{
orderedlist: orderedListNode
},
{ toWaxSchema: true }
);
}
}
......
......@@ -8,11 +8,11 @@ class InsertTableService extends Service {
register() {
this.container.bind("Table").to(Table);
const createNode = this.container.get("CreateNode");
const { table, table_row, table_cell, table_header } = tableNodes({
tableGroup: "block",
cellContent: "block+"
});
const createNode = this.container.get("CreateNode");
createNode({
table
......
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