| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import detectIndent from 'detect-indent';
- import { throttle, debounce } from 'throttle-debounce';
- import { envUtils } from 'growi-commons';
- import loggerFactory from '~/utils/logger';
- import AppContainer from '~/client/services/AppContainer';
- import PageContainer from '~/client/services/PageContainer';
- import { withUnstatedContainers } from './UnstatedUtils';
- import Editor from './PageEditor/Editor';
- import Preview from './PageEditor/Preview';
- import scrollSyncHelper from './PageEditor/ScrollSyncHelper';
- import EditorContainer from '~/client/services/EditorContainer';
- const logger = loggerFactory('growi:PageEditor');
- class PageEditor extends React.Component {
- constructor(props) {
- super(props);
- this.previewElement = React.createRef();
- const config = this.props.appContainer.getConfig();
- const isUploadable = config.upload.image || config.upload.file;
- const isUploadableFile = config.upload.file;
- const isMathJaxEnabled = !!config.env.MATHJAX;
- this.state = {
- markdown: this.props.pageContainer.state.markdown,
- isUploadable,
- isUploadableFile,
- isMathJaxEnabled,
- };
- this.setCaretLine = this.setCaretLine.bind(this);
- this.focusToEditor = this.focusToEditor.bind(this);
- this.onMarkdownChanged = this.onMarkdownChanged.bind(this);
- this.onSaveWithShortcut = this.onSaveWithShortcut.bind(this);
- this.onUpload = this.onUpload.bind(this);
- this.onEditorScroll = this.onEditorScroll.bind(this);
- this.onEditorScrollCursorIntoView = this.onEditorScrollCursorIntoView.bind(this);
- this.onPreviewScroll = this.onPreviewScroll.bind(this);
- this.saveDraft = this.saveDraft.bind(this);
- this.clearDraft = this.clearDraft.bind(this);
- // for scrolling
- this.lastScrolledDateWithCursor = null;
- this.isOriginOfScrollSyncEditor = false;
- this.isOriginOfScrollSyncEditor = false;
- // create throttled function
- this.scrollPreviewByEditorLineWithThrottle = throttle(20, this.scrollPreviewByEditorLine);
- this.scrollPreviewByCursorMovingWithThrottle = throttle(20, this.scrollPreviewByCursorMoving);
- this.scrollEditorByPreviewScrollWithThrottle = throttle(20, this.scrollEditorByPreviewScroll);
- this.setMarkdownStateWithDebounce = debounce(50, throttle(100, (value) => {
- this.setState({ markdown: value });
- }));
- this.saveDraftWithDebounce = debounce(800, this.saveDraft);
- // Detect indent size from contents (only when users are allowed to change it)
- // TODO: https://youtrack.weseek.co.jp/issue/GW-5368
- if (!this.props.appContainer.config.isIndentSizeForced && this.state.markdown) {
- const detectedIndent = detectIndent(this.state.markdown);
- if (detectedIndent.type === 'space' && new Set([2, 4]).has(detectedIndent.amount)) {
- this.props.editorContainer.setState({ indentSize: detectedIndent.amount });
- }
- }
- }
- componentWillMount() {
- this.props.appContainer.registerComponentInstance('PageEditor', this);
- }
- getMarkdown() {
- return this.state.markdown;
- }
- updateEditorValue(markdown) {
- this.editor.setValue(markdown);
- }
- focusToEditor() {
- this.editor.forceToFocus();
- }
- /**
- * set caret position of editor
- * @param {number} line
- */
- setCaretLine(line) {
- this.editor.setCaretLine(line);
- scrollSyncHelper.scrollPreview(this.previewElement, line);
- }
- /**
- * the change event handler for `markdown` state
- * @param {string} value
- */
- onMarkdownChanged(value) {
- const { pageContainer } = this.props;
- this.setMarkdownStateWithDebounce(value);
- // only when the first time to edit
- if (!pageContainer.state.revisionId) {
- this.saveDraftWithDebounce();
- }
- }
- // Displays an alert if there is a difference with pageContainer's markdown
- componentDidUpdate(prevProps, prevState) {
- const { pageContainer, editorContainer } = this.props;
- if (this.state.markdown !== prevState.markdown) {
- if (pageContainer.state.markdown !== this.state.markdown) {
- editorContainer.enableUnsavedWarning();
- }
- }
- }
- /**
- * save and update state of containers
- */
- async onSaveWithShortcut() {
- const { pageContainer, editorContainer } = this.props;
- const optionsToSave = editorContainer.getCurrentOptionsToSave();
- try {
- // disable unsaved warning
- editorContainer.disableUnsavedWarning();
- // eslint-disable-next-line no-unused-vars
- const { page, tags } = await pageContainer.save(this.state.markdown, optionsToSave);
- logger.debug('success to save');
- pageContainer.showSuccessToastr();
- // update state of EditorContainer
- editorContainer.setState({ tags });
- }
- catch (error) {
- logger.error('failed to save', error);
- pageContainer.showErrorToastr(error);
- }
- }
- /**
- * the upload event handler
- * @param {any} file
- */
- async onUpload(file) {
- const { appContainer, pageContainer, editorContainer } = this.props;
- try {
- let res = await appContainer.apiGet('/attachments.limit', {
- fileSize: file.size,
- });
- if (!res.isUploadable) {
- throw new Error(res.errorMessage);
- }
- const formData = new FormData();
- const { pageId, path } = pageContainer.state;
- formData.append('_csrf', appContainer.csrfToken);
- formData.append('file', file);
- formData.append('path', path);
- if (pageId != null) {
- formData.append('page_id', pageContainer.state.pageId);
- }
- res = await appContainer.apiPost('/attachments.add', formData);
- const attachment = res.attachment;
- const fileName = attachment.originalName;
- let insertText = `[${fileName}](${attachment.filePathProxied})`;
- // when image
- if (attachment.fileFormat.startsWith('image/')) {
- // modify to "" syntax
- insertText = `!${insertText}`;
- }
- this.editor.insertText(insertText);
- // when if created newly
- if (res.pageCreated) {
- logger.info('Page is created', res.page._id);
- pageContainer.updateStateAfterSave(res.page, res.tags, res.revision);
- editorContainer.setState({ grant: res.page.grant });
- }
- }
- catch (e) {
- logger.error('failed to upload', e);
- pageContainer.showErrorToastr(e);
- }
- finally {
- this.editor.terminateUploadingState();
- }
- }
- /**
- * the scroll event handler from codemirror
- * @param {any} data {left, top, width, height, clientWidth, clientHeight} object that represents the current scroll position,
- * the size of the scrollable area, and the size of the visible area (minus scrollbars).
- * And data.line is also available that is added by Editor component
- * @see https://codemirror.net/doc/manual.html#events
- */
- onEditorScroll(data) {
- // prevent scrolling
- // if the elapsed time from last scroll with cursor is shorter than 40ms
- const now = new Date();
- if (now - this.lastScrolledDateWithCursor < 40) {
- return;
- }
- this.scrollPreviewByEditorLineWithThrottle(data.line);
- }
- /**
- * the scroll event handler from codemirror
- * @param {number} line
- * @see https://codemirror.net/doc/manual.html#events
- */
- onEditorScrollCursorIntoView(line) {
- // record date
- this.lastScrolledDateWithCursor = new Date();
- this.scrollPreviewByCursorMovingWithThrottle(line);
- }
- /**
- * scroll Preview element by scroll event
- * @param {number} line
- */
- scrollPreviewByEditorLine(line) {
- if (this.previewElement == null) {
- return;
- }
- // prevent circular invocation
- if (this.isOriginOfScrollSyncPreview) {
- this.isOriginOfScrollSyncPreview = false; // turn off the flag
- return;
- }
- // turn on the flag
- this.isOriginOfScrollSyncEditor = true;
- scrollSyncHelper.scrollPreview(this.previewElement, line);
- }
- /**
- * scroll Preview element by cursor moving
- * @param {number} line
- */
- scrollPreviewByCursorMoving(line) {
- if (this.previewElement == null) {
- return;
- }
- // prevent circular invocation
- if (this.isOriginOfScrollSyncPreview) {
- this.isOriginOfScrollSyncPreview = false; // turn off the flag
- return;
- }
- // turn on the flag
- this.isOriginOfScrollSyncEditor = true;
- scrollSyncHelper.scrollPreviewToRevealOverflowing(this.previewElement, line);
- }
- /**
- * the scroll event handler from Preview component
- * @param {number} offset
- */
- onPreviewScroll(offset) {
- this.scrollEditorByPreviewScrollWithThrottle(offset);
- }
- /**
- * scroll Editor component by scroll event of Preview component
- * @param {number} offset
- */
- scrollEditorByPreviewScroll(offset) {
- if (this.previewElement == null) {
- return;
- }
- // prevent circular invocation
- if (this.isOriginOfScrollSyncEditor) {
- this.isOriginOfScrollSyncEditor = false; // turn off the flag
- return;
- }
- // turn on the flag
- this.isOriginOfScrollSyncPreview = true;
- scrollSyncHelper.scrollEditor(this.editor, this.previewElement, offset);
- }
- saveDraft() {
- const { pageContainer, editorContainer } = this.props;
- editorContainer.saveDraft(pageContainer.state.path, this.state.markdown);
- }
- clearDraft() {
- this.props.editorContainer.clearDraft(this.props.pageContainer.state.path);
- }
- render() {
- const config = this.props.appContainer.getConfig();
- const noCdn = envUtils.toBoolean(config.env.NO_CDN);
- const emojiStrategy = this.props.appContainer.getEmojiStrategy();
- return (
- <div className="d-flex flex-wrap">
- <div className="page-editor-editor-container flex-grow-1 flex-basis-0 mw-0">
- <Editor
- ref={(c) => { this.editor = c }}
- value={this.state.markdown}
- noCdn={noCdn}
- isMobile={this.props.appContainer.isMobile}
- isUploadable={this.state.isUploadable}
- isUploadableFile={this.state.isUploadableFile}
- emojiStrategy={emojiStrategy}
- onScroll={this.onEditorScroll}
- onScrollCursorIntoView={this.onEditorScrollCursorIntoView}
- onChange={this.onMarkdownChanged}
- onUpload={this.onUpload}
- onSave={this.onSaveWithShortcut}
- />
- </div>
- <div className="d-none d-lg-block page-editor-preview-container flex-grow-1 flex-basis-0 mw-0">
- <Preview
- markdown={this.state.markdown}
- // eslint-disable-next-line no-return-assign
- inputRef={(el) => { return this.previewElement = el }}
- isMathJaxEnabled={this.state.isMathJaxEnabled}
- renderMathJaxOnInit={false}
- onScroll={this.onPreviewScroll}
- />
- </div>
- </div>
- );
- }
- }
- /**
- * Wrapper component for using unstated
- */
- const PageEditorWrapper = withUnstatedContainers(PageEditor, [AppContainer, PageContainer, EditorContainer]);
- PageEditor.propTypes = {
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- pageContainer: PropTypes.instanceOf(PageContainer).isRequired,
- editorContainer: PropTypes.instanceOf(EditorContainer).isRequired,
- };
- export default PageEditorWrapper;
|