/* * << * Davinci * == * Copyright (C) 2016 - 2017 EDP * == * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * >> */ import React from 'react' import { Row, Col, Button, InputNumber, Tooltip, Popover, Tag } from 'antd' import Styles from '../View.less' export interface IEditorBottomProps { sqlLimit: number loading: boolean nextDisabled: boolean isLastExecuteWholeSql: boolean sqlFragment: string onSetSqlLimit: (limit: number) => void onExecuteSql: () => void onStepChange: (stepChange: number) => void } const stepChange = (onStepChange: IEditorBottomProps['onStepChange'], step: number) => () => { onStepChange(step) } export const EditorBottom = (props: IEditorBottomProps) => { const { sqlLimit, loading, nextDisabled, isLastExecuteWholeSql, sqlFragment, onSetSqlLimit, onExecuteSql, onStepChange } = props const STATUS_BTN_TEXT = !loading ? '执行' : '中止' const SELECT_CONTENT_BTN_TEXT = sqlFragment ? '选中内容' : '' const NEXT_DISABLED_AS_EXECUTE_FRAGMENT_TEXT = !isLastExecuteWholeSql ? '执行完整sql后可用' : '' const NEXT_DISABLED_AS_SQL_CHANGED_TEXT = nextDisabled ? '执行后下一步可用' : NEXT_DISABLED_AS_EXECUTE_FRAGMENT_TEXT const shortcutsContent = ( 执行 / 中止: Ctrl + Enter(Windows) Cmd + Enter(Mac OS) ) return ( 展示前 条数据 ) } export default React.memo(EditorBottom)