1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-10 09:02:49 +00:00

UI Overhaul

This commit is contained in:
2018-08-19 18:17:40 -05:00
parent 5fedcd4b40
commit e593472c84
58 changed files with 633 additions and 685 deletions

29
client/app/wrapper.tsx Normal file
View File

@@ -0,0 +1,29 @@
import { inject, observer } from 'mobx-react';
import React from 'react';
import { withRouter } from 'react-router';
import { Header, Navbar } from './components';
//styling
import './scss/index.scss';
import { Util } from './util';
import './wrapper.scss';
export const Wrapper = inject('appStore')(
withRouter(
observer(({ appStore, children }) => {
const openClass = appStore.navbarOpen ? 'wrapper--open' : '';
const onNavClick = () => {
if (Util.isMobileScreen()) {
appStore.toggleNavbar();
}
};
return (
<div>
<Header onButtonClick={appStore.toggleNavbar} />
<Navbar claims={appStore.claims} open={appStore.navbarOpen} onNavClick={onNavClick} />
<div className={'wrapper ' + openClass}>{children}</div>
</div>
);
}),
),
);