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

set WaxView in layout

parent 1dc8a5c1
No related branches found
No related tags found
1 merge request!590Build wax view
......@@ -6,7 +6,6 @@ import { EditoriaLayout, EditoriaMobileLayout } from './layout';
import { config, configMobile } from './config';
import { demo } from './demo';
import { debounce } from 'lodash';
import { TablesService } from 'wax-table-service';
const renderImage = file => {
const reader = new FileReader();
......@@ -27,13 +26,7 @@ const user = {
username: 'admin',
};
// const users = [{
// userId: 'b3cfc28e-0f2e-45b5-b505-e66783d4f946',
// username: 'admin',
// }];
const Editoria = () => {
const [myConfig, setMyConfig] = useState(config);
const [width] = useWindowSize();
let layout = EditoriaLayout;
......@@ -46,46 +39,32 @@ const Editoria = () => {
key = 'editoriaMobile';
}
const editorRef = useRef();
return (
<>
<button
onClick={() => {
console.log(myConfig);
myConfig.PmPlugins = [];
myConfig.services = [...myConfig.services, new TablesService()];
setMyConfig({ ...myConfig });
}}
>
{' '}
change config
</button>
<Wax
ref={editorRef}
key={key}
config={myConfig}
autoFocus
placeholder="Type Something..."
fileUpload={file => renderImage(file)}
// value={demo}
// readonly
layout={layout}
// onChange={debounce(source => {
// console.log(JSON.stringify(source));
// }, 200)}
user={user}
scrollMargin={200}
scrollThreshold={200}
/>
</>
const EditoriaComponent = useMemo(
() => (
<>
<Wax
ref={editorRef}
key={key}
config={finalConfig}
autoFocus
placeholder="Type Something..."
fileUpload={file => renderImage(file)}
// value={demo}
// readonly
layout={layout}
// onChange={debounce(source => {
// console.log(JSON.stringify(source));
// }, 200)}
user={user}
scrollMargin={200}
scrollThreshold={200}
/>
</>
),
// eslint-disable-next-line react-hooks/exhaustive-deps
[layout, finalConfig],
);
// const EditoriaComponent = useMemo(
// () => (
// ),
// // eslint-disable-next-line react-hooks/exhaustive-deps
// [layout, myConfig],
// );
return <>{EditoriaComponent}</>;
};
......
......@@ -233,7 +233,7 @@ export default {
'SpecialCharacters',
'CodeBlock',
'ToggleAi',
// 'Tables',
'Tables',
'TrackingAndEditing',
'FullScreen',
],
......@@ -305,13 +305,13 @@ export default {
],
updateTags: saveTags,
},
// YjsService: {
// // eslint-disable-next-line no-restricted-globals
// connectionUrl: 'ws://localhost:5010',
// // connectionUrl: 'ws://0.tcp.ap.ngrok.io:17607',
// docIdentifier: 'prosemirror-r5dw4q2fe2eedreeeeeweewwewerc',
// YjsType: 'prosemirror',
// },
YjsService: {
// eslint-disable-next-line no-restricted-globals
connectionUrl: 'ws://localhost:5010',
// connectionUrl: 'ws://0.tcp.ap.ngrok.io:17607',
docIdentifier: 'prosemirror-r5dw4q2fe2eedreeeeeweewwewerc',
YjsType: 'prosemirror',
},
AskAiContentService: {
AskAiContentTransformation: DummyPromise,
......@@ -324,7 +324,7 @@ export default {
},
services: [
// new YjsService(),
new YjsService(),
new BlockDropDownToolGroupService(),
new AskAiContentService(),
new CustomTagService(),
......@@ -336,9 +336,9 @@ export default {
new TrackChangeService(),
new CommentsService(),
new ImageService(),
// new TablesService(),
new TablesService(),
new BaseService(),
new NoteService(),
// new NoteService(),
new CodeBlockService(),
new EditingSuggestingService(),
new DisplayTextToolGroupService(),
......
import React, {
useContext,
useState,
useCallback,
useEffect,
useMemo,
} from 'react';
import React, { useContext, useState, useCallback, useEffect } from 'react';
import styled, { css, ThemeProvider } from 'styled-components';
import PanelGroup from 'react-panelgroup';
import {
......@@ -216,22 +210,11 @@ const RightArea = ComponentPlugin('rightArea');
const CommentTrackToolBar = ComponentPlugin('commentTrackToolBar');
const BottomRightInfo = ComponentPlugin('BottomRightInfo');
const WaxPortals = ComponentPlugin('waxPortals');
const WaxOverlays = ComponentPlugin('waxOverlays');
const DummyCompo = () => {
console.log('dummy');
return <div>MY DIV</div>;
};
const EditoriaLayout = props => {
const {
pmViews: { main },
options,
} = useContext(WaxContext);
const Dummy = useMemo(() => {
return <DummyCompo />;
}, []);
let fullScreenStyles = {};
......@@ -263,23 +246,14 @@ const EditoriaLayout = props => {
};
const delayedShowedNotes = useCallback(
// setTimeout(() => showNotes(), 100),
setTimeout(() => showNotes(), 100),
[],
);
useEffect(() => {}, [delayedShowedNotes]);
const users = [
{
userId: '1',
displayName: 'test test',
currentUser: true,
},
];
return (
<ThemeProvider theme={cokoTheme}>
{Dummy}
<Wrapper style={fullScreenStyles} id="wax-container">
<TopMenu>
<MainMenuToolBar />
......
......@@ -91,7 +91,7 @@ const Editors = () => {
case 'oen':
return <OEN />;
default:
return <Editoria />;
return <HHMI />;
}
};
......
import React, { useContext } from 'react';
import styled, { ThemeProvider } from 'styled-components';
import { WaxContext, ComponentPlugin } from 'wax-prosemirror-core';
import { WaxContext, ComponentPlugin, WaxView } from 'wax-prosemirror-core';
import { grid, th } from '@pubsweet/ui-toolkit';
import { cokoTheme } from '../theme';
import EditorElements from './EditorElements';
......@@ -86,7 +86,7 @@ const EditorContainer = styled.div`
const MainMenuToolBar = ComponentPlugin('mainMenuToolBar');
const HhmiLayout = ({ editor }) => {
const HhmiLayout = props => {
const { options } = useContext(WaxContext);
let fullScreenStyles = {};
......@@ -115,7 +115,9 @@ const HhmiLayout = ({ editor }) => {
<Main>
<EditorArea>
<WaxSurfaceScroll>
<EditorContainer>{editor}</EditorContainer>
<EditorContainer>
<WaxView {...props} />
</EditorContainer>
</WaxSurfaceScroll>
</EditorArea>
</Main>
......
......@@ -63,17 +63,12 @@ const Wax = forwardRef((props, innerViewRef) => {
const [application, setApplication] = useState();
const configHash = createConfigWithHash(config);
// useEffect(() => {
// // const newApplication = createApplication(props);
// // setApplication(newApplication);
// return () => application.resetApp();
// }, []);
useEffect(() => {
return () => application.resetApp();
}, []);
useEffect(() => {
console.log('create application from config. hash:', configHash);
// if (application) application.resetApp();
const newApplication = createApplication(props);
WaxLayout = setupLayout(newApplication, layout);
setApplication(newApplication);
}, [configHash]);
......
/* eslint-disable consistent-return */
/* eslint-disable react/prop-types */
import React, {
useContext,
useCallback,
useMemo,
useEffect,
forwardRef,
useState,
useImperativeHandle,
} from 'react';
import React, { useContext, useCallback, useEffect } from 'react';
import styled from 'styled-components';
import { EditorState } from 'prosemirror-state';
import { EditorView } from 'prosemirror-view';
import trackedTransaction from './utilities/track-changes/trackedTransaction';
import { WaxContext } from './WaxContext';
import { PortalContext } from './PortalContext';
import ComponentPlugin from './ComponentPlugin';
import WaxOptions from './WaxOptions';
import helpers from './helpers/helpers';
import './styles/styles.css';
import useWaxView from './useWaxView';
const EditorContainer = styled.div`
height: 100%;
position: relative;
> div:first-child {
height: 100%;
}
`;
const WaxPortals = ComponentPlugin('waxPortals');
......@@ -35,17 +24,12 @@ const WaxView = props => {
useWaxView(props);
const {
pmViews: { main },
app,
} = useContext(WaxContext);
// useEffect(() => {
// return () => app.resetApp();
// }, []);
const editorRef = useCallback(
element => {
if (element && main) {
element.replaceWith(main?.dom);
element.replaceChildren(main?.dom);
}
},
[main],
......@@ -55,7 +39,7 @@ const WaxView = props => {
if (autoFocus && main) {
main.focus();
}
}, [autoFocus, main]);
}, [autoFocus]);
return (
<EditorContainer>
......
/* eslint-disable consistent-return */
/* eslint-disable react/prop-types */
import { useContext, useEffect, useImperativeHandle } from 'react';
import { EditorState } from 'prosemirror-state';
import { EditorView } from 'prosemirror-view';
import trackedTransaction from './utilities/track-changes/trackedTransaction';
import { WaxContext } from './WaxContext';
import { PortalContext } from './PortalContext';
import WaxOptions from './WaxOptions';
import helpers from './helpers/helpers';
import './styles/styles.css';
let previousDoc;
const useWaxView = props => {
const {
browserSpellCheck,
customValues,
readonly,
autoFocus,
user,
innerViewRef,
targetFormat,
serializer,
scrollMargin,
scrollThreshold,
} = props;
let view;
const context = useContext(WaxContext);
const { createPortal } = useContext(PortalContext);
context.app.setContext({ ...context, createPortal });
const schema = context.app.getSchema();
useEffect(() => {
context.app.bootServices();
context.app.getShortCuts();
context.app.getRules();
const options = WaxOptions({
...props,
schema,
plugins: context.app.getPlugins(),
});
view = new EditorView(null, {
editable: () => !readonly,
customValues,
state: EditorState.create(options),
dispatchTransaction,
disallowedTools: [],
user,
scrollMargin: scrollMargin || 200,
scrollThreshold: scrollThreshold || 200,
attributes: {
spellcheck: browserSpellCheck ? 'true' : 'false',
},
});
context.updateView(
{
main: view,
},
'main',
);
setTimeout(() => {
if (autoFocus && view) {
view.state.tr.insertText('', 0);
view.dispatch(view.state.tr.scrollIntoView());
view.focus();
}
}, 500);
}, [readonly, customValues, context.app.id]);
useEffect(() => {
return () => (view = null);
}, []);
useImperativeHandle(innerViewRef, () => ({
getContent() {
return helpers.getDocContent(schema, serializer, targetFormat, context);
},
}));
const dispatchTransaction = transaction => {
const { TrackChange } = props;
const tr =
TrackChange && TrackChange.enabled
? trackedTransaction(transaction, view.state, user, context)
: transaction;
if (!view) return;
previousDoc = view.state.doc;
const state = view.state.apply(tr);
view.updateState(state);
/* when a transaction comes from a view other than
main don't keep updating the view ,as this is
the central point of each transaction
*/
context.setTransaction(transaction);
if (!transaction.getMeta('outsideView')) {
context.updateView(
{
main: view,
},
'main',
);
}
const docContent =
targetFormat === 'JSON' ? state.doc.toJSON() : state.doc.content;
if (!previousDoc.eq(view.state.doc) || tr.getMeta('forceUpdate'))
props.onChange(docContent);
};
};
export default useWaxView;
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