Added "learning table" above main table to allow user to make machine start learning again
This commit is contained in:
parent
f94e14fc89
commit
18890fcbc0
100
react/src/App.js
100
react/src/App.js
@ -7,6 +7,7 @@ function App() {
|
||||
const [tableQuarry, setTableQuarry] = useState('');
|
||||
const [columns, setColumns] = useState('');
|
||||
const [results, setResults] = useState('');
|
||||
const [isVisible, setIsVisible] = useState(true);
|
||||
|
||||
const fetchDataFromAPI = async (dataset, table, column) => {
|
||||
try {
|
||||
@ -24,41 +25,80 @@ function App() {
|
||||
fetchDataFromAPI(datasetQuarry, tableQuarry, columns);
|
||||
};
|
||||
|
||||
const toggleVisibility = () => {
|
||||
setIsVisible(!isVisible);
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="container">
|
||||
<input
|
||||
className='dataset'
|
||||
type="text"
|
||||
placeholder="Dataset quarry"
|
||||
value={datasetQuarry}
|
||||
onChange={(e) => setDatasetQuarry(e.target.value)}
|
||||
/>
|
||||
<input
|
||||
className='table'
|
||||
type="text"
|
||||
placeholder="Table quarry"
|
||||
value={tableQuarry}
|
||||
onChange={(e) => setTableQuarry(e.target.value)}
|
||||
/>
|
||||
<div className="colums" id="columns-heigh">
|
||||
<body>
|
||||
{isVisible && <div className="container2">
|
||||
<div className='headerlearn'>
|
||||
<header>Learning tables</header>
|
||||
</div>
|
||||
<input
|
||||
className='datasetL'
|
||||
type="text"
|
||||
placeholder="Columns"
|
||||
value={columns}
|
||||
onChange={(e) => setColumns(e.target.value)}
|
||||
placeholder="Dataset quarry"
|
||||
value={datasetQuarry}
|
||||
onChange={(e) => setDatasetQuarry(e.target.value)}
|
||||
/>
|
||||
<input
|
||||
className='tableL'
|
||||
type="text"
|
||||
placeholder="Table quarry"
|
||||
value={tableQuarry}
|
||||
onChange={(e) => setTableQuarry(e.target.value)}
|
||||
/>
|
||||
<div className="columsL" id="columns-heigh">
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Columns"
|
||||
value={columns}
|
||||
onChange={(e) => setColumns(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
</div>}
|
||||
<div className="container">
|
||||
<div className='headertest'>
|
||||
<header>Test tables</header>
|
||||
</div>
|
||||
<input
|
||||
className='dataset'
|
||||
type="text"
|
||||
placeholder="Dataset quarry"
|
||||
value={datasetQuarry}
|
||||
onChange={(e) => setDatasetQuarry(e.target.value)}
|
||||
/>
|
||||
<input
|
||||
className='table'
|
||||
type="text"
|
||||
placeholder="Table quarry"
|
||||
value={tableQuarry}
|
||||
onChange={(e) => setTableQuarry(e.target.value)}
|
||||
/>
|
||||
<div className="colums" id="columns-heigh">
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Columns"
|
||||
value={columns}
|
||||
onChange={(e) => setColumns(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
<button className='toggle' onClick={toggleVisibility}>
|
||||
Toggle more
|
||||
</button>
|
||||
<button className="test" type="button" onClick={handleButtonClick}>
|
||||
Test
|
||||
</button>
|
||||
<textarea
|
||||
className='Resoult'
|
||||
placeholder="Results"
|
||||
value={results}
|
||||
onChange={(e) => setResults(e.target.value)}
|
||||
></textarea>
|
||||
</div>
|
||||
<button className="test" type="button" onClick={handleButtonClick}>
|
||||
Test
|
||||
</button>
|
||||
<textarea
|
||||
className='Resoult'
|
||||
placeholder="Results"
|
||||
value={results}
|
||||
onChange={(e) => setResults(e.target.value)}
|
||||
></textarea>
|
||||
</div>
|
||||
</body>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
export default App;
|
Loading…
Reference in New Issue
Block a user