Gazebo_simulation-Frontend/node_modules/.cache/babel-loader/55f67f58807aec5b886aca73a0b...

1 line
37 KiB
JSON

{"ast":null,"code":"import _regeneratorRuntime from \"/home/riddhi/simulation/Gazebo_simulation-Frontend/node_modules/babel-preset-react-app/node_modules/@babel/runtime/regenerator\";\nimport _asyncToGenerator from \"/home/riddhi/simulation/Gazebo_simulation-Frontend/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/asyncToGenerator\";\nimport _classCallCheck from \"/home/riddhi/simulation/Gazebo_simulation-Frontend/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/classCallCheck\";\nimport _createClass from \"/home/riddhi/simulation/Gazebo_simulation-Frontend/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/createClass\";\nimport _possibleConstructorReturn from \"/home/riddhi/simulation/Gazebo_simulation-Frontend/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn\";\nimport _getPrototypeOf from \"/home/riddhi/simulation/Gazebo_simulation-Frontend/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/getPrototypeOf\";\nimport _inherits from \"/home/riddhi/simulation/Gazebo_simulation-Frontend/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/inherits\";\nimport _assertThisInitialized from \"/home/riddhi/simulation/Gazebo_simulation-Frontend/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/assertThisInitialized\";\nvar _jsxFileName = \"/home/riddhi/simulation/Gazebo_simulation-Frontend/src/components/App.js\";\nimport React, { Component } from 'react';\nimport Navigationbar from './Navigationbar';\nimport Comp_image from './Comp_image';\nimport { Redirect, withRouter, Route, NavLink, Navbar, BrowserRouter as Router, Switch } from 'react-router-dom';\nimport './App.css';\nimport header from '../images/spiri_logo.jpg';\nimport logo from '../images/spiri.png'; // Tell Webpack this JS file uses this image\n\nimport { withCookies } from 'react-cookie';\nimport { confirmAlert } from 'react-confirm-alert'; // Import\n\nimport 'react-confirm-alert/src/react-confirm-alert.css'; // Import css\n\nimport axios from 'axios';\nimport LoadingOverlay from 'react-loading-overlay';\nimport { thisExpression } from '@babel/types'; //import { withAuth } from '@okta/okta-react';\n\nvar App = /*#__PURE__*/function (_Component) {\n _inherits(App, _Component);\n\n function App(props) {\n var _this;\n\n _classCallCheck(this, App);\n\n _this = _possibleConstructorReturn(this, _getPrototypeOf(App).call(this, props));\n _this.state = {\n isLoading: false,\n isAuthenticated: false,\n user: undefined,\n launch: false,\n isNavbar: false\n };\n var cookies = props.cookies;\n console.log(cookies);\n _this.state.csrfToken = cookies.get('XSRF-TOKEN');\n console.log(_this.state.csrfToken);\n _this.local = \"localhost:8080\";\n _this.prod = \"174.138.41.124:8080\";\n _this.status = \"local\";\n\n if (_this.status === \"local\") {\n _this.ip = _this.local;\n }\n\n _this.yourOktaDomain = \"dev-125890.okta.com\";\n _this.simulatorWindow = null;\n _this.shellWindow = null;\n _this.routeLogin = _this.routeLogin.bind(_assertThisInitialized(_assertThisInitialized(_this)));\n _this.login = _this.login.bind(_assertThisInitialized(_assertThisInitialized(_this)));\n _this.logout = _this.logout.bind(_assertThisInitialized(_assertThisInitialized(_this)));\n _this.routeMain = _this.routeMain.bind(_assertThisInitialized(_assertThisInitialized(_this)));\n _this.submit = _this.submit.bind(_assertThisInitialized(_assertThisInitialized(_this)));\n _this.getSimulator = _this.settingsSimulator.bind(_assertThisInitialized(_assertThisInitialized(_this)));\n _this.launchSimulator = _this.launchSimulator.bind(_assertThisInitialized(_assertThisInitialized(_this)));\n _this.attach = _this.attach.bind(_assertThisInitialized(_assertThisInitialized(_this)));\n _this.heartbeat = _this.heartbeat.bind(_assertThisInitialized(_assertThisInitialized(_this)));\n _this.wait = _this.wait.bind(_assertThisInitialized(_assertThisInitialized(_this)));\n return _this;\n }\n\n _createClass(App, [{\n key: \"componentDidMount\",\n value: function () {\n var _componentDidMount = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {\n var response, body;\n return _regeneratorRuntime.wrap(function _callee$(_context) {\n while (1) {\n switch (_context.prev = _context.next) {\n case 0:\n console.log(\"hereeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee\");\n _context.next = 3;\n return fetch(\"http://\".concat(this.ip, \"/api/user\"), {\n credentials: 'include'\n });\n\n case 3:\n response = _context.sent;\n console.log(response.ok);\n console.log(\"999999999999999999999999999999999999999\");\n _context.next = 8;\n return response.text();\n\n case 8:\n body = _context.sent;\n console.log(\"-----------------------\");\n console.log(response.ok);\n console.log(\"-----------------------\");\n\n if (body === '') {\n this.setState({\n isAuthenticated: false\n });\n } else {\n this.setState({\n isAuthenticated: true,\n user: JSON.parse(body)\n });\n }\n\n console.log(this.state.isAuthenticated);\n console.log(this.state.user);\n console.log(\"########################################\");\n console.log(this.state.isAuthenticated);\n\n case 17:\n case \"end\":\n return _context.stop();\n }\n }\n }, _callee, this);\n }));\n\n function componentDidMount() {\n return _componentDidMount.apply(this, arguments);\n }\n\n return componentDidMount;\n }()\n }, {\n key: \"routeMain\",\n value: function routeMain() {\n var path = '/';\n this.props.history.push(path);\n }\n }, {\n key: \"login\",\n value: function login() {\n console.log(window.location);\n window.location.href = \"//\".concat(this.ip, \"/task/list\"); //window.location.href = `//${this.ip}/private`;\n }\n }, {\n key: \"wait\",\n value: function wait(ms) {\n var start = new Date().getTime();\n var end = start;\n\n while (end < start + ms) {\n end = new Date().getTime();\n }\n }\n }, {\n key: \"routeLogin\",\n value: function routeLogin() {\n var path = '/';\n this.props.history.push(path);\n } //http://174.138.41.124:8080/api/logout\n //https://${this.yourOktaDomain}/api/v1/users/${this.state.user.sub}/sessions\n\n }, {\n key: \"logout\",\n value: function () {\n var _logout = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {\n var _this2 = this;\n\n return _regeneratorRuntime.wrap(function _callee2$(_context2) {\n while (1) {\n switch (_context2.prev = _context2.next) {\n case 0:\n //const proxyurl = `https://cors-anywhere.herokuapp.com/`;\n //const proxyurl = `https://arcane-beach-51923.herokuapp.com/`;\n //fetch(`https://${this.yourOktaDomain}/api/v1/users/${this.state.user.sub}/sessions`,\n fetch(\"https://\".concat(this.yourOktaDomain, \"/api/v1/sessions/me\"), {\n method: 'DELETE',\n //credentials: 'same-origin'\n credentials: 'include'\n }).then(function (response) {\n return response;\n }).then(function (json) {\n console.log('Gotcha');\n console.log(json.status === 204);\n console.log(json.status);\n console.log(_this2.state.isAuthenticated);\n\n if (json.status === 204) {\n _this2.state.isAuthenticated = false;\n\n _this2.routeMain();\n }\n\n if (json.status === 200) {\n _this2.state.isAuthenticated = false;\n\n _this2.routeMain();\n }\n\n console.log(_this2.state.isAuthenticated);\n }).then(function (reponse) {\n window.location.href = \"http://localhost:8080/api/logout\";\n }).then(function (reponse) {\n _this2.wait(3000);\n\n window.location.href = \"http://localhost:3000/\";\n }); //window.location.href = `http://localhost:8080/api/logout`;\n\n console.log(\"YYYYYYYYYYYYYYYYYYYYYYYYYY\");\n console.log(\"YYYYYYYYYYYYYYYYYYYYYYYYYY\");\n\n case 3:\n case \"end\":\n return _context2.stop();\n }\n }\n }, _callee2, this);\n }));\n\n function logout() {\n return _logout.apply(this, arguments);\n }\n\n return logout;\n }()\n }, {\n key: \"submit\",\n value: function submit() {\n var _this3 = this;\n\n confirmAlert({\n title: 'Confirm to logout',\n message: 'Are you sure?',\n buttons: [{\n label: 'Yes',\n onClick: function onClick() {\n return _this3.logout();\n }\n }, {\n label: 'No',\n onClick: function onClick() {\n return _this3.routeMain();\n }\n }]\n });\n }\n }, {\n key: \"attach\",\n value: function attach() {\n var _this4 = this;\n\n this.timer = setInterval(function () {\n return _this4.heartbeat();\n }, 10000);\n }\n }, {\n key: \"heartbeat\",\n value: function () {\n var _heartbeat = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee3() {\n return _regeneratorRuntime.wrap(function _callee3$(_context3) {\n while (1) {\n switch (_context3.prev = _context3.next) {\n case 0:\n fetch(\"http://\".concat(this.ip, \"/simulator/logheartbeat/\").concat(this.state.user.sub), {\n credentials: 'include'\n }).then(function (response) {\n return response.json();\n }).then(function (responseData) {\n console.log(\"Heart Beating\");\n }).catch(function (error) {\n console.error(error);\n });\n\n case 1:\n case \"end\":\n return _context3.stop();\n }\n }\n }, _callee3, this);\n }));\n\n function heartbeat() {\n return _heartbeat.apply(this, arguments);\n }\n\n return heartbeat;\n }()\n }, {\n key: \"launchSimulator\",\n value: function launchSimulator(urlAction) {\n //launchSimulator() {\n var url = urlAction; //const url = \"http://localhost\";\n\n window.location.href = \"http://localhost:3000/simulator\"; //this.simulatorWindow = window.open(url + \":8888\", '_blank');\n //this.shellWindow = window.open(url + \":4200\", '_self');\n }\n }, {\n key: \"settingsSimulator\",\n value: function settingsSimulator(launch) {\n var _this5 = this;\n\n if (launch) {\n var httpClient = axios.create();\n httpClient.defaults.timeout = 600000; // TODO : detach the heartbeat\n\n httpClient.get(\"http://\".concat(this.ip, \"/simulator/stop/\").concat(this.state.user.sub), {\n withCredentials: true\n }).then(function (res) {\n _this5.setState({\n launch: false\n });\n });\n } else {\n this.setState({\n isLoading: true,\n launch: true\n });\n this.attach(this.state.launch);\n\n var _httpClient = axios.create();\n\n _httpClient.defaults.timeout = 600000;\n\n _httpClient.get(\"http://\".concat(this.ip, \"/simulator/start/\").concat(this.state.user.sub, \"/\").concat(this.state.user.given_name, \"/spiri-friend2019@\"), {\n withCredentials: true\n }).then(function (res) {\n _this5.setState({\n simulator: res.data,\n isLoading: false\n });\n\n _this5.launchSimulator(_this5.state.simulator.publicIp);\n }); //this.launchSimulator();\n\n }\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this6 = this;\n\n var options = this.state.isAuthenticated ? /*#__PURE__*/React.createElement(\"div\", {\n id: \"navbar\",\n class: \"navbar-collapse\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 220,\n columnNumber: 5\n }\n }, /*#__PURE__*/React.createElement(\"ul\", {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 221,\n columnNumber: 25\n }\n }, /*#__PURE__*/React.createElement(Navigationbar, {\n submit: this.submit,\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 222,\n columnNumber: 27\n }\n }))) : /*#__PURE__*/React.createElement(\"div\", {\n id: \"navbar\",\n class: \"navbar-collapse\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 230,\n columnNumber: 21\n }\n }, /*#__PURE__*/React.createElement(\"div\", {\n class: \"SpiriHeader\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 231,\n columnNumber: 21\n }\n }, /*#__PURE__*/React.createElement(\"a\", {\n class: \"Brand\",\n href: \"/\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 232,\n columnNumber: 35\n }\n }, /*#__PURE__*/React.createElement(\"img\", {\n align: \"left\",\n src: header,\n width: '70cm',\n height: '70cm',\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 233,\n columnNumber: 37\n }\n }))), /*#__PURE__*/React.createElement(\"ul\", {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 236,\n columnNumber: 21\n }\n }, /*#__PURE__*/React.createElement(\"li\", {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 237,\n columnNumber: 23\n }\n }, /*#__PURE__*/React.createElement(NavLink, {\n style: {\n textDecoration: 'none'\n },\n onClick: this.login,\n class: \"login\",\n to: \"\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 238,\n columnNumber: 27\n }\n }, \"Login\"))));\n var simulator = this.state.isAuthenticated ? /*#__PURE__*/React.createElement(\"div\", {\n class: \"SimulatorButton\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 248,\n columnNumber: 15\n }\n }, /*#__PURE__*/React.createElement(\"button\", {\n className: \"SimulatorButton\",\n onClick: function onClick() {\n _this6.settingsSimulator(_this6.state.launch);\n },\n disabled: this.state.isLoading,\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 250,\n columnNumber: 17\n }\n }, this.state.isLoading && /*#__PURE__*/React.createElement(\"i\", {\n className: \"fa fa-refresh fa-spin\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 253,\n columnNumber: 48\n }\n }), !this.state.launch && /*#__PURE__*/React.createElement(\"span\", {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 254,\n columnNumber: 46\n }\n }, \" Launch Simulator \"), this.state.launch && /*#__PURE__*/React.createElement(\"span\", {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 255,\n columnNumber: 45\n }\n }, \" Stop Simulator \"))) : null;\n var mainBody = /*#__PURE__*/React.createElement(\"div\", {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 261,\n columnNumber: 24\n }\n }, options, simulator, /*#__PURE__*/React.createElement(\"div\", {\n class: \"SpiriImage\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 265,\n columnNumber: 9\n }\n }, /*#__PURE__*/React.createElement(\"img\", {\n src: logo,\n width: '1000cm',\n height: '563cm',\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 266,\n columnNumber: 13\n }\n })), /*#__PURE__*/React.createElement(\"div\", {\n className: \"Text\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 268,\n columnNumber: 9\n }\n }, /*#__PURE__*/React.createElement(Comp_image, {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 269,\n columnNumber: 13\n }\n })), /*#__PURE__*/React.createElement(\"footer\", {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 271,\n columnNumber: 9\n }\n }));\n return /*#__PURE__*/React.createElement(\"div\", {\n className: \"App\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 278,\n columnNumber: 9\n }\n }, mainBody);\n }\n }]);\n\n return App;\n}(Component);\n\nexport default withRouter(withCookies(App));","map":{"version":3,"sources":["/home/riddhi/simulation/Gazebo_simulation-Frontend/src/components/App.js"],"names":["React","Component","Navigationbar","Comp_image","Redirect","withRouter","Route","NavLink","Navbar","BrowserRouter","Router","Switch","header","logo","withCookies","confirmAlert","axios","LoadingOverlay","thisExpression","App","props","state","isLoading","isAuthenticated","user","undefined","launch","isNavbar","cookies","console","log","csrfToken","get","local","prod","status","ip","yourOktaDomain","simulatorWindow","shellWindow","routeLogin","bind","login","logout","routeMain","submit","getSimulator","settingsSimulator","launchSimulator","attach","heartbeat","wait","fetch","credentials","response","ok","text","body","setState","JSON","parse","path","history","push","window","location","href","ms","start","Date","getTime","end","method","then","json","reponse","title","message","buttons","label","onClick","timer","setInterval","sub","responseData","catch","error","urlAction","url","httpClient","create","defaults","timeout","withCredentials","res","given_name","simulator","data","publicIp","options","textDecoration","mainBody"],"mappings":"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","sourcesContent":["import React, { Component } from 'react';\nimport Navigationbar from './Navigationbar';\nimport Comp_image from './Comp_image';\nimport { Redirect, withRouter, Route, NavLink, Navbar, BrowserRouter as Router, Switch } from 'react-router-dom'\nimport './App.css';\nimport header from '../images/spiri_logo.jpg';\nimport logo from '../images/spiri.png';// Tell Webpack this JS file uses this image\nimport { withCookies } from 'react-cookie';\nimport { confirmAlert } from 'react-confirm-alert'; // Import\nimport 'react-confirm-alert/src/react-confirm-alert.css'; // Import css\nimport axios from 'axios';\nimport LoadingOverlay from 'react-loading-overlay';\nimport { thisExpression } from '@babel/types';\n//import { withAuth } from '@okta/okta-react';\n\n\nclass App extends Component{\n state = {\n isLoading: false,\n isAuthenticated: false,\n user: undefined,\n launch: false,\n isNavbar: false\n };\n\n constructor(props){\n super(props);\n const {cookies} = props;\n console.log(cookies);\n this.state.csrfToken = cookies.get('XSRF-TOKEN');\n console.log(this.state.csrfToken);\n this.local = \"localhost:8080\";\n this.prod = \"174.138.41.124:8080\";\n this.status = \"local\"\n if (this.status === \"local\") {\n this.ip = this.local;\n }\n this.yourOktaDomain = \"dev-125890.okta.com\";\n this.simulatorWindow = null;\n this.shellWindow = null;\n this.routeLogin = this.routeLogin.bind(this);\n this.login = this.login.bind(this);\n this.logout = this.logout.bind(this);\n this.routeMain =this.routeMain.bind(this);\n this.submit = this.submit.bind(this);\n this.getSimulator = this.settingsSimulator.bind(this);\n this.launchSimulator = this.launchSimulator.bind(this);\n this.attach = this.attach.bind(this);\n this.heartbeat = this.heartbeat.bind(this);\n this.wait = this.wait.bind(this);\n }\n\n async componentDidMount() {\n console.log(\"hereeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee\");\n const response = await fetch(`http://${this.ip}/api/user`, {credentials: 'include'});\n console.log(response.ok);\n console.log(\"999999999999999999999999999999999999999\");\n const body = await response.text();\n console.log(\"-----------------------\");\n console.log(response.ok)\n console.log(\"-----------------------\");\n if (body === '') {\n this.setState(({isAuthenticated: false}))\n } else {\n this.setState({isAuthenticated: true, user: JSON.parse(body)})\n }\n console.log(this.state.isAuthenticated);\n \n console.log(this.state.user);\n console.log(\"########################################\");\n console.log(this.state.isAuthenticated);\n }\n\n routeMain() {\n let path = '/';\n this.props.history.push(path);\n }\n\n login() {\n console.log(window.location)\n window.location.href = `//${this.ip}/task/list`;\n //window.location.href = `//${this.ip}/private`;\n }\n wait(ms){\n var start = new Date().getTime();\n var end = start;\n while(end < start + ms) {\n end = new Date().getTime();\n }\n }\n\n routeLogin() {\n let path = '/';\n this.props.history.push(path);\n }\n\n //http://174.138.41.124:8080/api/logout\n //https://${this.yourOktaDomain}/api/v1/users/${this.state.user.sub}/sessions\n \n async logout() { \n //const proxyurl = `https://cors-anywhere.herokuapp.com/`;\n //const proxyurl = `https://arcane-beach-51923.herokuapp.com/`;\n \n //fetch(`https://${this.yourOktaDomain}/api/v1/users/${this.state.user.sub}/sessions`,\n fetch(`https://${this.yourOktaDomain}/api/v1/sessions/me`,\n {\n method : 'DELETE',\n //credentials: 'same-origin'\n credentials: 'include',\n })\n .then((response) => response) \n .then((json) => {\n console.log('Gotcha');\n console.log(json.status === 204);\n console.log(json.status);\n console.log(this.state.isAuthenticated);\n if (json.status === 204) {\n this.state.isAuthenticated = false;\n this.routeMain();\n }\n if (json.status === 200) {\n this.state.isAuthenticated = false;\n this.routeMain();\n }\n console.log(this.state.isAuthenticated);\n })\n .then(reponse => {\n window.location.href = \"http://localhost:8080/api/logout\";\n })\n .then(reponse => {\n this.wait(3000);\n window.location.href = \"http://localhost:3000/\";\n });\n\n \n\n //window.location.href = `http://localhost:8080/api/logout`;\n \n console.log(\"YYYYYYYYYYYYYYYYYYYYYYYYYY\");\n console.log(\"YYYYYYYYYYYYYYYYYYYYYYYYYY\");\n }\n\n submit() {\n confirmAlert({\n title: 'Confirm to logout',\n message: 'Are you sure?',\n buttons: [\n {\n label: 'Yes',\n onClick: () => this.logout()\n },\n {\n label: 'No',\n onClick: () => this.routeMain()\n }\n ]\n });\n };\n\n \n attach() {\n this.timer = setInterval(()=> this.heartbeat(), 10000);\n }\n \n async heartbeat(){\n fetch(`http://${this.ip}/simulator/logheartbeat/${this.state.user.sub}`, {credentials: 'include'})\n .then((response) => response.json())\n .then((responseData) =>\n {\n \n console.log(\"Heart Beating\")\n })\n .catch((error) => {\n console.error(error);\n });\n }\n\n launchSimulator(urlAction) {\n //launchSimulator() {\n const url = urlAction;\n //const url = \"http://localhost\";\n window.location.href = \"http://localhost:3000/simulator\";\n //this.simulatorWindow = window.open(url + \":8888\", '_blank');\n //this.shellWindow = window.open(url + \":4200\", '_self');\n }\n\n settingsSimulator(launch) {\n if (launch){\n const httpClient = axios.create();\n httpClient.defaults.timeout = 600000;\n \n // TODO : detach the heartbeat\n \n httpClient.get(`http://${this.ip}/simulator/stop/${this.state.user.sub}`, { withCredentials: true })\n .then(res => {\n this.setState({launch: false});\n })\n }\n else {\n this.setState({isLoading : true, launch: true});\n this.attach(this.state.launch);\n\n const httpClient = axios.create();\n httpClient.defaults.timeout = 600000;\n\n httpClient.get(`http://${this.ip}/simulator/start/${this.state.user.sub}/${this.state.user.given_name}/spiri-friend2019@`, { withCredentials: true })\n .then(res => {\n this.setState({simulator: res.data, isLoading: false});\n this.launchSimulator(this.state.simulator.publicIp);\n })\n //this.launchSimulator();\n }\n \n }\n \n \n\n render() {\n const options = this.state.isAuthenticated ? (\n <div id=\"navbar\" class=\"navbar-collapse\">\n <ul>\n <Navigationbar submit={this.submit}/>\n \n\n </ul>\n </div> \n ):(\n \n \n <div id=\"navbar\" class=\"navbar-collapse\">\n <div class=\"SpiriHeader\">\n <a class=\"Brand\" href=\"/\">\n <img align=\"left\" src={header} width={'70cm'} height={'70cm'} /> \n </a> \n </div> \n <ul>\n <li>\n <NavLink style={{ textDecoration: 'none' }} onClick={this.login} class=\"login\" to=\"\">\n Login\n </NavLink>\n </li>\n </ul>\n </div>\n \n )\n \n const simulator = this.state.isAuthenticated ?\n <div class=\"SimulatorButton\">\n {/*<h2>Welcome, {this.state.user.name}!</h2>*/}\n < button className=\"SimulatorButton\" onClick={() =>{\n this.settingsSimulator(this.state.launch);\n }} disabled={this.state.isLoading} >\n {this.state.isLoading && <i className=\"fa fa-refresh fa-spin\"></i>}\n {!this.state.launch && <span> Launch Simulator </span> }\n {this.state.launch && <span> Stop Simulator </span> }\n </button>\n \n </div> :\n null\n \n const mainBody = <div>\n \n {options}\n {simulator}\n <div class=\"SpiriImage\">\n <img src={logo} width={'1000cm'} height={'563cm'} />\n </div>\n <div className=\"Text\">\n <Comp_image/>\n </div>\n <footer>\n </footer> \n </div>\n\n \n return (\n \n <div className=\"App\">\n \n \n {mainBody}\n \n </div>\n )\n\n };\n}\nexport default withRouter(withCookies(App));\n"]},"metadata":{},"sourceType":"module"}