-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #283 from RMoodsTeam/279-page-skeletons
279 page skeletons
- Loading branch information
Showing
30 changed files
with
185 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...end/src/routes/fallbacks/PageFallback.tsx → frontend/src/routes/PageFallback.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
frontend/src/routes/about/page.tsx → frontend/src/routes/about/faq/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Box, Title } from '@mantine/core'; | ||
import { ErrorBoundary } from 'react-error-boundary'; | ||
import { PageFallback } from '../../PageFallback'; | ||
|
||
const ThesisPage = () => { | ||
return ( | ||
<Box> | ||
<Title order={1}>Thesis</Title> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default function () { | ||
return ( | ||
<ErrorBoundary FallbackComponent={PageFallback}> | ||
<ThesisPage /> | ||
</ErrorBoundary> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Box, Title } from '@mantine/core'; | ||
import { ErrorBoundary } from 'react-error-boundary'; | ||
import { PageFallback } from '../../PageFallback'; | ||
|
||
const BrowseReportsPage = () => { | ||
return ( | ||
<Box> | ||
<Title order={1}>Browse Reports</Title> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default function () { | ||
return ( | ||
<ErrorBoundary FallbackComponent={PageFallback}> | ||
<BrowseReportsPage /> | ||
</ErrorBoundary> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Box, Title } from '@mantine/core'; | ||
import { ErrorBoundary } from 'react-error-boundary'; | ||
import { PageFallback } from '../../PageFallback'; | ||
|
||
const BrowseUsersPage = () => { | ||
return ( | ||
<Box> | ||
<Title order={1}>Browse Users</Title> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default function () { | ||
return ( | ||
<ErrorBoundary FallbackComponent={PageFallback}> | ||
<BrowseUsersPage /> | ||
</ErrorBoundary> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...googleSignInButton/GoogleSignInButton.tsx → ...googleSignInButton/GoogleSignInButton.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Box, Title } from '@mantine/core'; | ||
import { ErrorBoundary } from 'react-error-boundary'; | ||
import { PageFallback } from '../PageFallback.tsx'; | ||
|
||
const ReleasesPage = () => { | ||
return ( | ||
<Box> | ||
<Title order={1}>Releases</Title> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default function () { | ||
return ( | ||
<ErrorBoundary FallbackComponent={PageFallback}> | ||
<ReleasesPage /> | ||
</ErrorBoundary> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Box, Title } from '@mantine/core'; | ||
import { ErrorBoundary } from 'react-error-boundary'; | ||
import { PageFallback } from '../PageFallback.tsx'; | ||
|
||
const SandboxPage = () => { | ||
return ( | ||
<Box> | ||
<Title order={1}>NLP Sandbox</Title> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default function () { | ||
return ( | ||
<ErrorBoundary FallbackComponent={PageFallback}> | ||
<SandboxPage /> | ||
</ErrorBoundary> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
13 changes: 7 additions & 6 deletions
13
frontend/src/routes/user/userPage/page.tsx → frontend/src/routes/user/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Box, Title } from '@mantine/core'; | ||
import { ErrorBoundary } from 'react-error-boundary'; | ||
import { PageFallback } from '../../PageFallback'; | ||
|
||
const UserReportsPage = () => { | ||
return ( | ||
<Box> | ||
<Title order={1}>My Reports</Title> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default function () { | ||
return ( | ||
<ErrorBoundary FallbackComponent={PageFallback}> | ||
<UserReportsPage /> | ||
</ErrorBoundary> | ||
); | ||
} |
File renamed without changes.
5 changes: 3 additions & 2 deletions
5
...es/user/profilePicture/ProfilePicture.tsx → ...user/ui/profilePicture/ProfilePicture.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions
1
...utes/user/statisticItem/StatisticItem.tsx → ...s/user/ui/statisticItem/StatisticItem.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
3 changes: 2 additions & 1 deletion
3
...end/src/routes/user/userCard/UserCard.tsx → .../src/routes/user/ui/userCard/UserCard.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters