const React = require('react'); const createClass = require('create-react-class'); const _ = require('lodash'); const cx = require('classnames'); const moment = require('moment'); const UIPage = require('../basePages/uiPage/uiPage.jsx'); const Nav = require('naturalcrit/nav/nav.jsx'); const Navbar = require('../../navbar/navbar.jsx'); const RecentNavItem = require('../../navbar/recent.navitem.jsx').both; const Account = require('../../navbar/account.navitem.jsx'); const NewBrew = require('../../navbar/newbrew.navitem.jsx'); const HelpNavItem = require('../../navbar/help.navitem.jsx'); const NaturalCritIcon = require('naturalcrit/svg/naturalcrit.svg.jsx'); const saveLocationKey = 'HOMEBREWERY-DEFAULT-SAVE-LOCATION'; const AccountPage = createClass({ displayName : 'AccountPage', getDefaultProps : function() { return { brew : {}, uiItems : {} }; }, getInitialState : function() { return { uiItems : this.props.uiItems }; }, componentDidMount : function(){ if(!this.state.saveLocation) { const saveLocation = window.localStorage.getItem(saveLocationKey) || ''; if(saveLocation == '') { // TO DO: Implement logic to determine the appropriate location given current state console.log(this.state.uiItems); }; this.setState({ saveLocation : saveLocation }); } }, makeActive : function(newSelection){ if(this.state.saveLocation == newSelection) return; window.localStorage.setItem(saveLocationKey, newSelection); this.setState({ saveLocation : newSelection }); }, renderButton : function(name, key, condition=true){ if(!condition) return; return ; }, renderNavItems : function() { return ; }, renderUiItems : function() { return <>

Account Information

Username: {this.props.uiItems.username || 'No user currently logged in'}

Last Login: {moment(this.props.uiItems.issued).format('dddd, MMMM Do YYYY, h:mm:ss a ZZ') || '-'}

Default Save Location

{/* */} {this.renderButton('Homebrewery', 'HOMEBREWERY')} {/* {this.state.uiItems.googleId ? : <>} */} {this.renderButton('Google Drive', 'GOOGLE-DRIVE', this.state.uiItems.username)}

Homebrewery Information

Brews on Homebrewery: {this.props.uiItems.mongoCount}

Google Information

Linked to Google: {this.props.uiItems.googleId ? 'YES' : 'NO'}

{this.props.uiItems.googleId &&

Brews on Google Drive: {this.props.uiItems.googleCount ?? <>Unable to retrieve files - follow these steps to renew your Google credentials.}

}
; }, render : function(){ return {this.renderUiItems()} ; } }); module.exports = AccountPage;