forked from julianperrott/WowClassicGrindBot
-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Frontend: Added Blazor.Bootstrap Frontend: Added support for light theme and be able to switch between light and dark on demand. Frontend: Removed hacks around PathSelectorComponent.
- Loading branch information
Showing
45 changed files
with
921 additions
and
1,776 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
@using Frontend | ||
|
||
@using Microsoft.AspNetCore.Components.Web | ||
@using static Microsoft.AspNetCore.Components.Web.RenderMode | ||
|
||
@inject IHostEnvironment Env | ||
|
||
<!DOCTYPE html> | ||
|
@@ -10,34 +13,27 @@ | |
<title>BlazorServer</title> | ||
<base href="/" /> | ||
|
||
<link rel="stylesheet" href="_content/Frontend/css/bootstrap/bootstrap.icons.min.css" /> | ||
<!--<link rel="stylesheet" href="_content/Frontend/css/bootstrap/bootstrap-theme.min.css" />--> | ||
<link rel="stylesheet" href="_content/Frontend/css/bootstrap/bootstrap.min.css" /> | ||
<link rel="stylesheet" href="_content/Frontend/css/bootstrap/bootstrap-dark.min.css" /> | ||
|
||
<script src="_content/BlazorTable/BlazorTable.min.js"></script> | ||
|
||
<script src="_content/MatBlazor/dist/matBlazor.js"></script> | ||
<link href="_content/MatBlazor/dist/matBlazor.css" rel="stylesheet" /> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css" rel="stylesheet" /> | ||
<link href="_content/Blazor.Bootstrap/blazor.bootstrap.css" rel="stylesheet" /> | ||
|
||
<link href="_content/Frontend/css/site.css" rel="stylesheet" /> | ||
<script src="_content/Frontend/script/d3.v7.min.js"></script> | ||
|
||
<link rel="stylesheet" href="_content/Frontend/css/animate-v4.0.0.min.css" /> | ||
<link rel="stylesheet" href="BlazorServer.styles.css" asp-append-version="true" /> | ||
|
||
<script>const whTooltips = { colorLinks: true, iconizeLinks: true, renameLinks: true };</script> | ||
<script src="_content/Frontend/script/power.js"></script> | ||
|
||
<script src="_content/Frontend/script/panzoom.min.js"></script> | ||
<script src="_content/Frontend/script/gather.js"></script> | ||
<script src="_content/Frontend/script/route.js"></script> | ||
|
||
<link href="@(nameof(BlazorServer)).styles.css" asp-append-version="true" rel="stylesheet" /> | ||
|
||
<HeadOutlet @rendermode="@InteractiveServer" /> | ||
</head> | ||
<body> | ||
<app> | ||
<Routes @rendermode="InteractiveServer" /> | ||
</app> | ||
|
||
<div id="blazor-error-ui"> | ||
@if (Env.IsDevelopment()) | ||
{ | ||
|
@@ -53,6 +49,17 @@ | |
} | ||
</div> | ||
|
||
|
||
<Routes @rendermode="@InteractiveServer" /> | ||
<script src="_framework/blazor.web.js"></script> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script> | ||
<!-- Add chart.js reference if chart components are used in your application. --> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/4.4.1/chart.umd.js" integrity="sha512-ZwR1/gSZM3ai6vCdI+LVF1zSq/5HznD3ZSTk7kajkaj4D292NLuduDCO1c/NT8Id+jE58KYLKT7hXnbtryGmMg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
<!-- Add chartjs-plugin-datalabels.min.js reference if chart components with data label feature is used in your application. --> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/chartjs-plugin-datalabels/2.2.0/chartjs-plugin-datalabels.min.js" integrity="sha512-JPcRR8yFa8mmCsfrw4TNte1ZvF1e3+1SdGMslZvmrzDYxS69J7J49vkFL8u6u8PlPJK+H3voElBtUCzaXj+6ig==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
<!-- Add sortable.js reference if SortableList component is used in your application. --> | ||
<script src="https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js"></script> | ||
<script src="_content/Blazor.Bootstrap/blazor.bootstrap.js"></script> | ||
</body> | ||
</html> |
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
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
Oops, something went wrong.