engines in create script tab

This commit is contained in:
Jan Prochazka
2020-03-03 08:01:24 +01:00
parent a4a470de45
commit 17e2c18c49
5 changed files with 69 additions and 38 deletions

View File

@@ -1,45 +1,18 @@
import React from 'react';
import useFetch from '../utility/useFetch';
import styled from 'styled-components';
import theme from '../theme';
import AceEditor from 'react-ace';
import useDimensions from '../utility/useDimensions';
import engines from '@dbgate/engines';
import useTableInfo from '../utility/useTableInfo';
const Wrapper = styled.div`
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
`;
import useConnectionInfo from '../utility/useConnectionInfo';
import SqlEditor from '../sqleditor/SqlEditor';
export default function TableCreateScriptTab({ conid, database, schemaName, pureName }) {
const [containerRef, { height, width }] = useDimensions();
const tableInfo = useTableInfo({ conid, database, schemaName, pureName });
const connnection = useConnectionInfo(conid);
if (!connnection || !tableInfo) return null;
// console.log(tableInfo);
console.log(tableInfo);
const driver = engines('mssql');
const driver = engines(connnection.engine);
const dumper = driver.createDumper();
if (tableInfo) dumper.createTable(tableInfo);
return (
<Wrapper ref={containerRef}>
<AceEditor
mode="sql"
theme="github"
// onChange={onChange}
name="UNIQUE_ID_OF_DIV"
editorProps={{ $blockScrolling: true }}
value={dumper.s}
readOnly
fontSize="11pt"
width={`${width}px`}
height={`${height}px`}
/>
</Wrapper>
);
return <SqlEditor engine={connnection && connnection.engine} value={dumper.s} />;
}