mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 20:42:43 +00:00
97 lines
3.1 KiB
JavaScript
97 lines
3.1 KiB
JavaScript
require('./homebrew.less');
|
|
const React = require('react');
|
|
const createClass = require('create-react-class');
|
|
const { StaticRouter:Router } = require('react-router-dom/server');
|
|
const { Route, Routes, useParams, useSearchParams } = require('react-router-dom');
|
|
|
|
const HomePage = require('./pages/homePage/homePage.jsx');
|
|
const EditPage = require('./pages/editPage/editPage.jsx');
|
|
const UserPage = require('./pages/userPage/userPage.jsx');
|
|
const SharePage = require('./pages/sharePage/sharePage.jsx');
|
|
const NewPage = require('./pages/newPage/newPage.jsx');
|
|
//const ErrorPage = require('./pages/errorPage/errorPage.jsx');
|
|
const PrintPage = require('./pages/printPage/printPage.jsx');
|
|
|
|
const WithRoute = (props)=>{
|
|
const params = useParams();
|
|
const [searchParams] = useSearchParams();
|
|
const queryParams = {};
|
|
for (const [key, value] of searchParams?.entries() || []) {
|
|
queryParams[key] = value;
|
|
}
|
|
const Element = props.el;
|
|
const allProps = {
|
|
...props,
|
|
...params,
|
|
query : queryParams,
|
|
el : undefined
|
|
};
|
|
return <Element {...allProps} />;
|
|
};
|
|
|
|
const Homebrew = createClass({
|
|
displayName : 'Homebrewery',
|
|
getDefaultProps : function() {
|
|
return {
|
|
url : '',
|
|
welcomeText : '',
|
|
changelog : '',
|
|
version : '0.0.0',
|
|
account : null,
|
|
enable_v3 : false,
|
|
brew : {
|
|
title : '',
|
|
text : '',
|
|
shareId : null,
|
|
editId : null,
|
|
createdAt : null,
|
|
updatedAt : null,
|
|
}
|
|
};
|
|
},
|
|
|
|
getInitialState : function() {
|
|
global.account = this.props.account;
|
|
global.version = this.props.version;
|
|
global.enable_v3 = this.props.enable_v3;
|
|
global.enable_themes = this.props.enable_themes;
|
|
global.config = this.props.config;
|
|
|
|
return {};
|
|
},
|
|
|
|
render : function (){
|
|
return <Router location={this.props.url}>
|
|
<div className='homebrew'>
|
|
<Routes>
|
|
<Route path='/edit/:id' element={<WithRoute el={EditPage} brew={this.props.brew} />} />
|
|
<Route path='/share/:id' element={<WithRoute el={SharePage} brew={this.props.brew} />} />
|
|
<Route path='/new/:id' element={<WithRoute el={NewPage} brew={this.props.brew} />} />
|
|
<Route path='/new' element={<WithRoute el={NewPage}/>} />
|
|
<Route path='/user/:username' element={<WithRoute el={UserPage} brews={this.props.brews} />} />
|
|
<Route path='/print/:id' element={<WithRoute el={PrintPage} brew={this.props.brew} />} />
|
|
<Route path='/print' element={<WithRoute el={PrintPage} />} />
|
|
<Route path='/changelog' element={<WithRoute el={SharePage} brew={this.props.brew} />} />
|
|
<Route path='/faq' element={<WithRoute el={SharePage} brew={this.props.brew} />} />
|
|
<Route path='/legacy' element={<WithRoute el={HomePage} brew={this.props.brew} />} />
|
|
<Route path='/' element={<WithRoute el={HomePage} brew={this.props.brew} />} />
|
|
<Route path='/*' element={<WithRoute el={HomePage} brew={this.props.brew} />} />
|
|
</Routes>
|
|
</div>
|
|
</Router>;
|
|
}
|
|
});
|
|
|
|
module.exports = Homebrew;
|
|
|
|
//TODO: Nicer Error page instead of just "cant get that"
|
|
// '/share/:id' : (args)=>{
|
|
// if(!this.props.brew.shareId){
|
|
// return <ErrorPage errorId={args.id}/>;
|
|
// }
|
|
//
|
|
// return <SharePage
|
|
// id={args.id}
|
|
// brew={this.props.brew} />;
|
|
// },
|