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

focus back to surface for find-replace/special char

parent 6b81fb26
No related branches found
No related tags found
1 merge request!526new wrapper component
......@@ -12,6 +12,7 @@ import styled from 'styled-components';
import { grid, override } from '@pubsweet/ui-toolkit';
import { WaxContext, MenuButton } from 'wax-prosemirror-core';
import FindAndReplaceComponent from './FindAndReplaceComponent';
import epigraphPoetry from '../../TrackChangeService/schema/trackChangesNodes/epigraphPoetryTrackNode';
const Wrapper = styled.div`
font-size: 0;
......@@ -30,6 +31,7 @@ const DropWrapper = styled.div`
const FindAndReplaceTool = ({ item }) => {
const { t, i18n } = useTranslation();
const {
activeView,
pmViews: { main },
} = useContext(WaxContext);
......@@ -77,8 +79,10 @@ const FindAndReplaceTool = ({ item }) => {
active={isOpen}
disabled={false}
iconName={icon}
onMouseDown={() => {
onMouseDown={e => {
e.preventDefault();
setIsOpen(!isOpen);
activeView.focus();
}}
title={
!isEmpty(i18n) && i18n.exists(`Wax.FindAndReplace.${title}`)
......@@ -92,6 +96,7 @@ const FindAndReplaceTool = ({ item }) => {
<FindAndReplaceComponent
close={() => {
setIsOpen(false);
activeView.focus();
}}
/>
</DropWrapper>
......
......@@ -28,6 +28,7 @@ const DropWrapper = styled.div`
const SpecialCharactersTool = ({ item }) => {
const { t, i18n } = useTranslation();
const {
activeView,
pmViews: { main },
} = useContext(WaxContext);
......@@ -50,8 +51,10 @@ const SpecialCharactersTool = ({ item }) => {
active={isOpen}
disabled={isDisabled}
iconName={icon}
onMouseDown={() => {
onMouseDown={e => {
e.preventDefault();
setIsOpen(!isOpen);
activeView.focus();
}}
title={
!isEmpty(i18n) && i18n.exists(`Wax.SpecialCharacters.${title}`)
......
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