Skip to content
Snippets Groups Projects
Commit 83c39d45 authored by chris's avatar chris
Browse files

component in progress

parent c137b559
No related branches found
No related tags found
1 merge request!226Ui components
...@@ -124,14 +124,13 @@ const CommentsContainerNotes = styled.div` ...@@ -124,14 +124,13 @@ const CommentsContainerNotes = styled.div`
const CommentTrackToolsContainer = styled.div` const CommentTrackToolsContainer = styled.div`
padding: ${grid(2)}0 0 0; padding: ${grid(2)}0 0 0;
position: fixed; position: absolute;
display: flex; display: flex;
margin-left: 5px;
flex-dirextion: row; flex-dirextion: row;
// justify-content: center; // justify-content: center;
z-index: 1; z-index: 1;
height: 30px; height: 30px;
width: 27%; width: 34%;
background: #fff; background: #fff;
`; `;
......
...@@ -3,6 +3,7 @@ import styled from 'styled-components'; ...@@ -3,6 +3,7 @@ import styled from 'styled-components';
import { grid } from '@pubsweet/ui-toolkit'; import { grid } from '@pubsweet/ui-toolkit';
import { DocumentHelpers } from 'wax-prosemirror-utilities'; import { DocumentHelpers } from 'wax-prosemirror-utilities';
import { WaxContext } from 'wax-prosemirror-core'; import { WaxContext } from 'wax-prosemirror-core';
import Icon from '../../helpers/Icon';
const Wrapper = styled.div` const Wrapper = styled.div`
background: #fff; background: #fff;
...@@ -17,7 +18,32 @@ const Wrapper = styled.div` ...@@ -17,7 +18,32 @@ const Wrapper = styled.div`
const TotalSuggestions = styled.span` const TotalSuggestions = styled.span`
color: #bdc2ca; color: #bdc2ca;
font-size: 15px; font-size: 14px;
`;
const TotalComments = styled.span`
color: #bdc2ca;
font-size: 14px;
`;
const ShowComments = styled.div`
color: #bdc2ca;
font-size: 14px;
svg {
cursor: not-allowed;
fill: #85adff;
opacity: 0.6;
width: 50px !important;
height: 50px !important;
}
`;
const StyledToggleOn = styled(Icon)`
cursor: pointer;
height: 32px;
margin-left: auto;
width: 32px;
`; `;
const getInlineTracks = main => { const getInlineTracks = main => {
...@@ -51,18 +77,34 @@ const getTrackBlockNodes = main => { ...@@ -51,18 +77,34 @@ const getTrackBlockNodes = main => {
return trackBlockNodes; return trackBlockNodes;
}; };
const getComments = main => {
const comments = DocumentHelpers.findChildrenByMark(
main.state.doc,
main.state.schema.marks.comment,
true,
);
return comments;
};
const TrackChangeOptionsComponent = ({ groups }) => { const TrackChangeOptionsComponent = ({ groups }) => {
console.log(groups); console.log(groups);
const { app, view, activeViewId } = useContext(WaxContext); const { app, view, activeViewId } = useContext(WaxContext);
const inlineTracks = getInlineTracks(view.main).length; const inlineTracks = getInlineTracks(view.main).length;
const blockTracks = getTrackBlockNodes(view.main).length; const blockTracks = getTrackBlockNodes(view.main).length;
const comments = getComments(view.main).length;
return ( return (
<Wrapper> <Wrapper>
<TotalSuggestions> <TotalSuggestions>
{inlineTracks + blockTracks} Suggestions {inlineTracks + blockTracks} SUGGESTIONS
</TotalSuggestions> </TotalSuggestions>
<div>-----</div>
<TotalComments>{comments} COMMENTS</TotalComments>
<ShowComments>
Show comments
<StyledToggleOn name="toggleOn" />
</ShowComments>
</Wrapper> </Wrapper>
); );
}; };
......
...@@ -296,7 +296,14 @@ export default { ...@@ -296,7 +296,14 @@ export default {
<Svg className={className} fill="none" viewBox="0 0 24 24"> <Svg className={className} fill="none" viewBox="0 0 24 24">
<title> Viewing </title> <title> Viewing </title>
<path d="M0 0h24v24H0z" fill="none" /> <path d="M0 0h24v24H0z" fill="none" />
<path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" />{' '} <path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" />
</Svg>
),
toggleOn: ({ className }) => (
<Svg className={className} fill="none" viewBox="0 0 24 24">
<title> Viewing </title>
<path d="M0 0h24v24H0z" fill="none" />
<path d="M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" />
</Svg> </Svg>
), ),
specialCharacters: ({ className }) => ( specialCharacters: ({ className }) => (
......
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