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

feat(images): image toolgroup service

parent 845cc420
No related branches found
No related tags found
1 merge request!45Develop
...@@ -10,7 +10,7 @@ export default { ...@@ -10,7 +10,7 @@ export default {
MenuService: [ MenuService: [
{ {
templateArea: "topBar", templateArea: "topBar",
toolGroups: ["Base", "Annotations", "Lists", "Tables"] toolGroups: ["Base", "Annotations", "Lists", "Images", "Tables"]
}, },
{ {
templateArea: "leftSideBar", templateArea: "leftSideBar",
......
...@@ -16,7 +16,8 @@ import { ...@@ -16,7 +16,8 @@ import {
TablesService, TablesService,
TableToolGroupService, TableToolGroupService,
BaseService, BaseService,
BaseToolGroupService BaseToolGroupService,
ImageToolGroupService
} from "wax-prosemirror-services"; } from "wax-prosemirror-services";
export default { export default {
...@@ -37,6 +38,7 @@ export default { ...@@ -37,6 +38,7 @@ export default {
new TableToolGroupService(), new TableToolGroupService(),
new TablesService(), new TablesService(),
new BaseService(), new BaseService(),
new BaseToolGroupService() new BaseToolGroupService(),
new ImageToolGroupService()
] ]
}; };
...@@ -40,6 +40,10 @@ export { ...@@ -40,6 +40,10 @@ export {
export { export {
default as ListToolGroupService default as ListToolGroupService
} from "./src/WaxToolGroups/ListToolGroupService/ListToolGroupService"; } from "./src/WaxToolGroups/ListToolGroupService/ListToolGroupService";
export {
default as ImageToolGroupService
} from "./src/WaxToolGroups/ImageToolGroupService/ImageToolGroupService";
export { export {
default as TableToolGroupService default as TableToolGroupService
} from "./src/WaxToolGroups/TableToolGroupService/TableToolGroupService"; } from "./src/WaxToolGroups/TableToolGroupService/TableToolGroupService";
...@@ -14,8 +14,7 @@ class Annotations extends ToolGroup { ...@@ -14,8 +14,7 @@ class Annotations extends ToolGroup {
@inject("Subscript") subscript, @inject("Subscript") subscript,
@inject("Superscript") superscript, @inject("Superscript") superscript,
@inject("Underline") underline, @inject("Underline") underline,
@inject("Blockquote") blockquote, @inject("Blockquote") blockquote
@inject("Image") image
) { ) {
super(); super();
this.tools = [ this.tools = [
...@@ -28,8 +27,7 @@ class Annotations extends ToolGroup { ...@@ -28,8 +27,7 @@ class Annotations extends ToolGroup {
subscript, subscript,
superscript, superscript,
underline, underline,
blockquote, blockquote
image
]; ];
} }
......
import Image from "./Image"; import Images from "./Images";
import Service from "wax-prosemirror-core/src/services/Service"; import Service from "wax-prosemirror-core/src/services/Service";
class ImageToolGroupService extends Service { class ImageToolGroupService extends Service {
name = "ImageToolGroupService"; name = "ImageToolGroupService";
register() { register() {
this.container.bind("Image").to(Image); this.container.bind("Images").to(Images);
} }
} }
......
import { injectable, inject } from "inversify";
import ToolGroup from "../../lib/ToolGroup";
@injectable()
class Images extends ToolGroup {
tools = [];
constructor(@inject("Image") image) {
super();
this.tools = [image];
}
renderTools(view) {
const tools = [];
this.tools.forEach(tool => {
tools.push(tool.renderTool(view));
});
return tools;
}
}
export default Images;
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