lemmy-ui/src/shared/components/app.tsx

64 lines
1.9 KiB
TypeScript
Raw Normal View History

import { Component } from 'inferno';
import { Route, Switch } from 'inferno-router';
import { Provider } from 'inferno-i18next';
2020-09-11 18:09:21 +00:00
import { Helmet } from 'inferno-helmet';
import { i18n } from '../i18next';
2020-11-10 18:24:47 +00:00
import { routes } from '../routes';
import { Navbar } from './navbar';
import { Footer } from './footer';
import { NoMatch } from './no-match';
2020-10-26 14:28:17 +00:00
import { Theme } from './theme';
2020-11-10 18:24:47 +00:00
import { Symbols } from './symbols';
import { GetSiteResponse } from 'lemmy-js-client';
import './styles.scss';
export interface AppProps {
2020-12-24 01:58:27 +00:00
siteRes: GetSiteResponse;
}
export class App extends Component<AppProps, any> {
constructor(props: any, context: any) {
super(props, context);
}
render() {
2020-12-24 01:58:27 +00:00
let siteRes = this.props.siteRes;
return (
<>
<Provider i18next={i18n}>
<div>
2020-12-24 01:58:27 +00:00
<Theme user={siteRes.my_user} />
{siteRes &&
siteRes.site_view &&
2020-12-24 01:58:27 +00:00
this.props.siteRes.site_view.site.icon && (
2020-09-15 15:55:38 +00:00
<Helmet>
<link
id="favicon"
rel="icon"
type="image/x-icon"
2020-12-24 01:58:27 +00:00
href={this.props.siteRes.site_view.site.icon}
2020-09-15 15:55:38 +00:00
/>
</Helmet>
)}
2020-12-24 01:58:27 +00:00
<Navbar site_res={this.props.siteRes} />
<div class="mt-4 p-0 fl-1">
<Switch>
{routes.map(({ path, exact, component: C, ...rest }) => (
<Route
key={path}
path={path}
exact={exact}
render={props => <C {...props} {...rest} />}
/>
))}
2020-11-10 18:24:47 +00:00
<Route render={props => <NoMatch {...props} />} />
</Switch>
<Symbols />
</div>
2020-12-24 01:58:27 +00:00
<Footer site={this.props.siteRes} />
</div>
</Provider>
</>
);
}
}