2020-09-06 16:15:25 +00:00
|
|
|
import { Component } from 'inferno';
|
|
|
|
import { Route, Switch } from 'inferno-router';
|
2020-09-07 15:32:07 +00:00
|
|
|
import { Provider } from 'inferno-i18next';
|
2020-09-11 18:09:21 +00:00
|
|
|
import { Helmet } from 'inferno-helmet';
|
2020-09-07 15:32:07 +00:00
|
|
|
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';
|
2020-09-07 03:41:46 +00:00
|
|
|
import { GetSiteResponse } from 'lemmy-js-client';
|
|
|
|
import './styles.scss';
|
2020-09-06 16:15:25 +00:00
|
|
|
|
2020-09-07 03:41:46 +00:00
|
|
|
export interface AppProps {
|
2020-12-24 01:58:27 +00:00
|
|
|
siteRes: GetSiteResponse;
|
2020-09-07 03:41:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class App extends Component<AppProps, any> {
|
2020-09-06 16:15:25 +00:00
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
}
|
|
|
|
render() {
|
2020-12-24 01:58:27 +00:00
|
|
|
let siteRes = this.props.siteRes;
|
2020-09-06 16:15:25 +00:00
|
|
|
return (
|
|
|
|
<>
|
2020-09-07 15:32:07 +00:00
|
|
|
<Provider i18next={i18n}>
|
|
|
|
<div>
|
2020-12-24 01:58:27 +00:00
|
|
|
<Theme user={siteRes.my_user} />
|
|
|
|
{siteRes &&
|
|
|
|
siteRes.site_view.site &&
|
|
|
|
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} />
|
2020-09-07 15:32:07 +00:00
|
|
|
<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} />} />
|
2020-09-07 15:32:07 +00:00
|
|
|
</Switch>
|
|
|
|
<Symbols />
|
|
|
|
</div>
|
2020-12-24 01:58:27 +00:00
|
|
|
<Footer site={this.props.siteRes} />
|
2020-09-06 16:15:25 +00:00
|
|
|
</div>
|
2020-09-07 15:32:07 +00:00
|
|
|
</Provider>
|
2020-09-06 16:15:25 +00:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|