mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
120 lines
2.7 KiB
JavaScript
120 lines
2.7 KiB
JavaScript
import React, { Component } from "react";
|
|
import PropTypes from "prop-types";
|
|
import AceEditor from "react-ace";
|
|
import classnames from "classnames";
|
|
import "brace/mode/sql";
|
|
import "brace/ext/linking";
|
|
import "brace/ext/language_tools";
|
|
|
|
import "./mode";
|
|
import "./theme";
|
|
|
|
const baseClass = "fleet-ace";
|
|
|
|
class FleetAce extends Component {
|
|
static propTypes = {
|
|
error: PropTypes.string,
|
|
fontSize: PropTypes.number,
|
|
handleSubmit: PropTypes.func,
|
|
label: PropTypes.string,
|
|
name: PropTypes.string,
|
|
onChange: PropTypes.func,
|
|
onLoad: PropTypes.func,
|
|
value: PropTypes.string,
|
|
readOnly: PropTypes.bool,
|
|
showGutter: PropTypes.bool,
|
|
wrapEnabled: PropTypes.bool,
|
|
wrapperClassName: PropTypes.string,
|
|
hint: PropTypes.string,
|
|
};
|
|
|
|
static defaultProps = {
|
|
fontSize: 14,
|
|
name: "query-editor",
|
|
showGutter: true,
|
|
wrapEnabled: false,
|
|
};
|
|
|
|
renderLabel = () => {
|
|
const { error, label } = this.props;
|
|
|
|
const labelClassName = classnames(`${baseClass}__label`, {
|
|
[`${baseClass}__label--error`]: error,
|
|
});
|
|
|
|
return <p className={labelClassName}>{error || label}</p>;
|
|
};
|
|
|
|
renderHint = () => {
|
|
const { hint } = this.props;
|
|
|
|
if (hint) {
|
|
return <span className={`${baseClass}__hint`}>{hint}</span>;
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
error,
|
|
fontSize,
|
|
handleSubmit,
|
|
name,
|
|
onChange,
|
|
onLoad,
|
|
readOnly,
|
|
showGutter,
|
|
value,
|
|
wrapEnabled,
|
|
wrapperClassName,
|
|
} = this.props;
|
|
const { renderLabel, renderHint } = this;
|
|
|
|
const wrapperClass = classnames(wrapperClassName, {
|
|
[`${baseClass}__wrapper--error`]: error,
|
|
});
|
|
|
|
const fixHotkeys = (editor) => {
|
|
editor.commands.removeCommands(["gotoline", "find"]);
|
|
onLoad && onLoad(editor);
|
|
};
|
|
|
|
return (
|
|
<div className={wrapperClass}>
|
|
{renderLabel()}
|
|
<AceEditor
|
|
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,
|
|
},
|
|
]}
|
|
/>
|
|
{renderHint()}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default FleetAce;
|