153 lines
4.5 KiB
JavaScript
153 lines
4.5 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
import React, { useCallback, useMemo, useRef, useState, useEffect } from 'react';
|
|
import { styled } from '@mui/material/styles';
|
|
import FileCopyRoundedIcon from '@mui/icons-material/FileCopyRounded';
|
|
import CheckRoundedIcon from '@mui/icons-material/CheckRounded';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import gettext from 'sources/gettext';
|
|
import { PgIconButton } from '../Buttons';
|
|
import { copyToClipboard } from '../../clipboard';
|
|
import { useDelayedCaller } from '../../custom_hooks';
|
|
|
|
import Editor from './components/Editor';
|
|
import CustomPropTypes from '../../custom_prop_types';
|
|
import FindDialog from './components/FindDialog';
|
|
import GotoDialog from './components/GotoDialog';
|
|
|
|
const Root = styled('div')(() => ({
|
|
position: 'relative',
|
|
height: '100%',
|
|
'& .CodeMirror-copyButton': {
|
|
position: 'absolute',
|
|
zIndex: 99,
|
|
right: '4px',
|
|
top: '4px',
|
|
}
|
|
}));
|
|
|
|
|
|
function CopyButton({ editor }) {
|
|
|
|
const [isCopied, setIsCopied] = useState(false);
|
|
const revertCopiedText = useDelayedCaller(() => {
|
|
setIsCopied(false);
|
|
});
|
|
|
|
return (
|
|
<PgIconButton size="small" className='CodeMirror-copyButton' icon={isCopied ? <CheckRoundedIcon /> : <FileCopyRoundedIcon />}
|
|
title={isCopied ? gettext('Copied!') : gettext('Copy')}
|
|
onClick={() => {
|
|
copyToClipboard(editor?.getValue());
|
|
setIsCopied(true);
|
|
revertCopiedText(1500);
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
CopyButton.propTypes = {
|
|
editor: PropTypes.object,
|
|
};
|
|
|
|
|
|
export default function CodeMirror({className, currEditor, showCopyBtn=false, customKeyMap=[], onTextSelect, ...props}) {
|
|
const editor = useRef();
|
|
const [[showFind, isReplace, findKey], setShowFind] = useState([false, false, false]);
|
|
const [showGoto, setShowGoto] = useState(false);
|
|
const [showCopy, setShowCopy] = useState(false);
|
|
|
|
const finalCustomKeyMap = useMemo(()=>[{
|
|
key: 'Mod-f', run: () => {
|
|
setShowFind(prevVal => [true, false, !prevVal[2]]);
|
|
},
|
|
preventDefault: true,
|
|
stopPropagation: true,
|
|
}, {
|
|
key: 'Mod-Alt-f', run: () => {
|
|
setShowFind(prevVal => [true, true, !prevVal[2]]);
|
|
},
|
|
preventDefault: true,
|
|
stopPropagation: true,
|
|
}, {
|
|
key: 'Mod-l', run: () => {
|
|
setShowGoto(true);
|
|
},
|
|
preventDefault: true,
|
|
stopPropagation: true,
|
|
},
|
|
...customKeyMap], [customKeyMap]);
|
|
|
|
const closeFind = () => {
|
|
setShowFind([false, false, false]);
|
|
editor.current?.focus();
|
|
};
|
|
|
|
const closeGoto = () => {
|
|
setShowGoto(false);
|
|
editor.current?.focus();
|
|
};
|
|
|
|
const currEditorWrap = useCallback((obj)=>{
|
|
editor.current = obj;
|
|
currEditor?.(obj);
|
|
}, []);
|
|
|
|
|
|
const onMouseEnter = useCallback(()=>{showCopyBtn && setShowCopy(true);}, []);
|
|
const onMouseLeave = useCallback(()=>{showCopyBtn && setShowCopy(false);}, []);
|
|
|
|
// Use to handle text selection events.
|
|
useEffect(() => {
|
|
if (!onTextSelect) return;
|
|
|
|
const handleSelection = () => {
|
|
const selectedText = window.getSelection().toString();
|
|
if (selectedText) {
|
|
onTextSelect(selectedText);
|
|
} else {
|
|
onTextSelect(''); // Reset if no text is selected
|
|
}
|
|
};
|
|
|
|
const handleKeyUp = () => {
|
|
handleSelection();
|
|
};
|
|
// Add event listeners for mouseup and keyup events to detect text selection.
|
|
document.addEventListener('mouseup', handleSelection);
|
|
document.addEventListener('keyup', handleKeyUp);
|
|
|
|
// Cleanup function to remove event listeners when component unmounts or onTextSelect changes.
|
|
return () => {
|
|
document.removeEventListener('mouseup', handleSelection);
|
|
document.removeEventListener('keyup', handleKeyUp);
|
|
};
|
|
}, [onTextSelect]);
|
|
|
|
|
|
return (
|
|
<Root className={[className].join(' ')} onMouseEnter={onMouseEnter} onMouseLeave={onMouseLeave} >
|
|
<Editor currEditor={currEditorWrap} customKeyMap={finalCustomKeyMap} {...props} />
|
|
{showCopy && <CopyButton editor={editor.current} />}
|
|
<FindDialog key={findKey} editor={editor.current} show={showFind} replace={isReplace} onClose={closeFind} />
|
|
<GotoDialog editor={editor.current} show={showGoto} onClose={closeGoto} />
|
|
</Root>
|
|
);
|
|
}
|
|
|
|
CodeMirror.propTypes = {
|
|
currEditor: PropTypes.func,
|
|
className: CustomPropTypes.className,
|
|
showCopyBtn: PropTypes.bool,
|
|
customKeyMap: PropTypes.array,
|
|
onTextSelect:PropTypes.func
|
|
};
|