6 Commits

Author SHA1 Message Date
6d486f49 6b925c8fc9 ... 2026-06-04 14:12:39 -04:00
6d486f49 3b165de7a9 ...dialog 2026-06-04 14:08:20 -04:00
JonathanMcCaffrey 814f3a3858 ... 2026-06-04 12:32:44 -04:00
JonathanMcCaffrey 7c00c14d9e ... 2026-06-04 12:29:41 -04:00
JonathanMcCaffrey 9323e7a1a6 ... 2026-06-04 12:29:33 -04:00
JonathanMcCaffrey 0c820ac973 ... 2026-06-04 12:28:07 -04:00
26 changed files with 540 additions and 459 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0"/> <PackageReference Include="HotChocolate.AspNetCore" Version="16.1.2"/>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
+2
View File
@@ -23,7 +23,9 @@ public static class MauiProgram
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
}); });
#pragma warning disable CA1416 // BlazorWebView requires Android 23+, project targets 21+
builder.Services.AddMauiBlazorWebView(); builder.Services.AddMauiBlazorWebView();
#pragma warning restore CA1416
#if DEBUG #if DEBUG
builder.Services.AddBlazorWebViewDeveloperTools(); builder.Services.AddBlazorWebViewDeveloperTools();
+1 -3
View File
@@ -37,9 +37,7 @@
--info-hover: #451376; --info-hover: #451376;
--info-border-hover: #210b36; --info-border-hover: #210b36;
--dialog-border-color: black; --dialog-radius: 12px;
--dialog-border-width: 2px;
--dialog-radius: 6px;
} }
html { html {
+72 -48
View File
@@ -2,24 +2,25 @@
@inject IMyDialogService MyDialogService @inject IMyDialogService MyDialogService
@inject IJSRuntime JsRuntime @inject IJSRuntime JsRuntime
@inject NavigationManager NavigationManager @inject NavigationManager NavigationManager
@if (MyDialogService.IsVisible) @if (MyDialogService.IsVisible)
{ {
<div class="confirmDialogBackground" onclick="@CloseDialog"> <div class="dialogOverlay" onclick="@CloseDialog">
<div class="confirmDialogContainer" <div class="dialogContainer dialogConfirm"
@onclick:preventDefault="true" @onclick:preventDefault="true"
@onclick:stopPropagation="true"> @onclick:stopPropagation="true">
<div class="confirmDialogHeader"> <div class="dialogHeader">
@MyDialogService.GetDialogContents().Title <div class="dialogTitle">@MyDialogService.GetDialogContents().Title</div>
<button class="dialogCloseBtn" @onclick="CloseDialog">&times;</button>
</div> </div>
<div class="confirmDialogBody">
<div class="dialogBody">
@MyDialogService.GetDialogContents().Message @MyDialogService.GetDialogContents().Message
</div> </div>
<div class="confirmDialogFooter"> <div class="dialogFooter">
<ButtonComponent MyButtonType="MyButtonType.Secondary" <ButtonComponent MyButtonType="MyButtonType.Secondary"
OnClick="MyDialogService.GetDialogContents().OnCancel"> OnClick="MyDialogService.GetDialogContents().OnCancel">
Cancel Cancel
@@ -33,71 +34,97 @@
</div> </div>
<style> <style>
.pageContents * { .dialogOverlay {
filter: blur(2px);
}
.confirmDialogBackground {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
background-color: rgba(0, 0, 0, 0.5); background-color: rgba(0, 0, 0, 0.6);
display: flex; display: flex;
align-items: flex-start;
justify-content: center;
z-index: 1000;
padding-top: 64px;
} }
.dialogContainer {
.confirmDialogContainer { background-color: var(--paper);
margin-left: auto;
margin-right: auto;
margin-top: 64px;
width: 800px;
height: 600px;
background-color: var(--background);
border-width: var(--dialog-border-width);
border-style: solid;
border-color: var(--dialog-border-color);
border-radius: var(--dialog-radius); border-radius: var(--dialog-radius);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
padding: 8px;
box-shadow: 1px 2px 2px black;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
max-height: calc(100vh - 128px);
overflow: hidden;
} }
.confirmDialogHeader { .dialogConfirm {
font-size: 1.4em; width: 480px;
padding: 12px;
} }
.confirmDialogBody { .dialogHeader {
padding: 12px; display: flex;
flex-grow: 1; align-items: center;
justify-content: space-between;
padding: 16px 20px;
border-bottom: 1px solid var(--paper-border);
background-color: var(--accent);
border-radius: var(--dialog-radius) var(--dialog-radius) 0 0;
min-height: 56px;
} }
.confirmDialogFooter { .dialogTitle {
font-size: 1.25rem;
font-weight: 700;
color: white;
}
.dialogCloseBtn {
background: none;
border: none;
color: rgba(255, 255, 255, 0.7);
font-size: 1.5rem;
cursor: pointer;
padding: 0;
line-height: 1;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
transition: background 0.15s, color 0.15s;
}
.dialogCloseBtn:hover {
background: rgba(255, 255, 255, 0.15);
color: white;
}
.dialogBody {
padding: 20px;
overflow-y: auto;
flex: 1;
color: var(--text-primary, #ddd);
line-height: 1.6;
}
.dialogFooter {
display: flex; display: flex;
gap: 12px; gap: 12px;
justify-content: flex-end; justify-content: flex-end;
padding: 12px; padding: 16px 20px;
border-top: 1px solid var(--paper-border);
background-color: var(--background);
border-radius: 0 0 var(--dialog-radius) var(--dialog-radius);
} }
</style> </style>
} }
@code { @code {
protected override void OnInitialized() protected override void OnInitialized()
{ {
base.OnInitialized(); base.OnInitialized();
MyDialogService.Subscribe(() => InvokeAsync(StateHasChanged)); MyDialogService.Subscribe(() => InvokeAsync(StateHasChanged));
} }
@@ -106,11 +133,8 @@
MyDialogService.Unsubscribe(() => InvokeAsync(StateHasChanged)); MyDialogService.Unsubscribe(() => InvokeAsync(StateHasChanged));
} }
public void CloseDialog() public void CloseDialog()
{ {
MyDialogService.Hide(); MyDialogService.Hide();
} }
}
}
+89 -81
View File
@@ -1,31 +1,30 @@
@implements IDisposable; @implements IDisposable;
@inject IEntityDialogService entityDialogService @inject IEntityDialogService entityDialogService
<div class="dialogBackground" onclick="@CloseDialog"> <div class="dialogOverlay" onclick="@CloseDialog">
<div class="dialogContainer entityDialog"
<div class="dialogContainer"
@onclick:preventDefault="true" @onclick:preventDefault="true"
@onclick:stopPropagation="true"> @onclick:stopPropagation="true">
@if (entity == null) @if (entity == null)
{ {
<div>Entity is null</div> <div class="dialogBody">Entity is null</div>
} }
else else
{ {
<div class="dialogHeader"> <div class="dialogHeader">
@if (entityDialogService.HasHistory()) <div class="dialogHeaderLeft">
{ @if (entityDialogService.HasHistory())
<button class="backButton" @onclick="entityDialogService.BackDialog"> {
<div class="backButtonIcon"></div> <button class="dialogBackBtn" @onclick="entityDialogService.BackDialog" title="Back">
</button> &#8592;
} </button>
}
<div class="dialogTitle"> <div class="dialogTitle">@entity.Info().Name</div>
@entity.Info().Name
</div> </div>
<button class="dialogCloseBtn" @onclick="CloseDialog">&times;</button>
</div> </div>
<div class="dialogContent">
<div class="dialogBody">
<CascadingValue Value="@entity"> <CascadingValue Value="@entity">
<EntityVanguardAddedComponent/> <EntityVanguardAddedComponent/>
<EntityInfoComponent/> <EntityInfoComponent/>
@@ -39,105 +38,117 @@
<EntityWeaponsComponent/> <EntityWeaponsComponent/>
<EntityAbilitiesComponent/> <EntityAbilitiesComponent/>
</CascadingValue> </CascadingValue>
</div> </div>
<div class="dialogFooter"></div>
} }
</div> </div>
</div> </div>
<style> <style>
.dialogOverlay {
.pageContents * {
filter: blur(2px);
}
.dialogBackground {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
background-color: rgba(0, 0, 0, 0.5); background-color: rgba(0, 0, 0, 0.6);
display: flex; display: flex;
align-items: flex-start;
justify-content: center;
z-index: 1000;
padding-top: 64px;
} }
.dialogContainer { .dialogContainer {
margin-left: auto; background-color: var(--paper);
margin-right: auto;
margin-top: 64px;
width: 800px;
height: 600px;
background-color: var(--background);
border-width: var(--dialog-border-width);
border-style: solid;
border-color: var(--dialog-border-color);
border-radius: var(--dialog-radius); border-radius: var(--dialog-radius);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
max-height: calc(100vh - 128px);
overflow: hidden;
}
.entityDialog {
box-shadow: 1px 2px 2px black; width: 800px;
max-width: calc(100% - 32px);
} }
.dialogHeader { .dialogHeader {
width: 100%;
background-color: var(--accent);
border-top-left-radius: var(--dialog-radius);
border-top-right-radius: var(--dialog-radius);
border-bottom: 4px solid black;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-start; justify-content: space-between;
padding: 12px 16px;
border-bottom: 1px solid var(--paper-border);
background-color: var(--accent);
border-radius: var(--dialog-radius) var(--dialog-radius) 0 0;
min-height: 52px;
gap: 8px;
} }
.backButton { .dialogHeaderLeft {
margin-left: 16px; display: flex;
padding: 12px; align-items: center;
gap: 8px;
border: 1px solid var(--accent); min-width: 0;
} }
.backButton:hover { .dialogBackBtn {
background-color: var(--primary-hover); background: none;
border: 1px solid var(--primary-border-hover); border: none;
color: rgba(255, 255, 255, 0.8);
font-size: 1.4rem;
cursor: pointer;
padding: 4px 8px;
line-height: 1;
border-radius: 6px;
transition: background 0.15s, color 0.15s;
} }
.backButtonIcon { .dialogBackBtn:hover {
height: 32px; background: rgba(255, 255, 255, 0.15);
width: 32px; color: white;
border: solid white;
border-width: 0 9px 9px 0;
transform: rotate(135deg);
} }
.dialogTitle { .dialogTitle {
padding: 16px; font-size: 1.25rem;
font-size: 2rem; font-weight: 700;
font-weight: bold; color: white;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
.dialogContent { .dialogCloseBtn {
flex-grow: 1; background: none;
padding: 6px; border: none;
color: rgba(255, 255, 255, 0.7);
font-size: 1.5rem;
cursor: pointer;
padding: 0;
line-height: 1;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
transition: background 0.15s, color 0.15s;
}
.dialogCloseBtn:hover {
background: rgba(255, 255, 255, 0.15);
color: white;
}
.dialogBody {
padding: 20px;
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; flex: 1;
color: var(--text-primary, #ddd);
height: 800px;
}
.dialogFooter {
width: 100%;
height: 6px;
background-color: var(--paper);
} }
</style> </style>
@code { @code {
EntityModel entity = default!; EntityModel entity = default!;
private int refresh; private int refresh;
@@ -146,7 +157,6 @@
{ {
base.OnInitialized(); base.OnInitialized();
entity = EntityData.Get()[entityDialogService.GetEntityId() ?? string.Empty]; entity = EntityData.Get()[entityDialogService.GetEntityId() ?? string.Empty];
entityDialogService.Subscribe(OnUpdate); entityDialogService.Subscribe(OnUpdate);
} }
@@ -157,9 +167,8 @@
void OnUpdate() void OnUpdate()
{ {
entity = EntityData.Get()[entityDialogService.GetEntityId()]; entity = EntityData.Get()[entityDialogService.GetEntityId() ?? string.Empty];
refresh++; refresh++;
StateHasChanged(); StateHasChanged();
} }
@@ -167,5 +176,4 @@
{ {
entityDialogService.CloseDialog(); entityDialogService.CloseDialog();
} }
}
}
+121 -99
View File
@@ -2,31 +2,34 @@
@inject IGlossaryService glossaryService @inject IGlossaryService glossaryService
@inject IGlossaryDialogService glossaryDialogService @inject IGlossaryDialogService glossaryDialogService
<div class="dialogOverlay" onclick="@CloseDialog">
<div class="dialogBackground" onclick="@CloseDialog">
<div class="dialogContainer glossaryDialog" <div class="dialogContainer glossaryDialog"
@onclick:preventDefault="true" @onclick:preventDefault="true"
@onclick:stopPropagation="true"> @onclick:stopPropagation="true">
@if (term == null) @if (term == null)
{ {
<div>Term is null</div> <div class="dialogBody">Term is null</div>
} }
else else
{ {
<div class="dialogHeader"> <div class="dialogHeader">
@if (glossaryDialogService.HasHistory()) <div class="dialogHeaderLeft">
{ @if (glossaryDialogService.HasHistory())
<button class="backButton" @onclick="glossaryDialogService.BackDialog"> {
<div class="backButtonIcon"></div> <button class="dialogBackBtn" @onclick="glossaryDialogService.BackDialog" title="Back">
</button> &#8592;
} </button>
<div class="dialogTitle"> }
@term.Term <div class="dialogTitle">@term.Term</div>
</div>
<div class="dialogHeaderRight">
<span class="glossaryCategory">@term.Category</span>
<button class="dialogCloseBtn" @onclick="CloseDialog">&times;</button>
</div> </div>
<div class="glossaryDialogCategory">@term.Category</div>
</div> </div>
<div class="dialogContent">
<div class="dialogBody">
<div class="glossaryDefinition">@((MarkupString)RenderMarkdown(term.LongDefinition))</div> <div class="glossaryDefinition">@((MarkupString)RenderMarkdown(term.LongDefinition))</div>
@if (term.RelatedEntityIds.Count > 0) @if (term.RelatedEntityIds.Count > 0)
@@ -55,112 +58,131 @@
</div> </div>
} }
</div> </div>
<div class="dialogFooter"></div>
} }
</div> </div>
</div> </div>
<style> <style>
.dialogOverlay {
.pageContents * {
filter: blur(2px);
}
.dialogBackground {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
background-color: rgba(0, 0, 0, 0.5); background-color: rgba(0, 0, 0, 0.6);
display: flex; display: flex;
align-items: flex-start;
justify-content: center;
z-index: 1000;
padding-top: 64px;
} }
.dialogContainer { .dialogContainer {
margin-left: auto;
margin-right: auto;
margin-top: 64px;
width: 800px;
height: 600px;
background-color: var(--background);
border-width: var(--dialog-border-width);
border-style: solid;
border-color: var(--dialog-border-color);
border-radius: var(--dialog-radius);
box-shadow: 1px 2px 2px black;
}
.dialogHeader {
width: 100%;
background-color: var(--accent);
border-top-left-radius: var(--dialog-radius);
border-top-right-radius: var(--dialog-radius);
border-bottom: 4px solid black;
display: flex;
align-items: center;
justify-content: flex-start;
}
.backButton {
margin-left: 16px;
padding: 12px;
border: 1px solid var(--accent);
}
.backButton:hover {
background-color: var(--primary-hover);
border: 1px solid var(--primary-border-hover);
}
.backButtonIcon {
height: 32px;
width: 32px;
border: solid white;
border-width: 0 9px 9px 0;
transform: rotate(135deg);
}
.dialogTitle {
padding: 16px;
font-size: 2rem;
font-weight: bold;
}
.dialogContent {
flex-grow: 1;
padding: 6px;
overflow-y: auto;
overflow-x: hidden;
height: 800px;
}
.dialogFooter {
width: 100%;
height: 6px;
background-color: var(--paper); background-color: var(--paper);
border-radius: var(--dialog-radius);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
max-height: calc(100vh - 128px);
overflow: hidden;
} }
.glossaryDialog { .glossaryDialog {
max-width: 600px; max-width: 600px;
width: calc(100% - 32px);
} }
.glossaryDialogCategory { .dialogHeader {
font-size: 0.8rem; display: flex;
opacity: 0.7; align-items: center;
margin-left: 12px; justify-content: space-between;
padding: 12px 16px;
border-bottom: 1px solid var(--paper-border);
background-color: var(--accent);
border-radius: var(--dialog-radius) var(--dialog-radius) 0 0;
min-height: 52px;
gap: 8px;
}
.dialogHeaderLeft {
display: flex;
align-items: center;
gap: 8px;
min-width: 0;
}
.dialogHeaderRight {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
}
.dialogBackBtn {
background: none;
border: none;
color: rgba(255, 255, 255, 0.8);
font-size: 1.4rem;
cursor: pointer;
padding: 4px 8px;
line-height: 1;
border-radius: 6px;
transition: background 0.15s, color 0.15s;
}
.dialogBackBtn:hover {
background: rgba(255, 255, 255, 0.15);
color: white;
}
.dialogTitle {
font-size: 1.25rem;
font-weight: 700;
color: white;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.dialogCloseBtn {
background: none;
border: none;
color: rgba(255, 255, 255, 0.7);
font-size: 1.5rem;
cursor: pointer;
padding: 0;
line-height: 1;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
transition: background 0.15s, color 0.15s;
}
.dialogCloseBtn:hover {
background: rgba(255, 255, 255, 0.15);
color: white;
}
.glossaryCategory {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.6);
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 600;
}
.dialogBody {
padding: 20px;
overflow-y: auto;
flex: 1;
color: var(--text-primary, #ddd);
} }
.glossaryDefinition { .glossaryDefinition {
line-height: 1.6; line-height: 1.7;
} }
.glossaryDefinition p { .glossaryDefinition p {
@@ -168,15 +190,16 @@
} }
.glossaryRelatedSection { .glossaryRelatedSection {
margin-top: 20px; margin-top: 24px;
padding-top: 16px; padding-top: 16px;
border-top: 1px solid var(--info-secondary-border); border-top: 1px solid var(--info-secondary-border);
} }
.glossaryRelatedTitle { .glossaryRelatedTitle {
font-weight: 800; font-weight: 700;
font-size: 1rem; font-size: 0.95rem;
margin-bottom: 8px; margin-bottom: 8px;
color: var(--text-primary, #ddd);
} }
.glossaryRelatedList { .glossaryRelatedList {
@@ -222,5 +245,4 @@
{ {
return Markdown.ToHtml(text); return Markdown.ToHtml(text);
} }
} }
+152 -100
View File
@@ -2,141 +2,196 @@
@inject ISearchService searchService @inject ISearchService searchService
@inject IJSRuntime jsRuntime @inject IJSRuntime jsRuntime
@inject NavigationManager navigationManager @inject NavigationManager navigationManager
@if (searchService.IsLoaded() && searchService.IsVisible) @if (searchService.IsLoaded() && searchService.IsVisible)
{ {
<div id="searchBackground" class="searchBackground" onclick="@CloseDialog"> <div class="dialogOverlay" onclick="@CloseDialog">
<div class="searchContainer" <div class="dialogContainer searchDialog"
@onclick:preventDefault="true" @onclick:preventDefault="true"
@onclick:stopPropagation="true"> @onclick:stopPropagation="true">
<FormLayoutComponent> <div class="dialogHeader">
<FormTextComponent OnFocus="OnFocus" Id="searchInput" Placeholder="Search..." <div class="dialogTitle">Search</div>
OnInput="SearchChanged"></FormTextComponent> <button class="dialogCloseBtn" @onclick="CloseDialog">&times;</button>
</FormLayoutComponent>
<div class="searchBox">
@if (SearchText.Length > 0)
{
foreach (var searchSection in searchService.Searches)
{
var searchPoints = searchSection.Value.FindAll(x => x.Title.ToLower().Contains(SearchText.ToLower()));
@if (searchPoints.Count > 0)
{
<div>
<div class="searchSectionTitle">
@searchSection.Key
</div>
<div class="searchContents">
@foreach (var searchPoint in searchPoints)
{
<div>
<button class="searchLink @searchPoint.PointType.ToLower()"
label="@searchPoint.Title"
@onclick="() => OnSearch(searchPoint)">
@searchPoint.Title
</button>
@if (!searchPoint.Summary.Trim().Equals(""))
{
<i> - @searchPoint.Summary</i>
}
</div>
}
</div>
</div>
}
}
}
</div> </div>
<div class="dialogBody">
<div class="searchInputWrapper">
<FormTextComponent OnFocus="OnFocus" Id="searchInput" Placeholder="Type to search..."
OnInput="SearchChanged"></FormTextComponent>
</div>
<div class="searchResults">
@if (SearchText.Length > 0)
{
foreach (var searchSection in searchService.Searches)
{
var searchPoints = searchSection.Value.FindAll(x => x.Title.ToLower().Contains(SearchText.ToLower()));
if (searchPoints.Count > 0)
{
<div class="searchSection">
<div class="searchSectionTitle">@searchSection.Key</div>
<div class="searchSectionItems">
@foreach (var searchPoint in searchPoints)
{
<button class="searchItem @searchPoint.PointType.ToLower()"
@onclick="() => OnSearch(searchPoint)">
<span class="searchItemTitle">@searchPoint.Title</span>
@if (!string.IsNullOrWhiteSpace(searchPoint.Summary))
{
<span class="searchItemSummary"> - @searchPoint.Summary</span>
}
</button>
}
</div>
</div>
}
}
}
</div>
</div>
</div> </div>
</div> </div>
<style> <style>
.pageContents * { .dialogOverlay {
filter: blur(2px);
}
.searchBackground {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
width: 100vw; width: 100vw;
height: 100vh; height: 100vh;
background-color: rgba(0, 0, 0, 0.5); background-color: rgba(0, 0, 0, 0.6);
display: flex; display: flex;
align-items: flex-start;
justify-content: center;
z-index: 1000;
padding-top: 64px;
} }
.searchBox { .dialogContainer {
padding: 12px; background-color: var(--paper);
overflow-y: scroll; border-radius: var(--dialog-radius);
overflow-x: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
height: 530px;
border: 1px solid black;
border-radius: 2px;
}
.searchContents {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 6px; max-height: calc(100vh - 128px);
align-items: flex-start; overflow: hidden;
padding: 12px;
} }
.searchDialog {
width: 600px;
max-width: calc(100% - 32px);
}
.dialogHeader {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 20px;
border-bottom: 1px solid var(--paper-border);
background-color: var(--accent);
border-radius: var(--dialog-radius) var(--dialog-radius) 0 0;
min-height: 52px;
}
.dialogTitle {
font-size: 1.25rem;
font-weight: 700;
color: white;
}
.dialogCloseBtn {
background: none;
border: none;
color: rgba(255, 255, 255, 0.7);
font-size: 1.5rem;
cursor: pointer;
padding: 0;
line-height: 1;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
transition: background 0.15s, color 0.15s;
}
.dialogCloseBtn:hover {
background: rgba(255, 255, 255, 0.15);
color: white;
}
.dialogBody {
padding: 20px;
overflow-y: auto;
flex: 1;
}
.searchInputWrapper {
margin-bottom: 16px;
}
.searchResults {
display: flex;
flex-direction: column;
gap: 16px;
}
.searchSection {
display: flex;
flex-direction: column;
}
.searchSectionTitle { .searchSectionTitle {
font-weight: bolder; font-weight: 700;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--info-secondary-border);
margin-bottom: 8px;
padding-bottom: 4px;
border-bottom: 1px solid var(--paper-border);
} }
.searchSectionItems {
.searchContainer { display: flex;
margin-left: auto; flex-direction: column;
margin-right: auto; gap: 4px;
margin-top: 64px;
width: 800px;
height: 600px;
background-color: var(--background);
border-width: var(--dialog-border-width);
border-style: solid;
border-color: var(--dialog-border-color);
border-radius: var(--dialog-radius);
padding: 8px;
box-shadow: 1px 2px 2px black;
} }
.searchLink { .searchItem {
text-decoration: underline; display: block;
width: 100%;
text-align: left;
background: none;
border: none;
border-radius: 6px;
padding: 8px 12px;
color: var(--text-primary, #ddd);
cursor: pointer;
transition: background 0.15s;
} }
@@media only screen and (max-width: 1025px) { .searchItem:hover {
.searchContainer { background: var(--paper-hover);
height: 300px; color: white;
}
.searchBox {
height: 230px;
}
} }
.searchItemTitle {
font-weight: 600;
}
.searchItemSummary {
color: var(--info-secondary-border);
font-size: 0.9rem;
}
</style> </style>
} }
@code { @code {
private ElementReference searchBox;
private string SearchText { get; set; } = ""; private string SearchText { get; set; } = "";
protected override void OnInitialized() protected override void OnInitialized()
@@ -148,7 +203,6 @@
timer.Enabled = false; timer.Enabled = false;
} }
private void FocusTimer(object? sender, ElapsedEventArgs e) private void FocusTimer(object? sender, ElapsedEventArgs e)
{ {
jsRuntime.InvokeVoidAsync("SetFocusToElement", "searchInput"); jsRuntime.InvokeVoidAsync("SetFocusToElement", "searchInput");
@@ -173,7 +227,6 @@
timer.Elapsed -= FocusTimer; timer.Elapsed -= FocusTimer;
} }
public void CloseDialog() public void CloseDialog()
{ {
searchService.Hide(); searchService.Hide();
@@ -207,5 +260,4 @@
{ {
timer.Enabled = false; timer.Enabled = false;
} }
}
}
@@ -131,9 +131,10 @@
armyCount[entity.Info().Name]++; armyCount[entity.Info().Name]++;
} }
if (entity.Production() != null && entity.Production().BuildTime + entitiesAtTime.Key > lastInterval) var production = entity.Production();
if (production != null && production.BuildTime + entitiesAtTime.Key > lastInterval)
{ {
lastInterval = entity.Production().BuildTime + entitiesAtTime.Key; lastInterval = production.BuildTime + entitiesAtTime.Key;
} }
} }
} }
@@ -110,15 +110,17 @@
_supplyTaken = (from ordersAtInterval in ordersOverTime _supplyTaken = (from ordersAtInterval in ordersOverTime
from order in ordersAtInterval.Value from order in ordersAtInterval.Value
where order.Supply() != null let supply = order.Supply()
where order.Supply().Takes > 0 where supply != null
select order.Supply().Takes).Sum(); where supply.Takes > 0
select supply.Takes).Sum();
_supplyGranted = (from ordersAtInterval in ordersOverTime _supplyGranted = (from ordersAtInterval in ordersOverTime
from order in ordersAtInterval.Value from order in ordersAtInterval.Value
where order.Supply() != null let supply = order.Supply()
where order.Supply().Grants > 0 where supply != null
select order.Supply().Grants).Sum(); where supply.Grants > 0
select supply.Grants).Sum();
_extraBuildings = 0; _extraBuildings = 0;
if (_supplyGranted > 160) if (_supplyGranted > 160)
@@ -205,7 +205,9 @@ else
var armyValue = 0; var armyValue = 0;
foreach (var unit in army) foreach (var unit in army)
{ {
armyValue += unit.Production().Alloy + unit.Production().Ether; var unitProduction = unit.Production();
if (unitProduction != null)
armyValue += unitProduction.Alloy + unitProduction.Ether;
} }
+2 -1
View File
@@ -202,7 +202,8 @@
else else
{ {
immortals = (from entity in factions immortals = (from entity in factions
where entity.VanguardAdded() == null || entity.VanguardAdded().ImmortalId == selectedImmortalType let vanguardAdded = entity.VanguardAdded()
where vanguardAdded == null || vanguardAdded.ImmortalId == selectedImmortalType
select entity).ToList(); select entity).ToList();
} }
@@ -211,9 +211,9 @@
[CascadingParameter] public string StyleType { get; set; } = "Detailed"; [CascadingParameter] public string StyleType { get; set; } = "Detailed";
private EntityProductionModel Production => Entity!.Production(); private EntityProductionModel? Production => Entity!.Production();
private List<EntityRequirementModel> Requirements => Entity!.Requirements(); private List<EntityRequirementModel> Requirements => Entity!.Requirements();
private EntitySupplyModel Supply => Entity!.Supply(); private EntitySupplyModel? Supply => Entity!.Supply();
protected override void OnParametersSet() protected override void OnParametersSet()
@@ -8,6 +8,7 @@
var requirements = entity.Requirements(); var requirements = entity.Requirements();
var vanguardAdded = entity.VanguardAdded(); var vanguardAdded = entity.VanguardAdded();
if (vanguardAdded == null) continue;
var replaced = EntityData.Get()[vanguardAdded.ReplaceId]; var replaced = EntityData.Get()[vanguardAdded.ReplaceId];
var immortal = EntityData.Get()[vanguardAdded.ImmortalId]; var immortal = EntityData.Get()[vanguardAdded.ImmortalId];
@@ -38,6 +39,7 @@
var requirements = entity.Requirements(); var requirements = entity.Requirements();
var vanguard = entity.VanguardAdded(); var vanguard = entity.VanguardAdded();
if (vanguard == null) continue;
var productionBuilding = (from building in requirements var productionBuilding = (from building in requirements
where building.Requirement == RequirementType.Production_Building where building.Requirement == RequirementType.Production_Building
select building).First().Id; select building).First().Id;
@@ -71,8 +71,6 @@
} }
int lastRequestedRefreshIndex;
void IDisposable.Dispose() void IDisposable.Dispose()
{ {
economyComparisonService.Unsubscribe(OnBuilderOrderChanged); economyComparisonService.Unsubscribe(OnBuilderOrderChanged);
+2 -2
View File
@@ -168,8 +168,8 @@
private string? _faction; private string? _faction;
private string? _immortal; private string? _immortal;
private string? Faction => _faction == null ? DataType.FACTION_QRath : _faction; private string Faction => _faction ?? DataType.FACTION_QRath;
private string? Immortal => _immortal == null ? DataType.IMMORTAL_Orzum : _immortal; private string Immortal => _immortal ?? DataType.IMMORTAL_Orzum;
private int? _buildingInputDelay; private int? _buildingInputDelay;
-2
View File
@@ -6,8 +6,6 @@
<SearchDialogComponent></SearchDialogComponent> <SearchDialogComponent></SearchDialogComponent>
@code { @code {
private string test = "Q";
protected override void OnInitialized() protected override void OnInitialized()
{ {
searchService.Subscribe(OnUpdate); searchService.Subscribe(OnUpdate);
+9 -9
View File
@@ -282,7 +282,8 @@ public class BuildOrderService : IBuildOrderService
{ {
return (from ordersAtTime in _buildOrder.StartedOrders return (from ordersAtTime in _buildOrder.StartedOrders
from orders in ordersAtTime.Value from orders in ordersAtTime.Value
where ordersAtTime.Key + (orders.Production() == null ? 0 : orders.Production().BuildTime) <= interval let production = orders.Production()
where ordersAtTime.Key + (production?.BuildTime ?? 0) <= interval
select orders).ToList(); select orders).ToList();
} }
@@ -290,15 +291,14 @@ public class BuildOrderService : IBuildOrderService
{ {
return (from ordersAtTime in _buildOrder.StartedOrders return (from ordersAtTime in _buildOrder.StartedOrders
from orders in ordersAtTime.Value from orders in ordersAtTime.Value
where orders.Harvest() != null let production = orders.Production()
where ordersAtTime.Key + (orders.Production() == null let harvest = orders.Harvest()
? 0 where harvest != null
: orders.Production().BuildTime) <= interval let buildTime = production?.BuildTime ?? 0
&& !orders.Harvest().IsDepleted( where ordersAtTime.Key + buildTime <= interval
&& !harvest.IsDepleted(
interval, interval,
ordersAtTime.Key + (orders.Production() == null ordersAtTime.Key + buildTime)
? 0
: orders.Production().BuildTime))
select orders).ToList(); select orders).ToList();
} }
+3 -2
View File
@@ -11,7 +11,7 @@ public class EconomyService : IEconomyService
public List<EconomyModel> GetOverTime() public List<EconomyModel> GetOverTime()
{ {
return buildEconomyOverTime; return buildEconomyOverTime ?? [];
} }
public void Subscribe(Action action) public void Subscribe(Action action)
@@ -67,6 +67,7 @@ public class EconomyService : IEconomyService
public EconomyModel GetEconomy(int atInterval) public EconomyModel GetEconomy(int atInterval)
{ {
if (buildEconomyOverTime == null) return new EconomyModel();
return atInterval >= buildEconomyOverTime.Count return atInterval >= buildEconomyOverTime.Count
? buildEconomyOverTime.Last() ? buildEconomyOverTime.Last()
: buildEconomyOverTime[atInterval]; : buildEconomyOverTime[atInterval];
@@ -218,7 +219,7 @@ public class EconomyService : IEconomyService
private void CarryOverEconomyFromPreviousInterval(int interval, EconomyModel economyAtSecond) private void CarryOverEconomyFromPreviousInterval(int interval, EconomyModel economyAtSecond)
{ {
if (interval <= 0) return; if (interval <= 0 || buildEconomyOverTime == null) return;
economyAtSecond.Alloy = buildEconomyOverTime[interval - 1].Alloy; economyAtSecond.Alloy = buildEconomyOverTime[interval - 1].Alloy;
economyAtSecond.Ether = buildEconomyOverTime[interval - 1].Ether; economyAtSecond.Ether = buildEconomyOverTime[interval - 1].Ether;
+2 -2
View File
@@ -16,8 +16,8 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Blazored.LocalStorage" Version="4.3.0-preview.1"/> <PackageReference Include="Blazored.LocalStorage" Version="4.5.0"/>
<PackageReference Include="Microsoft.JSInterop" Version="8.0.14"/> <PackageReference Include="Microsoft.JSInterop" Version="10.0.8"/>
<PackageReference Include="YamlDotNet" Version="11.2.1"/> <PackageReference Include="YamlDotNet" Version="11.2.1"/>
</ItemGroup> </ItemGroup>
+4 -4
View File
@@ -4,16 +4,16 @@ namespace Services.Website;
public class DialogContents public class DialogContents
{ {
public string Title { get; set; } public string Title { get; set; } = string.Empty;
public string Message { get; set; } public string Message { get; set; } = string.Empty;
public string ConfirmButtonLabel { get; set; } public string ConfirmButtonLabel { get; set; } = string.Empty;
public EventCallback<EventArgs> OnConfirm { get; set; } public EventCallback<EventArgs> OnConfirm { get; set; }
public EventCallback<EventArgs> OnCancel { get; set; } public EventCallback<EventArgs> OnCancel { get; set; }
} }
public class MyDialogService : IMyDialogService public class MyDialogService : IMyDialogService
{ {
private DialogContents _dialogContents; private DialogContents _dialogContents = null!;
public bool IsVisible { get; set; } public bool IsVisible { get; set; }
+1 -2
View File
@@ -7,8 +7,7 @@ public class PermissionService : IPermissionService, IDisposable
private readonly IStorageService _storageService; private readonly IStorageService _storageService;
private IJSRuntime _jsRuntime; private IJSRuntime _jsRuntime;
private IToastService _toastService; private IToastService _toastService;
private bool isLoaded;
private bool isStorageEnabled = false;
public PermissionService(IJSRuntime jsRuntime, IToastService toastService, IStorageService storageService) public PermissionService(IJSRuntime jsRuntime, IToastService toastService, IStorageService storageService)
{ {
+2 -2
View File
@@ -45,12 +45,12 @@ public class StorageService : IStorageService
public T GetValue<T>(string forKey) public T GetValue<T>(string forKey)
{ {
return _localStorageService.GetItem<T>(forKey); return _localStorageService.GetItem<T>(forKey)!;
} }
public void SetValue<T>(string key, T value) public void SetValue<T>(string key, T value)
{ {
if (key.Equals(StorageKeys.EnabledStorage) && value.Equals(true)) if (value != null && key.Equals(StorageKeys.EnabledStorage) && value.Equals(true))
{ {
_localStorageService.SetItem(key, value); _localStorageService.SetItem(key, value);
NotifyDataChanged(); NotifyDataChanged();
+1 -3
View File
@@ -80,9 +80,7 @@
--info: #451376; --info: #451376;
--info-border: #210b36; --info-border: #210b36;
--dialog-border-color: black; --dialog-radius: 12px;
--dialog-border-width: 2px;
--dialog-radius: 6px;
--info-secondary: #1e1e2e; --info-secondary: #1e1e2e;
--info-secondary-border: #3a3a5c; --info-secondary-border: #3a3a5c;
+54 -73
View File
@@ -11,46 +11,33 @@
<MudDialogProvider/> <MudDialogProvider/>
<MudSnackbarProvider/> <MudSnackbarProvider/>
<MudHidden Breakpoint="Breakpoint.MdAndUp">
<MudIconButton Icon="@Icons.Material.Filled.Menu"
Color="Color.Inherit"
Class="mobile-menu-fab"
OnClick="@(() => _drawerOpen = true)"/>
</MudHidden>
<MudLayout> <MudLayout>
<MudAppBar Elevation="1"> <MudDrawer @bind-Open="_drawerOpen"
<MudHidden Breakpoint="Breakpoint.SmAndDown" Invert="true"> Variant="DrawerVariant.Responsive"
<MudIconButton Icon="@Icons.Material.Filled.Menu" Color="Color.Inherit" Edge="Edge.Start" ResponsiveBreakpoint="Breakpoint.Md"
OnClick="@(e => DrawerToggle())"/> ClipMode="DrawerClipMode.Always"
</MudHidden> Elevation="2">
<MudButton Class="ml-3 mr-8" <div class="drawerHeader">
Href="/" <MudText Typo="Typo.h5" Class="drawerTitle">IGP Fan Reference</MudText>
Target="_self" </div>
Variant="Variant.Text" <MudNavMenu Class="drawerNav">
Color="Color.Default">
<MudText Typo="Typo.h5"> IGP Fan Reference</MudText>
</MudButton>
<MudHidden Breakpoint="Breakpoint.MdAndUp" Invert="true">
@foreach (var page in WebsiteData.GetPages()) @foreach (var page in WebsiteData.GetPages())
{ {
<MudButton Href="@(page.Href)" <MudNavLink Href="@(page.Href)" Icon="@(page.Icon)">@(page.Name)</MudNavLink>
Variant="Variant.Text"
Color="Color.Default"
Class="mr-4">
<MudIcon Icon="@(page.Icon)" Class="mr-2"/>
@(page.Name)
</MudButton>
} }
</MudHidden> </MudNavMenu>
<MudSpacer/> <MudSpacer/>
<SearchButtonComponent Id="desktop-searchButton"/> <div class="drawerFooter">
</MudAppBar> <SearchButtonComponent/>
<MudHidden Breakpoint="Breakpoint.SmAndDown" Invert="true"> </div>
<MudDrawer @bind-Open="_drawerOpen" ClipMode="DrawerClipMode.Always" Elevation="2"> </MudDrawer>
<MudPaper Width="250px" Class="d-inline-flex py-3" Elevation="0">
<MudNavMenu Class="mud-width-full flex-grow-1">
@foreach (var page in WebsiteData.GetPages())
{
<MudNavLink Href="@(page.Href)" Icon="@(page.Icon)">@(page.Name)</MudNavLink>
}
</MudNavMenu>
</MudPaper>
</MudDrawer>
</MudHidden>
<MudMainContent> <MudMainContent>
<MudContainer Class="px-8" MaxWidth="MaxWidth.False"> <MudContainer Class="px-8" MaxWidth="MaxWidth.False">
@@ -61,26 +48,49 @@
</MudMainContent> </MudMainContent>
</MudLayout> </MudLayout>
<FooterComponent></FooterComponent> <FooterComponent/>
<style>
.mobile-menu-fab {
position: fixed;
top: 12px;
left: 12px;
z-index: 999;
background-color: var(--accent);
border-radius: 8px;
padding: 8px;
color: white;
}
.drawerHeader {
padding: 20px 16px 16px;
border-bottom: 1px solid var(--paper-border);
}
.drawerTitle {
font-weight: 700;
color: white;
}
.drawerNav {
padding: 8px 0;
}
.drawerFooter {
padding: 16px;
}
</style>
@code { @code {
private bool _isDarkMode = true; private bool _isDarkMode = true;
private MudThemeProvider _mudThemeProvider; private MudThemeProvider _mudThemeProvider = null!;
bool _drawerOpen = true; bool _drawerOpen = true;
void DrawerToggle()
{
_drawerOpen = !_drawerOpen;
}
protected override void OnInitialized() protected override void OnInitialized()
{ {
base.OnInitialized(); base.OnInitialized();
CollectFirstPageLoaded(); CollectFirstPageLoaded();
} }
@@ -108,36 +118,7 @@
new Dictionary<string, string> { { "page", rootUrl } }); new Dictionary<string, string> { { "page", rootUrl } });
} }
protected override async Task OnInitializedAsync()
{
await Focus();
}
private async Task Focus()
{
// await jsRuntime.InvokeVoidAsync("SetFocusToElement", pageContents);
}
protected override async void OnAfterRender(bool firstRender)
{
// await jsRuntime.InvokeVoidAsync("SetFocusToElement", pageContents);
}
void IDisposable.Dispose() void IDisposable.Dispose()
{ {
} }
}
void HasChanged()
{
StateHasChanged();
}
private void HandleKeyDown(KeyboardEventArgs keyboardEventArgs)
{
if ((keyboardEventArgs.CtrlKey || keyboardEventArgs.MetaKey) && keyboardEventArgs.Key.ToLower() == "k")
{
SearchService.Show();
}
}
}
+3 -9
View File
@@ -1,13 +1,7 @@
.layoutContainer { .content {
height: 100vh;
overflow-y: scroll;
overflow-x: hidden;
}
.content {
margin-bottom: 64px;
display: flex; display: flex;
min-width: 100%; min-width: 100%;
min-height: 100%; min-height: 100%;
flex-direction: column; flex-direction: column;
} padding-top: 16px;
}
+1 -3
View File
@@ -37,9 +37,7 @@
--info-hover: #451376; --info-hover: #451376;
--info-border-hover: #210b36; --info-border-hover: #210b36;
--dialog-border-color: black; --dialog-radius: 12px;
--dialog-border-width: 2px;
--dialog-radius: 6px;
} }
html { html {