feat: added /sys/ to all system pages, edited 404 page, added deadlink, moar changes
This commit is contained in:
parent
2d458fd2f2
commit
0279df06fa
24 changed files with 90 additions and 41 deletions
|
@ -9,8 +9,12 @@
|
||||||
<LayoutView Layout="@typeof(MainLayout)">
|
<LayoutView Layout="@typeof(MainLayout)">
|
||||||
<h3>404</h3>
|
<h3>404</h3>
|
||||||
<div class="Error404">
|
<div class="Error404">
|
||||||
<img src="img/static/err/2.png" alt="noimageFound"/>
|
<img src="img/static/err/1.png" alt="noimageFound"/>
|
||||||
<p role="alert">Sorry, nothing found. Please go back to the main page. Or watch the tree and find the hidden Cat..</p>
|
<p role="alert">Sorry, nothing found.</p>
|
||||||
|
<br/>
|
||||||
|
<a href="/">Please go back to the main page.</a>
|
||||||
|
<br/>
|
||||||
|
<p>Or watch the tree and find the hidden Cat..</p>
|
||||||
</div>
|
</div>
|
||||||
</LayoutView>
|
</LayoutView>
|
||||||
</NotFound>
|
</NotFound>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@page "/banned"
|
@page "/sys/banned"
|
||||||
<h3>Banned</h3>
|
<h3>Banned</h3>
|
||||||
|
|
||||||
<img class="image" src="img/static/banned/@i"/>
|
<img class="image" src="img/static/banned/@i"/>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@page "/login"
|
@page "/sys/login"
|
||||||
@using ImageBoardServerApp.Data.Repository
|
@using ImageBoardServerApp.Data.Repository
|
||||||
@using ImageBoardServerApp.Auth
|
@using ImageBoardServerApp.Auth
|
||||||
@inject IJSRuntime js
|
@inject IJSRuntime js
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@page "/register"
|
@page "/sys/register"
|
||||||
@using ImageBoardServerApp.Data.Repository
|
@using ImageBoardServerApp.Data.Repository
|
||||||
@using ImageBoardServerApp.Auth
|
@using ImageBoardServerApp.Auth
|
||||||
@inject IJSRuntime js
|
@inject IJSRuntime js
|
||||||
|
|
6
ImageBoardServerApp/Pages/Accounts/UserPage.razor
Normal file
6
ImageBoardServerApp/Pages/Accounts/UserPage.razor
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
@page "/sys/you"
|
||||||
|
<h3>UserPage</h3>
|
||||||
|
|
||||||
|
@code {
|
||||||
|
|
||||||
|
}
|
10
ImageBoardServerApp/Pages/Basic/DeadLink.razor
Normal file
10
ImageBoardServerApp/Pages/Basic/DeadLink.razor
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
@page "/sys/dead"
|
||||||
|
<h3>DeadLink</h3>
|
||||||
|
<img class="deadlink" src="img/static/deadlink/1.png" alt="Img is dead as well"/>
|
||||||
|
<span>This link is dead.</span>
|
||||||
|
<br/>
|
||||||
|
<a href="/">Return home</a>
|
||||||
|
|
||||||
|
@code {
|
||||||
|
|
||||||
|
}
|
7
ImageBoardServerApp/Pages/Basic/DeadLink.razor.css
Normal file
7
ImageBoardServerApp/Pages/Basic/DeadLink.razor.css
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.deadlink{
|
||||||
|
justify-content: center;
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
width: 50%;
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
@page "/faq"
|
@page "/sys/faq"
|
||||||
<h3>FAQ</h3>
|
<h3>FAQ</h3>
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@page "/rules"
|
@page "/sys/rules"
|
||||||
<div class="rules_headline">
|
<div class="rules_headline">
|
||||||
<h3>Rules</h3>
|
<h3>Rules</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@page "/report/{type}/{board}/{id}"
|
@page "/sys/report/{type}/{board}/{id}"
|
||||||
@using System.ComponentModel.DataAnnotations
|
@using System.ComponentModel.DataAnnotations
|
||||||
@using System.Data
|
@using System.Data
|
||||||
@using ImageBoardServerApp.Auth
|
@using ImageBoardServerApp.Auth
|
||||||
|
|
|
@ -1,20 +1,19 @@
|
||||||
@page "/modmenu"
|
@page "/sys/modmenu"
|
||||||
@using ImageBoardServerApp.Auth
|
@using ImageBoardServerApp.Auth
|
||||||
@inject AuthenticationStateProvider authStateProvider
|
@inject AuthenticationStateProvider authStateProvider
|
||||||
@inject NavigationManager navManager
|
@inject NavigationManager navManager
|
||||||
|
|
||||||
|
|
||||||
<h3>ModMenu</h3>
|
|
||||||
<AuthorizeView>
|
<AuthorizeView>
|
||||||
<Authorized>
|
<Authorized>
|
||||||
|
<h3>ModMenu</h3>
|
||||||
<span>Welcome @mail to the mod menu</span>
|
<span>Welcome @mail to the mod menu</span>
|
||||||
<div>
|
<div>
|
||||||
<a href="/modmenu/reports">[Reports]</a>
|
<a href="/sys/reports">[Reports]</a>
|
||||||
<a href="/modmenu/users">[Users]</a>
|
<a href="/sys/users">[Users]</a>
|
||||||
</div>
|
</div>
|
||||||
</Authorized>
|
</Authorized>
|
||||||
<NotAuthorized>
|
<NotAuthorized>
|
||||||
<a href="/login">You do not have permission to view this menu.</a>
|
<DeadLink/>
|
||||||
</NotAuthorized>
|
</NotAuthorized>
|
||||||
</AuthorizeView>
|
</AuthorizeView>
|
||||||
@code {
|
@code {
|
||||||
|
|
|
@ -1,11 +1,19 @@
|
||||||
@page "/modmenu/reports"
|
@page "/sys/reports"
|
||||||
@using ImageBoardServerApp.Data.Repository
|
@using ImageBoardServerApp.Data.Repository
|
||||||
<h3>Reports</h3>
|
<AuthorizeView>
|
||||||
@foreach (var r in reports)
|
<Authorized>
|
||||||
{
|
<h3>Reports</h3>
|
||||||
<Report report="r"/>
|
@foreach (var r in reports)
|
||||||
<hr/>
|
{
|
||||||
}
|
<Report report="r"/>
|
||||||
|
<hr/>
|
||||||
|
}
|
||||||
|
</Authorized>
|
||||||
|
<NotAuthorized>
|
||||||
|
<DeadLink/>
|
||||||
|
</NotAuthorized>
|
||||||
|
</AuthorizeView>
|
||||||
|
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
private List<ReportData> reports;
|
private List<ReportData> reports;
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
@page "/modmenu/users"
|
@page "/sys/users"
|
||||||
<h3>UsersPage</h3>
|
<AuthorizeView>
|
||||||
|
<Authorized>
|
||||||
|
<h3>Users</h3>
|
||||||
|
|
||||||
|
</Authorized>
|
||||||
|
<NotAuthorized>
|
||||||
|
<DeadLink/>
|
||||||
|
</NotAuthorized>
|
||||||
|
</AuthorizeView>
|
||||||
@code {
|
@code {
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
@page "/SuccessfulPost"
|
@page "/sys/SuccessfulPost"
|
||||||
<h3>SuccessfulPost</h3>
|
<h3>SuccessfulPost</h3>
|
||||||
<span>Post sucessfully crated!</span>
|
<span>Post sucessfully crated!</span>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@page "/UnSuccessfulPost"
|
@page "/sys/UnSuccessfulPost"
|
||||||
<h3>UnuccessfulPost</h3>
|
<h3>UnuccessfulPost</h3>
|
||||||
<span>Post was not created!</span>
|
<span>Post was not created!</span>
|
||||||
|
|
||||||
|
|
|
@ -16,15 +16,23 @@
|
||||||
|
|
||||||
<h3>Threads</h3>
|
<h3>Threads</h3>
|
||||||
<br/>
|
<br/>
|
||||||
|
@if (posts != null)
|
||||||
@if (posts.Any())
|
|
||||||
{
|
{
|
||||||
@foreach(var post in posts)
|
@if (posts.Any())
|
||||||
{
|
{
|
||||||
<Post post="@post" showOpenThread="true"></Post>
|
@foreach(var post in posts)
|
||||||
<hr/>
|
{
|
||||||
|
<Post post="@post" showOpenThread="true"></Post>
|
||||||
|
<hr/>
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<p>
|
||||||
|
<em>Loading Posts...</em>
|
||||||
|
</p>
|
||||||
|
}
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
<a @onclick="@deletePost" href="javascript:void(0)">Delete</a>
|
<a @onclick="@deletePost" href="javascript:void(0)">Delete</a>
|
||||||
<span>]</span>
|
<span>]</span>
|
||||||
<span>[</span>
|
<span>[</span>
|
||||||
<a class="report" href="/report/comment/@comment.Board/@comment.CommentID" target="_blank">Report</a>
|
<a class="report" href="/sys/report/comment/@comment.Board/@comment.CommentID" target="_blank">Report</a>
|
||||||
<span>]</span>
|
<span>]</span>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
//Maybe redirect to /banned?
|
//Maybe redirect to /banned?
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
foundusr.lastActionTimeStamp = DateTimeOffset.UnixEpoch.ToUnixTimeMilliseconds();
|
foundusr.lastActionTimeStamp = DateTimeOffset.Now.ToUnixTimeMilliseconds();
|
||||||
await UsersRepository.updateUserAsync(foundusr);
|
await UsersRepository.updateUserAsync(foundusr);
|
||||||
|
|
||||||
bool hasImage = selectedFile != null;
|
bool hasImage = selectedFile != null;
|
||||||
|
@ -141,7 +141,7 @@
|
||||||
if (commentId == -1)
|
if (commentId == -1)
|
||||||
{
|
{
|
||||||
//Open comment unsucessfull
|
//Open comment unsucessfull
|
||||||
navigationManager.NavigateTo("/UnSuccessfulPost");
|
navigationManager.NavigateTo("/sys/UnSuccessfulPost");
|
||||||
hasErr = true;
|
hasErr = true;
|
||||||
postErr = "There was an error and the comment could not be created. Please notify the admin.";
|
postErr = "There was an error and the comment could not be created. Please notify the admin.";
|
||||||
Console.WriteLine("Shit sucks and did not work.");
|
Console.WriteLine("Shit sucks and did not work.");
|
||||||
|
|
|
@ -5,9 +5,9 @@
|
||||||
<br/>
|
<br/>
|
||||||
<div>
|
<div>
|
||||||
<span>Read the </span>
|
<span>Read the </span>
|
||||||
<a href="/rules">rules</a>
|
<a href="/sys/rules">rules</a>
|
||||||
<span> and </span>
|
<span> and </span>
|
||||||
<a href="/faq">faq</a>
|
<a href="/sys/faq">faq</a>
|
||||||
<span> before posting</span>
|
<span> before posting</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -105,7 +105,7 @@
|
||||||
//Maybe redirect to /banned?
|
//Maybe redirect to /banned?
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
foundusr.lastActionTimeStamp = DateTimeOffset.UnixEpoch.ToUnixTimeMilliseconds();
|
foundusr.lastActionTimeStamp = DateTimeOffset.Now.ToUnixTimeMilliseconds();
|
||||||
await UsersRepository.updateUserAsync(foundusr);
|
await UsersRepository.updateUserAsync(foundusr);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
<a @onclick="@deletePost" href="javascript:void(0)">Delete</a>
|
<a @onclick="@deletePost" href="javascript:void(0)">Delete</a>
|
||||||
<span>]</span>
|
<span>]</span>
|
||||||
<span>[</span>
|
<span>[</span>
|
||||||
<a class="report" href="/report/op/@post.Board/@post.PostID" target="_blank">Report</a>
|
<a class="report" href="/sys/report/op/@post.Board/@post.PostID" target="_blank">Report</a>
|
||||||
<span>]</span>
|
<span>]</span>
|
||||||
@if (showOpenThread)
|
@if (showOpenThread)
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,8 +13,8 @@
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
<div class="top-row px-4">
|
<div class="top-row px-4">
|
||||||
<a href="/faq">[FAQ]</a>
|
<a href="/sys/faq">[FAQ]</a>
|
||||||
<a href="/rules">[Rules]</a>
|
<a href="/sys/rules">[Rules]</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<article class="content px-4">
|
<article class="content px-4">
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<a class="navbar-brand" @onclick="logout" href="javascript:void(0)">[Logout]</a>
|
<a class="navbar-brand" @onclick="logout" href="javascript:void(0)">[Logout]</a>
|
||||||
</Authorized>
|
</Authorized>
|
||||||
<NotAuthorized>
|
<NotAuthorized>
|
||||||
<a class="navbar-brand" href="/login">[Login]</a>
|
<a class="navbar-brand" href="/sys/login">[Login]</a>
|
||||||
</NotAuthorized>
|
</NotAuthorized>
|
||||||
</AuthorizeView>
|
</AuthorizeView>
|
||||||
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
|
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
|
||||||
|
|
BIN
ImageBoardServerApp/wwwroot/img/static/deadlink/1.png
Normal file
BIN
ImageBoardServerApp/wwwroot/img/static/deadlink/1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 194 KiB |
Loading…
Reference in a new issue