1
0
mirror of synced 2024-11-24 06:50:15 +01:00
TaikoLocalServer/TaikoWebUI
KIT! ec8ceebf12 README Overhaul, added DisplayUnplayedDans option
You can now hide all unplayed dan entries.
2024-11-12 17:16:04 +01:00
..
Components Admins can now click on players on the song page 2024-11-08 22:15:15 +01:00
Localization Updated highscore page styling, fixed empty entries 2024-10-29 14:33:03 +01:00
Pages README Overhaul, added DisplayUnplayedDans option 2024-11-12 17:16:04 +01:00
Properties initial commit 2023-09-09 21:58:20 +09:00
Services Costume name localization 2024-10-25 15:51:42 +02:00
Settings README Overhaul, added DisplayUnplayedDans option 2024-11-12 17:16:04 +01:00
Shared Major refactors including frontend requests refactors, authentication refactors and request compressions 2024-05-25 18:12:30 +01:00
Utilities All images are now webp, Puchi has a floating animation 2024-10-25 10:06:14 +02:00
wwwroot README Overhaul, added DisplayUnplayedDans option 2024-11-12 17:16:04 +01:00
_Imports.razor Add translation framework and example data 2024-01-22 01:13:13 +08:00
.gitignore initial commit 2023-09-09 21:58:20 +09:00
App.razor Add Dark Mode toggle 2024-03-27 12:49:27 -04:00
GlobalUsings.cs Pull recent plays to Song page 2024-03-09 23:49:47 -05:00
Program.cs Moved all Breadcrumbs to AppBar 2024-08-13 17:07:39 +02:00
README.md README Overhaul, added DisplayUnplayedDans option 2024-11-12 17:16:04 +01:00
ResXMudLocalizer.cs Stage changes 2024-03-16 17:46:06 +08:00
TaikoWebUI.csproj Add markdown support for Dashboard page 2024-06-05 23:19:14 -04:00
TaikoWebUI.sln initial commit 2023-09-09 21:58:20 +09:00

Taiko Web UI

This is the solution for the front end part.
It is implemented with Blazor Webassembly (also in C#).

TaikoWebUI appsettings.json config

This section is for configuring the TaikoWebUI appsettings.json file.
This file is used to configure the web UI.

{
  "WebUiSettings": {
    "Title": "TaikoWebUI",
    "LoginRequired": "false", //Setting this to true will change the UI to allow users to register / login.
    "OnlyAdmin": "false",
    "BoundAccessCodeUpperLimit": "3",
    "RegisterWithLastPlayTime": "false",
    "AllowUserDelete": "true",
    "AllowFreeProfileEditing": "true", //Enabling this allows user to set all their profile settings freely
                                       //Bypassing the need to unlock titles, costumes, etc.
    "DisplayUnplayedDans": "false", //Display all Dans, even ones that haven't been played yet.
    "MaxWidth": "3", //0:Large, 1:Medium, 2:Small, 3:ExtraLarge, 4:ExtraExtraLarge
    "SongLeaderboardSettings": {
      "DisablePagination": "false",
      "PageSize": "10"
    },
    "SupportedLanguages": [
      {
        "CultureCode": "en-US",
        "DisplayName": "English"
      },
      {
        "CultureCode": "fr-FR",
        "DisplayName": "Français"
      },
      {
        "CultureCode": "zh-Hans",
        "DisplayName": "简体中文"
      },
      {
        "CultureCode": "zh-Hant",
        "DisplayName": "繁體中文"
      },
      {
        "CultureCode": "ja",
        "DisplayName": "日本語"
      }
    ]
  }
}