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

cleanup plus layout positions

parent 4159c5d6
No related branches found
No related tags found
1 merge request!82Comments areas
...@@ -42,7 +42,6 @@ export default { ...@@ -42,7 +42,6 @@ export default {
], ],
RulesService: [emDash, ellipsis], RulesService: [emDash, ellipsis],
CommentsService: { groups: ["main", "notes"] },
ShortCutsService: {}, ShortCutsService: {},
PmPlugins: [columnResizing(), tableEditing(), invisibles([hardBreak()])], PmPlugins: [columnResizing(), tableEditing(), invisibles([hardBreak()])],
......
...@@ -12,24 +12,30 @@ import { DocumentHelpers } from "wax-prosemirror-utilities"; ...@@ -12,24 +12,30 @@ import { DocumentHelpers } from "wax-prosemirror-utilities";
import CommentsBoxList from "./CommentsBoxList"; import CommentsBoxList from "./CommentsBoxList";
export default ({ area }) => { export default ({ area }) => {
const { view: { main } } = useContext(WaxContext); const { view: { main }, activeView } = useContext(WaxContext);
const [comments, setComments] = useState([]); const [comments, setComments] = useState([]);
useEffect( useEffect(
() => { () => {
setComments(updateComments(main, area)); setComments(updateComments(main));
}, },
[JSON.stringify(updateComments(main, area))] [JSON.stringify(updateComments(main))]
); );
const CommentComponent = useMemo( const CommentComponent = useMemo(
() => <CommentsBoxList comments={comments[area] || []} view={main} />, () => (
<CommentsBoxList
comments={comments[area] || []}
area={area}
view={main}
/>
),
[comments[area] || []] [comments[area] || []]
); );
return <Fragment>{CommentComponent}</Fragment>; return <Fragment>{CommentComponent}</Fragment>;
}; };
const updateComments = (view, area) => { const updateComments = view => {
if (view) { if (view) {
const nodes = DocumentHelpers.findChildrenByMark( const nodes = DocumentHelpers.findChildrenByMark(
view.state.doc, view.state.doc,
......
...@@ -2,7 +2,7 @@ import React, { Fragment, useState, useEffect, useCallback } from "react"; ...@@ -2,7 +2,7 @@ import React, { Fragment, useState, useEffect, useCallback } from "react";
import { each } from "lodash"; import { each } from "lodash";
import CommentBox from "./CommentBox"; import CommentBox from "./CommentBox";
export default ({ comments, view }) => { export default ({ comments, view, area }) => {
const [position, setPosition] = useState(); const [position, setPosition] = useState();
const setTops = useCallback(() => { const setTops = useCallback(() => {
...@@ -14,14 +14,16 @@ export default ({ comments, view }) => { ...@@ -14,14 +14,16 @@ export default ({ comments, view }) => {
let top = 0; let top = 0;
const allCommentsTop = {}; const allCommentsTop = {};
each(comments, (entry, pos) => { each(comments, (comment, pos) => {
const WaxSurface = view.dom.getBoundingClientRect(); const WaxSurface = view.dom.getBoundingClientRect();
const id = entry.attrs.id; const { attrs: { id } } = comment;
let isActive = false; let isActive = false;
// if (entry.id === active) isActive = true // if (comment.id === active) isActive = true
commentEl = document.getElementById(id); commentEl = document.getElementById(id);
//annotation top //annotation top
console.log(commentEl.getBoundingClientRect().top, commentEl.offsetTop);
annotationTop = commentEl.getBoundingClientRect().top - WaxSurface.top; annotationTop = commentEl.getBoundingClientRect().top - WaxSurface.top;
// get height of this comment box // get height of this comment box
const boxEl = document.querySelector(`div[data-comment="comment-${id}"]`); const boxEl = document.querySelector(`div[data-comment="comment-${id}"]`);
if (boxEl) boxHeight = parseInt(boxEl.offsetHeight); if (boxEl) boxHeight = parseInt(boxEl.offsetHeight);
...@@ -41,12 +43,12 @@ export default ({ comments, view }) => { ...@@ -41,12 +43,12 @@ export default ({ comments, view }) => {
} }
} }
// store where the box ends to be aware of overlaps in the next box // store where the box ends to be aware of overlaps in the next box
entry.endHeight = top + boxHeight + 2; comment.endHeight = top + boxHeight + 2;
result[pos] = top; result[pos] = top;
// if active, move as many boxes above as needed to bring it to the annotation's height // if active, move as many boxes above as needed to bring it to the annotation's height
if (isActive) { if (isActive) {
entry.endHeight = annotationTop + boxHeight + 2; comment.endHeight = annotationTop + boxHeight + 2;
result[pos] = annotationTop; result[pos] = annotationTop;
let b = true; let b = true;
...@@ -88,10 +90,10 @@ export default ({ comments, view }) => { ...@@ -88,10 +90,10 @@ export default ({ comments, view }) => {
return ( return (
<Fragment> <Fragment>
{comments.map(comment => { {comments.map(comment => {
const id = comment.attrs.id; const { attrs: { id } } = comment;
return ( return (
<CommentBox <CommentBox
key={comment.attrs.id} key={id}
mark={comment} mark={comment}
view={view} view={view}
top={position[id]} top={position[id]}
......
...@@ -8,6 +8,7 @@ const NoteEditorContainerStyled = styled.div` ...@@ -8,6 +8,7 @@ const NoteEditorContainerStyled = styled.div`
flex-direction: row; flex-direction: row;
min-height: 40px; min-height: 40px;
width: 100%; width: 100%;
position: relative;
`; `;
const NoteStyled = styled.div` const NoteStyled = styled.div`
......
...@@ -163,6 +163,7 @@ const NotesAreaContainer = styled.div` ...@@ -163,6 +163,7 @@ const NotesAreaContainer = styled.div`
width: 100%; width: 100%;
height: 100%; height: 100%;
overflow-y: scroll; overflow-y: scroll;
position: absolute;
`; `;
const NotesContainer = styled.div` const NotesContainer = styled.div`
...@@ -172,6 +173,7 @@ const NotesContainer = styled.div` ...@@ -172,6 +173,7 @@ const NotesContainer = styled.div`
padding: 0 0 10px 5px; padding: 0 0 10px 5px;
height: 100%; height: 100%;
width: 65%; width: 65%;
position: relative;
`; `;
const CommentsContainer = styled.div` const CommentsContainer = styled.div`
......
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