import React, {Component} from 'react'; import {Layout, Menu} from 'antd'; import GenerateJs from "./component/generateJs/GenerateJs"; import Deploy from '../common/deploy/Deploy'; import Schema from './component/schema/Schema'; import Graphql from "./component/graphql/Graphql"; import CaseMetabase from "./component/caseMetabase/CaseMetabase"; import axios from 'axios'; import {getIdUrl} from "../../config"; axios.defaults.withCredentials = true; const {Content} = Layout; class UserCreate extends Component { constructor(props) { super(props); this.state = { menuLevel2: "schema", userID: "", } } componentWillMount() { let _this = this; axios.get(getIdUrl) .then((res) => { if (res.data !== '') { _this.setState({ userID: res.data }) } }) .catch(function (err) { console.log(err); }); } switchMenu = (menuName, e) => { this.setState({ [menuName]: e.key, }); }; render() { let schemaID = this.props.history.location.state ? this.props.history.location.state.schemaID : "ecommerce_schemaID"; let schemaName = this.props.history.location.state ? this.props.history.location.state.schemaName : "ecommerce"; return (
this.switchMenu('menuLevel2', e)} selectedKeys={[this.state.menuLevel2]} > schema deploy graphql IDE template metabase { (() => { switch (this.state.menuLevel2) { case 'schema': return ; case 'deploy': return ; case 'graphiql': return ; case 'template': return ; case 'metabase': return ; default: return ; } })() }
) } } export default UserCreate;