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

disable image upload whime uploading

parent 916c1df8
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ const renderImage = file => { ...@@ -12,7 +12,7 @@ const renderImage = file => {
reader.onload = () => accept(reader.result); reader.onload = () => accept(reader.result);
reader.onerror = () => fail(reader.error); reader.onerror = () => fail(reader.error);
// Some extra delay to make the asynchronicity visible // Some extra delay to make the asynchronicity visible
setTimeout(() => reader.readAsDataURL(file), 4150); setTimeout(() => reader.readAsDataURL(file), 6150);
}); });
}; };
......
/* eslint react/prop-types: 0 */ /* eslint react/prop-types: 0 */
import React, { useContext, useRef, useMemo } from 'react'; import React, { useContext, useRef, useMemo, useEffect } from 'react';
import { WaxContext, DocumentHelpers, MenuButton } from 'wax-prosemirror-core'; import { WaxContext, DocumentHelpers, MenuButton } from 'wax-prosemirror-core';
import { TextSelection } from 'prosemirror-state'; import { TextSelection } from 'prosemirror-state';
import styled from 'styled-components'; import styled from 'styled-components';
...@@ -20,6 +20,10 @@ const ImageUpload = ({ item, fileUpload, view }) => { ...@@ -20,6 +20,10 @@ const ImageUpload = ({ item, fileUpload, view }) => {
pmViews: { main }, pmViews: { main },
} = context; } = context;
const isEditable = main.props.editable(editable => {
return editable;
});
const inputRef = useRef(null); const inputRef = useRef(null);
const placeholderPlugin = app.PmPlugins.get('imagePlaceHolder'); const placeholderPlugin = app.PmPlugins.get('imagePlaceHolder');
const imageServiceConfig = app.config.get('config.ImageService'); const imageServiceConfig = app.config.get('config.ImageService');
...@@ -60,12 +64,10 @@ const ImageUpload = ({ item, fileUpload, view }) => { ...@@ -60,12 +64,10 @@ const ImageUpload = ({ item, fileUpload, view }) => {
insertImage(urls, view, placeholderPlugin); insertImage(urls, view, placeholderPlugin);
} }
let isDisabled = !item.select(activeView); const isDisabled =
context.options.uploading || !item.select(activeView) || !isEditable;
const isEditable = main.props.editable(editable => { useEffect(() => {}, []);
return editable;
});
if (!isEditable) isDisabled = true;
const ImageUploadComponent = useMemo( const ImageUploadComponent = useMemo(
() => ( () => (
...@@ -73,7 +75,11 @@ const ImageUpload = ({ item, fileUpload, view }) => { ...@@ -73,7 +75,11 @@ const ImageUpload = ({ item, fileUpload, view }) => {
<label htmlFor="file-upload"> <label htmlFor="file-upload">
<MenuButton <MenuButton
active={false} active={false}
disabled={isDisabled} disabled={
context.options.uploading ||
!item.select(activeView) ||
!isEditable
}
iconName={item.icon} iconName={item.icon}
onMouseDown={e => { onMouseDown={e => {
e.preventDefault(); e.preventDefault();
...@@ -87,6 +93,7 @@ const ImageUpload = ({ item, fileUpload, view }) => { ...@@ -87,6 +93,7 @@ const ImageUpload = ({ item, fileUpload, view }) => {
id="file-upload" id="file-upload"
onChange={e => { onChange={e => {
fileUpload(e.target.files[0]); fileUpload(e.target.files[0]);
context.setOption({ uploading: true });
if (inputRef.current) inputRef.current.value = ''; if (inputRef.current) inputRef.current.value = '';
}} }}
ref={inputRef} ref={inputRef}
......
...@@ -51,10 +51,12 @@ export default (view, fileUpload, placeholderPlugin, context) => file => { ...@@ -51,10 +51,12 @@ export default (view, fileUpload, placeholderPlugin, context) => file => {
) )
.setMeta(placeholderPlugin, { remove: { id } }), .setMeta(placeholderPlugin, { remove: { id } }),
); );
context.setOption({ uploading: false });
}, },
() => { () => {
// On failure, just clean up the placeholder // On failure, just clean up the placeholder
view.dispatch(tr.setMeta(placeholderPlugin, { remove: { id } })); view.dispatch(tr.setMeta(placeholderPlugin, { remove: { id } }));
context.setOption({ uploading: false });
}, },
); );
}; };
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