Attempt to at move app into app sub dir
This commit is contained in:
70
app/web/src/Routes.js
Normal file
70
app/web/src/Routes.js
Normal file
@@ -0,0 +1,70 @@
|
||||
// In this file, all Page components from 'src/pages` are auto-imported. Nested
|
||||
// directories are supported, and should be uppercase. Each subdirectory will be
|
||||
// prepended onto the component name.
|
||||
//
|
||||
// Examples:
|
||||
//
|
||||
// 'src/pages/HomePage/HomePage.js' -> HomePage
|
||||
// 'src/pages/Admin/BooksPage/BooksPage.js' -> AdminBooksPage
|
||||
import { useEffect } from 'react'
|
||||
import { Router, Route, Private } from '@redwoodjs/router'
|
||||
|
||||
const welcomeMessage = `
|
||||
%cHey, 👋.
|
||||
%c______________________________________________________________________________
|
||||
|
||||
%cCadHub is in active development - Want to lend a hand? %chttps://github.com/Irev-Dev/cadhub
|
||||
|
||||
%cOr get a sneak peak of work under construction? %chttps://cadhub.xyz/dev-ide
|
||||
|
||||
`
|
||||
|
||||
const Routes = () => {
|
||||
useEffect(
|
||||
() =>
|
||||
console.log(
|
||||
welcomeMessage,
|
||||
'font-family: Georgia, serif; font-weight:bold; line-height: 2rem; font-size: 32px; color: #3c366b',
|
||||
'font-size: 10px; color:#D3D3D3',
|
||||
'font-family: "Ropa Sans",Georgia, serif; font-size: 16px; line-height:3rem',
|
||||
'font-family: Helvetica Neue, sans-serif; font-size: 16px; line-height: 1.5rem; color:#gray',
|
||||
'font-family: "Ropa Sans",Georgia, serif; font-size: 16px; line-height:3rem',
|
||||
'font-family: Helvetica Neue, sans-serif; font-size: 16px; line-height: 1.5rem'
|
||||
),
|
||||
[]
|
||||
)
|
||||
return (
|
||||
<Router>
|
||||
<Route path="/dev-ide/{cadPackage}" page={DevIdePage} name="devIde" />
|
||||
<Route path="/policies/privacy-policy" page={PrivacyPolicyPage} name="privacyPolicy" />
|
||||
<Route path="/policies/code-of-conduct" page={CodeOfConductPage} name="codeOfConduct" />
|
||||
<Route path="/account-recovery/update-password" page={UpdatePasswordPage} name="updatePassword" />
|
||||
<Route path="/account-recovery" page={AccountRecoveryPage} name="accountRecovery" />
|
||||
<Route path="/" page={HomePage} name="home" prerender />
|
||||
<Route notfound page={NotFoundPage} />
|
||||
|
||||
{/* Ownership enforced routes */}
|
||||
<Route path="/u/{userName}/new" page={NewPartPage} name="newPart" />
|
||||
<Private unauthenticated="home" role="user">
|
||||
<Route path="/u/{userName}/edit" page={EditUserPage} name="editUser" />
|
||||
<Route path="/u/{userName}/{partTitle}/edit" page={EditPartPage} name="editPart" />
|
||||
</Private>
|
||||
{/* End ownership enforced routes */}
|
||||
|
||||
<Route path="/draft" page={DraftPartPage} name="draftPart" />
|
||||
<Route path="/u/{userName}" page={UserPage} name="user" />
|
||||
<Route path="/u/{userName}/{partTitle}" page={PartPage} name="part" />
|
||||
<Route path="/u/{userName}/{partTitle}/ide" page={IdePartPage} name="ide" />
|
||||
|
||||
<Private unauthenticated="home" role="admin">
|
||||
<Route path="/admin/users" page={UsersPage} name="users" />
|
||||
<Route path="/admin/parts" page={AdminPartsPage} name="parts" />
|
||||
<Route path="/admin/subject-access-requests/{id}/edit" page={EditSubjectAccessRequestPage} name="editSubjectAccessRequest" />
|
||||
<Route path="/admin/subject-access-requests/{id}" page={SubjectAccessRequestPage} name="subjectAccessRequest" />
|
||||
<Route path="/admin/subject-access-requests" page={SubjectAccessRequestsPage} name="subjectAccessRequests" />
|
||||
</Private>
|
||||
</Router>
|
||||
)
|
||||
}
|
||||
|
||||
export default Routes
|
||||
Reference in New Issue
Block a user