mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 17:28:54 +00:00
150 lines
3.8 KiB
TypeScript
150 lines
3.8 KiB
TypeScript
import React, { useCallback, useRef } from "react";
|
|
import AceEditor from "react-ace";
|
|
import ReactAce from "react-ace/lib/ace";
|
|
import { IAceEditor } from "react-ace/lib/types";
|
|
import classnames from "classnames";
|
|
import "ace-builds/src-noconflict/mode-sql";
|
|
import "ace-builds/src-noconflict/ext-linking";
|
|
import "ace-builds/src-noconflict/ext-language_tools";
|
|
import { noop } from "lodash";
|
|
|
|
import "./mode";
|
|
import "./theme";
|
|
|
|
export interface IFleetAceProps {
|
|
error?: string | null;
|
|
fontSize?: number;
|
|
label?: string;
|
|
name?: string;
|
|
value?: string;
|
|
readOnly?: boolean;
|
|
showGutter?: boolean;
|
|
wrapEnabled?: boolean;
|
|
wrapperClassName?: string;
|
|
hint?: string;
|
|
labelActionComponent?: React.ReactNode;
|
|
onLoad?: (editor: IAceEditor) => void;
|
|
onChange?: (value: string) => void;
|
|
handleSubmit?: () => void;
|
|
}
|
|
|
|
const baseClass = "fleet-ace";
|
|
|
|
const FleetAce = ({
|
|
error,
|
|
fontSize = 14,
|
|
label,
|
|
labelActionComponent,
|
|
name = "query-editor",
|
|
value,
|
|
readOnly,
|
|
showGutter = true,
|
|
wrapEnabled = false,
|
|
wrapperClassName,
|
|
hint,
|
|
onLoad,
|
|
onChange,
|
|
handleSubmit = noop,
|
|
}: IFleetAceProps): JSX.Element => {
|
|
const editorRef = useRef<ReactAce>(null);
|
|
const wrapperClass = classnames(wrapperClassName, baseClass, {
|
|
[`${baseClass}__wrapper--error`]: !!error,
|
|
});
|
|
|
|
const fixHotkeys = (editor: IAceEditor) => {
|
|
editor.commands.removeCommand("gotoline");
|
|
editor.commands.removeCommand("find");
|
|
onLoad && onLoad(editor);
|
|
};
|
|
|
|
const handleDelete = (deleteCommand: string) => {
|
|
const currentText = editorRef.current?.editor.getValue();
|
|
const selectedText = editorRef.current?.editor.getSelectedText();
|
|
|
|
if (selectedText) {
|
|
const remainingText = currentText?.replace(selectedText, "");
|
|
if (typeof remainingText !== "undefined") {
|
|
onChange && onChange(remainingText);
|
|
editorRef.current?.editor.navigateLeft();
|
|
editorRef.current?.editor.clearSelection();
|
|
}
|
|
} else {
|
|
editorRef.current?.editor.execCommand(deleteCommand);
|
|
}
|
|
};
|
|
|
|
const renderLabel = useCallback(() => {
|
|
const labelText = error || label;
|
|
const labelClassName = classnames(`${baseClass}__label`, {
|
|
[`${baseClass}__label--error`]: !!error,
|
|
[`${baseClass}__label--with-action`]: !!labelActionComponent,
|
|
});
|
|
|
|
if (!label) {
|
|
return <></>;
|
|
}
|
|
|
|
return (
|
|
<div className={labelClassName}>
|
|
{labelText}
|
|
{labelActionComponent}
|
|
</div>
|
|
);
|
|
}, [error, label, labelActionComponent]);
|
|
|
|
const renderHint = () => {
|
|
if (hint) {
|
|
return <span className={`${baseClass}__hint`}>{hint}</span>;
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
return (
|
|
<div className={wrapperClass}>
|
|
{renderLabel()}
|
|
<AceEditor
|
|
ref={editorRef}
|
|
enableBasicAutocompletion
|
|
enableLiveAutocompletion
|
|
editorProps={{ $blockScrolling: Infinity }}
|
|
fontSize={fontSize}
|
|
mode="fleet"
|
|
minLines={2}
|
|
maxLines={20}
|
|
name={name}
|
|
onChange={onChange}
|
|
onLoad={fixHotkeys}
|
|
readOnly={readOnly}
|
|
setOptions={{ enableLinking: true }}
|
|
showGutter={showGutter}
|
|
showPrintMargin={false}
|
|
theme="fleet"
|
|
value={value}
|
|
width="100%"
|
|
wrapEnabled={wrapEnabled}
|
|
commands={[
|
|
{
|
|
name: "commandName",
|
|
bindKey: { win: "Ctrl-Enter", mac: "Ctrl-Enter" },
|
|
exec: handleSubmit,
|
|
},
|
|
{
|
|
name: "deleteSelection",
|
|
bindKey: { win: "Delete", mac: "Delete" },
|
|
exec: () => handleDelete("del"),
|
|
},
|
|
{
|
|
name: "backspaceSelection",
|
|
bindKey: { win: "Backspace", mac: "Backspace" },
|
|
exec: () => handleDelete("backspace"),
|
|
},
|
|
]}
|
|
/>
|
|
{renderHint()}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default FleetAce;
|