Skip to content
Snippets Groups Projects
Commit d5448d4c authored by Christos's avatar Christos
Browse files

Merge branch 'fix-link' into 'master'

Fix link

See merge request !159
parents 226eb1e9 452eebd6
No related branches found
No related tags found
1 merge request!159Fix link
...@@ -14,18 +14,22 @@ Wax Editor is build on top of the Prosemirror library. Check Prosemirror [websit ...@@ -14,18 +14,22 @@ Wax Editor is build on top of the Prosemirror library. Check Prosemirror [websit
Wax-prosemirror is under active development. The current roadmap is as follows: Wax-prosemirror is under active development. The current roadmap is as follows:
### September 2020 ### September 2020
Alpha version, including comments and track changes. See the rest of this file for a full list of current functionality. Alpha version, including comments and track changes. See the rest of this file for a full list of current functionality.
### November 2020 ### November 2020
Beta version, including some new features: Beta version, including some new features:
* Find and replace
* Spellchecker - Find and replace
* Special characters - Spellchecker
* Transform cases - Special characters
* Word counter - Transform cases
* Custom tags - Word counter
- Custom tags
### January 2021 ### January 2021
V1.0, freeze new feature development, focus on stability, testing and bug fixes V1.0, freeze new feature development, focus on stability, testing and bug fixes
## Get up and running ## Get up and running
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"version": "0.0.16", "version": "0.0.16",
"description": "Wax prosemirror UI components", "description": "Wax prosemirror UI components",
"license": "MIT", "license": "MIT",
"main": "dist/index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"build": "BABEL_ENV=production rollup -c" "build": "BABEL_ENV=production rollup -c"
......
...@@ -22,10 +22,7 @@ const Button = styled.button` ...@@ -22,10 +22,7 @@ const Button = styled.button`
const LinkComponent = ({ mark, setPosition, position }) => { const LinkComponent = ({ mark, setPosition, position }) => {
const href = mark ? mark.attrs.href : null; const href = mark ? mark.attrs.href : null;
const linkMark = mark ? mark : null; const linkMark = mark ? mark : null;
const { const { activeView } = useContext(WaxContext);
view: { main },
activeView,
} = useContext(WaxContext);
const { state, dispatch } = activeView; const { state, dispatch } = activeView;
const ref = useRef(null); const ref = useRef(null);
const linkInput = useRef(null); const linkInput = useRef(null);
...@@ -57,7 +54,8 @@ const LinkComponent = ({ mark, setPosition, position }) => { ...@@ -57,7 +54,8 @@ const LinkComponent = ({ mark, setPosition, position }) => {
}; };
const removeLink = () => { const removeLink = () => {
dispatch(state.tr.removeMark(mark.from, mark.to, state.schema.marks.link)); const { tr } = state;
dispatch(tr.removeMark(mark.from, mark.to, state.schema.marks.link));
activeView.focus(); activeView.focus();
}; };
...@@ -90,7 +88,7 @@ const LinkComponent = ({ mark, setPosition, position }) => { ...@@ -90,7 +88,7 @@ const LinkComponent = ({ mark, setPosition, position }) => {
selection: { $from, $to }, selection: { $from, $to },
} = state; } = state;
const PMLinkMark = state.schema.marks['link']; const PMLinkMark = state.schema.marks['link'];
const actualMark = DocumentHelpers.getSelectionMark(state, PMLinkMark); const actualMark = DocumentHelpers.findMark(state, PMLinkMark);
setLLastLinkMark(actualMark); setLLastLinkMark(actualMark);
if ( if (
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"version": "0.0.16", "version": "0.0.16",
"description": "Wax prosemirror core", "description": "Wax prosemirror core",
"license": "MIT", "license": "MIT",
"main": "dist/index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"build": "BABEL_ENV=production rollup -c" "build": "BABEL_ENV=production rollup -c"
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"version": "0.0.16", "version": "0.0.16",
"description": "Wax prosemirror layouts", "description": "Wax prosemirror layouts",
"license": "MIT", "license": "MIT",
"main": "dist/index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"build": "BABEL_ENV=production rollup -c" "build": "BABEL_ENV=production rollup -c"
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"version": "0.0.16", "version": "0.0.16",
"description": "Wax prosemirror plugins", "description": "Wax prosemirror plugins",
"license": "MIT", "license": "MIT",
"main": "dist/index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"build": "BABEL_ENV=production rollup -c" "build": "BABEL_ENV=production rollup -c"
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"version": "0.0.16", "version": "0.0.16",
"description": "Wax prosemirror schema", "description": "Wax prosemirror schema",
"license": "MIT", "license": "MIT",
"main": "dist/index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"build": "BABEL_ENV=production rollup -c" "build": "BABEL_ENV=production rollup -c"
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"version": "0.0.16", "version": "0.0.16",
"description": "Wax prosemirror services", "description": "Wax prosemirror services",
"license": "MIT", "license": "MIT",
"main": "dist/index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"build": "BABEL_ENV=production rollup -c" "build": "BABEL_ENV=production rollup -c"
......
import { useState, useContext, useLayoutEffect, useCallback } from "react"; import { useState, useContext, useLayoutEffect, useCallback } from 'react';
import { isObject } from "lodash"; import { isObject } from 'lodash';
import { WaxContext } from "wax-prosemirror-core"; import { WaxContext } from 'wax-prosemirror-core';
import { DocumentHelpers } from "wax-prosemirror-utilities"; import { DocumentHelpers } from 'wax-prosemirror-utilities';
const defaultOverlay = { const defaultOverlay = {
left: null, left: null,
top: null, top: null,
from: null, from: null,
to: null, to: null,
mark: null mark: null,
}; };
export default options => { export default options => {
const { view: { main }, activeView } = useContext(WaxContext); const {
view: { main },
activeView,
} = useContext(WaxContext);
const [position, setPosition] = useState({ const [position, setPosition] = useState({
position: "absolute", position: 'absolute',
...defaultOverlay ...defaultOverlay,
}); });
let mark = {}; let mark = {};
...@@ -34,7 +37,7 @@ export default options => { ...@@ -34,7 +37,7 @@ export default options => {
const top = end.top + 20; const top = end.top + 20;
return { return {
top, top,
left left,
}; };
}; };
...@@ -48,14 +51,14 @@ export default options => { ...@@ -48,14 +51,14 @@ export default options => {
top, top,
from, from,
to, to,
selection selection,
}; };
}; };
const displayOnMark = (activeView, options) => { const displayOnMark = (activeView, options) => {
const { markType, followCursor } = options; const { markType, followCursor } = options;
const PMmark = activeView.state.schema.marks[markType]; const PMmark = activeView.state.schema.marks[markType];
mark = DocumentHelpers.getSelectionMark(activeView.state, PMmark); mark = DocumentHelpers.findMark(activeView.state, PMmark);
if (!isObject(mark)) return defaultOverlay; if (!isObject(mark)) return defaultOverlay;
const { from, to } = followCursor ? activeView.state.selection : mark; const { from, to } = followCursor ? activeView.state.selection : mark;
...@@ -67,7 +70,7 @@ export default options => { ...@@ -67,7 +70,7 @@ export default options => {
top, top,
from, from,
to, to,
mark mark,
}; };
}; };
...@@ -81,15 +84,12 @@ export default options => { ...@@ -81,15 +84,12 @@ export default options => {
return displayOnMark(activeView, options); return displayOnMark(activeView, options);
}); });
useLayoutEffect( useLayoutEffect(() => {
() => { setPosition({
setPosition({ position: 'absolute',
position: "absolute", ...updatePosition(options.followCursor),
...updatePosition(options.followCursor) });
}); }, [JSON.stringify(updatePosition(options.followCursor))]);
},
[JSON.stringify(updatePosition(options.followCursor))]
);
return [position, setPosition, mark]; return [position, setPosition, mark];
}; };
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"version": "0.0.16", "version": "0.0.16",
"description": "Wax prosemirror themes", "description": "Wax prosemirror themes",
"license": "MIT", "license": "MIT",
"main": "dist/index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"build": "BABEL_ENV=production rollup -c" "build": "BABEL_ENV=production rollup -c"
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"version": "0.0.16", "version": "0.0.16",
"description": "Wax prosemirror utilities", "description": "Wax prosemirror utilities",
"license": "MIT", "license": "MIT",
"main": "dist/index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"build": "BABEL_ENV=production rollup -c" "build": "BABEL_ENV=production rollup -c"
......
...@@ -25,27 +25,27 @@ const findMark = (state, PMmark, toArr = false) => { ...@@ -25,27 +25,27 @@ const findMark = (state, PMmark, toArr = false) => {
return markFound; return markFound;
}; };
const getSelectionMark = (state, PMmark) => { // const getSelectionMark = (state, PMmark) => {
const { // const {
selection: { $from, $to }, // selection: { $from, $to },
doc, // doc,
} = state; // } = state;
let markFound; // let markFound;
doc.nodesBetween($from.pos, $to.pos, (node, from) => { // doc.nodesBetween($from.pos, $to.pos, (node, from) => {
if (node.marks) { // if (node.marks) {
const actualMark = node.marks.find(mark => mark.type === PMmark); // const actualMark = node.marks.find(mark => mark.type === PMmark);
if (actualMark) { // if (actualMark) {
markFound = { // markFound = {
from: $from.pos, // from,
to: $to.pos, // to: from + node.nodeSize,
attrs: actualMark.attrs, // attrs: actualMark.attrs,
}; // };
} // }
} // }
}); // });
//
return markFound; // return markFound;
}; // };
/* this is a workaround for now to find marks /* this is a workaround for now to find marks
that are pm will break them. that are pm will break them.
...@@ -104,11 +104,17 @@ const findMarkPosition = (activeView, initialPos, markType) => { ...@@ -104,11 +104,17 @@ const findMarkPosition = (activeView, initialPos, markType) => {
const actualMark = start.node.marks.find(mark => mark.type.name === markType); const actualMark = start.node.marks.find(mark => mark.type.name === markType);
let startIndex = $pos.index(); let startIndex = $pos.index();
let startPos = $pos.start() + start.offset; let startPos = $pos.start() + start.offset;
while (startIndex > 0 && actualMark.isInSet(parent.child(startIndex - 1).marks)) while (
startIndex > 0 &&
actualMark.isInSet(parent.child(startIndex - 1).marks)
)
startPos -= parent.child(--startIndex).nodeSize; startPos -= parent.child(--startIndex).nodeSize;
let endIndex = $pos.indexAfter(); let endIndex = $pos.indexAfter();
let endPos = startPos + start.node.nodeSize; let endPos = startPos + start.node.nodeSize;
while (endPos < parent.childCount && actualMark.isInSet(parent.child(endIndex).marks)) while (
endPos < parent.childCount &&
actualMark.isInSet(parent.child(endIndex).marks)
)
endPos += parent.child(endIndex++).nodeSize; endPos += parent.child(endIndex++).nodeSize;
return { from: startPos, to: endPos }; return { from: startPos, to: endPos };
}; };
...@@ -163,7 +169,6 @@ export default { ...@@ -163,7 +169,6 @@ export default {
findInlineNodes, findInlineNodes,
findChildrenByMark, findChildrenByMark,
findChildrenByAttr, findChildrenByAttr,
getSelectionMark,
findFragmentedMark, findFragmentedMark,
findAllMarksWithSameId, findAllMarksWithSameId,
findMarkPosition, findMarkPosition,
......
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