Compare commits
18 Commits
c2c0c8d1ad
...
LC
| Author | SHA1 | Date | |
|---|---|---|---|
| 2883b537ab | |||
| 6d61bce884 | |||
| fd6506af7b | |||
| 5b14466d24 | |||
| 38a825b50b | |||
| 7aa990a12b | |||
| 90cbc7c506 | |||
| 794fc621ff | |||
| d426ab1e78 | |||
| 6ddc6be910 | |||
| f3c4c55c55 | |||
| c94e07d6c0 | |||
| eeaf87a07e | |||
| 04b5303dac | |||
| 73a4e0b5bb | |||
| 57aebb7b1c | |||
| 76d090b744 | |||
| cb931df1b8 |
@@ -6,28 +6,15 @@ namespace DahuaIPCRename
|
|||||||
{
|
{
|
||||||
public static Dictionary<string, string> listIPC = new Dictionary<string, string>
|
public static Dictionary<string, string> listIPC = new Dictionary<string, string>
|
||||||
{
|
{
|
||||||
{"172.16.54.18","Ворота 35"},
|
{"172.22.10.122","Этаж 2|Пом. 247"},
|
||||||
{"172.16.54.20","Ворота 36"},
|
{"172.22.10.123","Этаж 2|Пом. 248-4"},
|
||||||
{"172.16.54.21","Ворота 31"},
|
{"172.22.10.124","Этаж 2|Пом. 248-5"},
|
||||||
{"172.16.54.22","Ворота 32"},
|
{"172.22.10.125","Этаж 2|Пом. 248-2"},
|
||||||
{"172.16.54.23","Ворота 33"},
|
{"172.22.10.126","Этаж 2|Пом. 248-6"},
|
||||||
{"172.16.54.24","Ворота 34"},
|
{"172.22.10.127","Этаж 2|Пом. 248-3"},
|
||||||
{"172.16.54.28","Ворота 16"},
|
{"172.22.10.128","Этаж 2|Пом. 273-1"},
|
||||||
{"172.16.54.29","Ворота 26"},
|
{"172.22.10.129","Этаж 2|Пом. 268-1"},
|
||||||
{"172.16.54.30","Ворота 20"},
|
{"172.22.10.130","Этаж 2|Пом. 273-2"}
|
||||||
{"172.16.54.31","Ворота 22"},
|
|
||||||
{"172.16.54.32","Ворота 18"},
|
|
||||||
{"172.16.54.33","Ворота 21"},
|
|
||||||
{"172.16.54.34","Ворота 24"},
|
|
||||||
{"172.16.54.35","Ворота 27"},
|
|
||||||
{"172.16.54.36","Ворота 29"},
|
|
||||||
{"172.16.54.37","Ворота 25"},
|
|
||||||
{"172.16.54.38","Ворота 23"},
|
|
||||||
{"172.16.54.39","Ворота 15"},
|
|
||||||
{"172.16.54.40","Ворота 17"},
|
|
||||||
{"172.16.54.41","Ворота 37"},
|
|
||||||
{"172.16.54.42","Ворота 19"},
|
|
||||||
{"172.16.54.43","Ворота 28"}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static async Task Main(string[] args)
|
static async Task Main(string[] args)
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Emgu.CV" Version="4.13.0.5924" />
|
||||||
|
<PackageReference Include="Emgu.CV.runtime.windows" Version="4.13.0.5924" />
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.2.11" />
|
||||||
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.9" />
|
||||||
|
<PackageReference Include="System.Drawing.Common" Version="10.0.9" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Update="haarcascade_frontalface_default.xml">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
using Microsoft.AspNetCore.SignalR;
|
||||||
|
|
||||||
|
namespace FaceRecognitionApp.Hubs;
|
||||||
|
|
||||||
|
public class FaceHub : Hub
|
||||||
|
{
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
namespace FaceRecognitionApp.Models;
|
||||||
|
|
||||||
|
public class Employee
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Name { get; set; } = string.Empty;
|
||||||
|
public string? Department { get; set; }
|
||||||
|
public byte[] FaceDescriptor { get; set; } = Array.Empty<byte>();
|
||||||
|
public byte[]? Photo { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class DetectedFace
|
||||||
|
{
|
||||||
|
public byte[] ImageData { get; set; } = Array.Empty<byte>();
|
||||||
|
public bool IsRecognized { get; set; }
|
||||||
|
public Employee? MatchedEmployee { get; set; }
|
||||||
|
public double Confidence { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
using FaceRecognitionApp.Hubs;
|
||||||
|
using FaceRecognitionApp.Services;
|
||||||
|
using Microsoft.AspNetCore.SignalR;
|
||||||
|
|
||||||
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
// Регистрация сервисов
|
||||||
|
builder.Services.AddSingleton<DatabaseService>();
|
||||||
|
builder.Services.AddSingleton<FaceRecognitionService>();
|
||||||
|
builder.Services.AddSignalR();
|
||||||
|
|
||||||
|
var app = builder.Build();
|
||||||
|
|
||||||
|
// 1. Включаем поиск файлов по умолчанию (index.html, default.html и т.д.)
|
||||||
|
app.UseDefaultFiles();
|
||||||
|
|
||||||
|
// 2. Включаем раздачу статических файлов (css, js, картинки)
|
||||||
|
app.UseStaticFiles();
|
||||||
|
|
||||||
|
// 3. Подключаем SignalR хаб
|
||||||
|
app.MapHub<FaceHub>("/faceHub");
|
||||||
|
|
||||||
|
// Инициализация камеры и распознавания
|
||||||
|
var db = app.Services.GetRequiredService<DatabaseService>();
|
||||||
|
var faceService = app.Services.GetRequiredService<FaceRecognitionService>();
|
||||||
|
|
||||||
|
// URL камеры (замените на свой или используйте тестовый видеофайл)
|
||||||
|
var cameraUrl = Environment.GetEnvironmentVariable("CAMERA_URL") ?? "rtsp://admin:4NUDZhJ7@172.22.10.101:554/cam/realmonitor?channel=1&subtype=1";
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Connecting to camera: {cameraUrl}...");
|
||||||
|
var camera = new CameraService(cameraUrl, faceService, async (face) => {
|
||||||
|
var hub = app.Services.GetRequiredService<IHubContext<FaceHub>>();
|
||||||
|
await hub.Clients.All.SendAsync("NewFace", new
|
||||||
|
{
|
||||||
|
image = Convert.ToBase64String(face.ImageData),
|
||||||
|
isRecognized = face.IsRecognized,
|
||||||
|
name = face.MatchedEmployee?.Name ?? "Unknown"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
camera.Start();
|
||||||
|
Console.WriteLine("✅ Camera service started.");
|
||||||
|
|
||||||
|
// Корректное завершение работы камеры при остановке приложения
|
||||||
|
app.Lifetime.ApplicationStopping.Register(() => {
|
||||||
|
Console.WriteLine("Shutting down camera...");
|
||||||
|
camera.Dispose();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"⚠️ Camera Error: {ex.Message}");
|
||||||
|
Console.WriteLine("Application will run without camera monitoring.");
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.WriteLine("🚀 Application is ready. Open http://localhost:5290 in your browser.");
|
||||||
|
app.Run();
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"$schema": "http://json.schemastore.org/launchsettings.json",
|
||||||
|
"iisSettings": {
|
||||||
|
"windowsAuthentication": false,
|
||||||
|
"anonymousAuthentication": true,
|
||||||
|
"iisExpress": {
|
||||||
|
"applicationUrl": "http://localhost:43065",
|
||||||
|
"sslPort": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"profiles": {
|
||||||
|
"http": {
|
||||||
|
"commandName": "Project",
|
||||||
|
"dotnetRunMessages": true,
|
||||||
|
"launchBrowser": true,
|
||||||
|
"applicationUrl": "http://localhost:5290",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"IIS Express": {
|
||||||
|
"commandName": "IISExpress",
|
||||||
|
"launchBrowser": true,
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,144 @@
|
|||||||
|
using Emgu.CV;
|
||||||
|
using FaceRecognitionApp.Models;
|
||||||
|
|
||||||
|
namespace FaceRecognitionApp.Services;
|
||||||
|
|
||||||
|
public class CameraService : IDisposable
|
||||||
|
{
|
||||||
|
private VideoCapture? _capture;
|
||||||
|
private readonly FaceRecognitionService _recognition;
|
||||||
|
private readonly Action<DetectedFace> _onDetected;
|
||||||
|
private CancellationTokenSource? _cts;
|
||||||
|
private Task? _task;
|
||||||
|
private DateTime _lastTime = DateTime.MinValue;
|
||||||
|
private bool _isDisposed = false;
|
||||||
|
|
||||||
|
public CameraService(string url, FaceRecognitionService recognition, Action<DetectedFace> onDetected)
|
||||||
|
{
|
||||||
|
_recognition = recognition;
|
||||||
|
_onDetected = onDetected;
|
||||||
|
|
||||||
|
Console.WriteLine($"Initializing camera with URL: {url}");
|
||||||
|
_capture = new VideoCapture(url);
|
||||||
|
|
||||||
|
// Даем камере время на инициализацию потока
|
||||||
|
Thread.Sleep(1000);
|
||||||
|
|
||||||
|
if (!_capture.IsOpened)
|
||||||
|
throw new Exception("Camera failed to open. Check URL and network connection.");
|
||||||
|
|
||||||
|
Console.WriteLine("Camera hardware initialized.");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Start()
|
||||||
|
{
|
||||||
|
if (_isDisposed) return;
|
||||||
|
|
||||||
|
_cts = new CancellationTokenSource();
|
||||||
|
_task = Task.Run(() => Loop(_cts.Token));
|
||||||
|
Console.WriteLine("Camera processing loop started.");
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task Loop(CancellationToken token)
|
||||||
|
{
|
||||||
|
Console.WriteLine("🎥 Frame processing loop active...");
|
||||||
|
|
||||||
|
while (!token.IsCancellationRequested)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using var frame = new Mat();
|
||||||
|
|
||||||
|
// Читаем кадр с таймаутом
|
||||||
|
if (_capture!.Read(frame))
|
||||||
|
{
|
||||||
|
if (!frame.IsEmpty && frame.Width > 0 && frame.Height > 0)
|
||||||
|
{
|
||||||
|
var face = _recognition.ProcessFrame(frame);
|
||||||
|
|
||||||
|
if (face != null)
|
||||||
|
{
|
||||||
|
// Лимит частоты отправок (не чаще раза в 2 секунды)
|
||||||
|
if ((DateTime.Now - _lastTime).TotalMilliseconds > 2000)
|
||||||
|
{
|
||||||
|
_lastTime = DateTime.Now;
|
||||||
|
_onDetected(face);
|
||||||
|
|
||||||
|
string status = face.IsRecognized
|
||||||
|
? $"✅ Recognized: {face.MatchedEmployee?.Name}"
|
||||||
|
: "❌ Unknown face";
|
||||||
|
|
||||||
|
Console.WriteLine($"{DateTime.Now:HH:mm:ss} - {status}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Если Read вернул false, возможно потеря связи
|
||||||
|
Console.WriteLine("⚠️ Failed to read frame, retrying...");
|
||||||
|
await Task.Delay(500, token);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Небольшая задержка, чтобы не грузить процессор на 100%
|
||||||
|
await Task.Delay(50, token);
|
||||||
|
}
|
||||||
|
catch (OperationCanceledException)
|
||||||
|
{
|
||||||
|
// Это нормальная ситуация при остановке
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"⚠️ Error in camera loop: {ex.Message}");
|
||||||
|
await Task.Delay(1000, token);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.WriteLine("🛑 Camera loop finished.");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Stop()
|
||||||
|
{
|
||||||
|
if (_cts == null) return;
|
||||||
|
|
||||||
|
Console.WriteLine("Stopping camera service...");
|
||||||
|
_cts.Cancel();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// Ждем завершения задачи, но не бесконечно
|
||||||
|
if (_task != null)
|
||||||
|
{
|
||||||
|
_task.Wait(TimeSpan.FromSeconds(5));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (AggregateException ex)
|
||||||
|
{
|
||||||
|
// Игнорируем ошибки отмены задачи
|
||||||
|
foreach (var inner in ex.InnerExceptions)
|
||||||
|
{
|
||||||
|
if (!(inner is TaskCanceledException || inner is OperationCanceledException))
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Unexpected error during stop: {inner.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Error stopping task: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
if (_isDisposed) return;
|
||||||
|
|
||||||
|
Stop();
|
||||||
|
_capture?.Dispose();
|
||||||
|
_cts?.Dispose();
|
||||||
|
_isDisposed = true;
|
||||||
|
|
||||||
|
Console.WriteLine("Camera resources released.");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
using Microsoft.Data.Sqlite;
|
||||||
|
using FaceRecognitionApp.Models;
|
||||||
|
|
||||||
|
namespace FaceRecognitionApp.Services;
|
||||||
|
|
||||||
|
public class DatabaseService
|
||||||
|
{
|
||||||
|
private readonly string _connectionString = "Data Source=faces.db";
|
||||||
|
|
||||||
|
public DatabaseService()
|
||||||
|
{
|
||||||
|
InitializeDatabase();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void InitializeDatabase()
|
||||||
|
{
|
||||||
|
using var connection = new SqliteConnection(_connectionString);
|
||||||
|
connection.Open();
|
||||||
|
var cmd = connection.CreateCommand();
|
||||||
|
cmd.CommandText = @"
|
||||||
|
CREATE TABLE IF NOT EXISTS Employees (
|
||||||
|
Id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
|
Name TEXT NOT NULL,
|
||||||
|
Department TEXT,
|
||||||
|
FaceDescriptor BLOB,
|
||||||
|
Photo BLOB
|
||||||
|
)";
|
||||||
|
cmd.ExecuteNonQuery();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void AddEmployee(string name, string? dept, byte[] descriptor, byte[] photo)
|
||||||
|
{
|
||||||
|
using var connection = new SqliteConnection(_connectionString);
|
||||||
|
connection.Open();
|
||||||
|
var cmd = connection.CreateCommand();
|
||||||
|
cmd.CommandText = "INSERT INTO Employees (Name, Department, FaceDescriptor, Photo) VALUES (@n, @d, @desc, @p)";
|
||||||
|
cmd.Parameters.AddWithValue("@n", name);
|
||||||
|
cmd.Parameters.AddWithValue("@d", (object?)dept ?? DBNull.Value);
|
||||||
|
cmd.Parameters.AddWithValue("@desc", descriptor);
|
||||||
|
cmd.Parameters.AddWithValue("@p", photo);
|
||||||
|
cmd.ExecuteNonQuery();
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Employee> GetAllEmployees()
|
||||||
|
{
|
||||||
|
var list = new List<Employee>();
|
||||||
|
using var connection = new SqliteConnection(_connectionString);
|
||||||
|
connection.Open();
|
||||||
|
var cmd = connection.CreateCommand();
|
||||||
|
cmd.CommandText = "SELECT * FROM Employees";
|
||||||
|
using var reader = cmd.ExecuteReader();
|
||||||
|
while (reader.Read())
|
||||||
|
{
|
||||||
|
list.Add(new Employee
|
||||||
|
{
|
||||||
|
Id = reader.GetInt32(0),
|
||||||
|
Name = reader.GetString(1),
|
||||||
|
Department = reader.IsDBNull(2) ? null : reader.GetString(2),
|
||||||
|
FaceDescriptor = (byte[])reader[3],
|
||||||
|
Photo = reader.IsDBNull(4) ? null : (byte[])reader[4]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,234 @@
|
|||||||
|
using Emgu.CV;
|
||||||
|
using Emgu.CV.CvEnum;
|
||||||
|
using Emgu.CV.Face;
|
||||||
|
using Emgu.CV.Structure;
|
||||||
|
using Emgu.CV.Util;
|
||||||
|
using FaceRecognitionApp.Models;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
namespace FaceRecognitionApp.Services;
|
||||||
|
|
||||||
|
public class FaceRecognitionService : IDisposable
|
||||||
|
{
|
||||||
|
private readonly LBPHFaceRecognizer _recognizer;
|
||||||
|
private readonly CascadeClassifier _cascade;
|
||||||
|
private readonly DatabaseService _db;
|
||||||
|
private List<Employee> _employees = new();
|
||||||
|
private bool _isTrained = false;
|
||||||
|
|
||||||
|
// Коэффициент уменьшения кадра для ускорения поиска
|
||||||
|
private const double ResizeScale = 0.5;
|
||||||
|
private const int OriginalMinSize = 30;
|
||||||
|
private readonly Size _scaledMinSize;
|
||||||
|
|
||||||
|
public FaceRecognitionService(DatabaseService db)
|
||||||
|
{
|
||||||
|
_db = db;
|
||||||
|
var cascadePath = Path.Combine(AppContext.BaseDirectory, "haarcascade_frontalface_default.xml");
|
||||||
|
if (!File.Exists(cascadePath))
|
||||||
|
throw new FileNotFoundException($"Cascade file missing at: {cascadePath}");
|
||||||
|
|
||||||
|
_cascade = new CascadeClassifier(cascadePath);
|
||||||
|
_recognizer = new LBPHFaceRecognizer(1, 8, 8, 8, 80.0);
|
||||||
|
|
||||||
|
// Вычисляем минимальный размер лица для уменьшенного кадра
|
||||||
|
int scaledMin = (int)(OriginalMinSize * ResizeScale);
|
||||||
|
_scaledMinSize = new Size(Math.Max(scaledMin, 10), Math.Max(scaledMin, 10));
|
||||||
|
|
||||||
|
TrainModel();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void TrainModel()
|
||||||
|
{
|
||||||
|
_employees = _db.GetAllEmployees();
|
||||||
|
if (!_employees.Any()) return;
|
||||||
|
|
||||||
|
using var images = new VectorOfMat();
|
||||||
|
using var labels = new VectorOfInt();
|
||||||
|
|
||||||
|
foreach (var emp in _employees)
|
||||||
|
{
|
||||||
|
if (emp.Photo == null || emp.Photo.Length == 0) continue;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using var ms = new MemoryStream(emp.Photo);
|
||||||
|
using var bmp = new Bitmap(ms);
|
||||||
|
using var mat = BitmapToMat(bmp);
|
||||||
|
using var gray = new Mat();
|
||||||
|
|
||||||
|
CvInvoke.CvtColor(mat, gray, ColorConversion.Bgr2Gray);
|
||||||
|
|
||||||
|
// Ищем лицо на фото сотрудника для обрезки
|
||||||
|
var rects = _cascade.DetectMultiScale(gray, 1.1, 5, new Size(30, 30));
|
||||||
|
|
||||||
|
if (rects.Length > 0)
|
||||||
|
{
|
||||||
|
using var faceMat = new Mat(gray, rects[0]);
|
||||||
|
using var resized = new Mat();
|
||||||
|
CvInvoke.Resize(faceMat, resized, new Size(100, 100));
|
||||||
|
|
||||||
|
images.Push(resized);
|
||||||
|
labels.Push(new int[] { emp.Id });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Training error for {emp.Name}: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (images.Size > 0)
|
||||||
|
{
|
||||||
|
_recognizer.Train(images, labels);
|
||||||
|
_isTrained = true;
|
||||||
|
Console.WriteLine($"✅ Trained on {images.Size} faces.");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Console.WriteLine("⚠️ No valid faces found for training.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public DetectedFace? ProcessFrame(Mat frame)
|
||||||
|
{
|
||||||
|
if (frame == null || frame.IsEmpty) return null;
|
||||||
|
|
||||||
|
// === УСКОРЕНИЕ: Уменьшаем кадр для поиска лиц ===
|
||||||
|
using var smallFrame = new Mat();
|
||||||
|
CvInvoke.Resize(frame, smallFrame, new Size(), ResizeScale, ResizeScale, Inter.Linear);
|
||||||
|
|
||||||
|
using var gray = new Mat();
|
||||||
|
CvInvoke.CvtColor(smallFrame, gray, ColorConversion.Bgr2Gray);
|
||||||
|
|
||||||
|
// Ищем лица на уменьшенном кадре
|
||||||
|
var rects = _cascade.DetectMultiScale(gray, 1.1, 5, _scaledMinSize);
|
||||||
|
|
||||||
|
if (rects.Length == 0)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
var smallRect = rects[0];
|
||||||
|
|
||||||
|
// === ВОССТАНОВЛЕНИЕ координат к оригинальному размеру ===
|
||||||
|
int invScale = (int)(1.0 / ResizeScale);
|
||||||
|
var originalRect = new Rectangle(
|
||||||
|
smallRect.X * invScale,
|
||||||
|
smallRect.Y * invScale,
|
||||||
|
smallRect.Width * invScale,
|
||||||
|
smallRect.Height * invScale
|
||||||
|
);
|
||||||
|
|
||||||
|
// Проверка границ по оригинальному кадру
|
||||||
|
if (originalRect.X < 0 || originalRect.Y < 0 ||
|
||||||
|
originalRect.Right > frame.Width || originalRect.Bottom > frame.Height)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
// Вырезаем лицо из ОРИГИНАЛЬНОГО кадра (лучшее качество для распознавания)
|
||||||
|
using var faceMat = new Mat(frame, originalRect);
|
||||||
|
using var faceGray = new Mat();
|
||||||
|
CvInvoke.CvtColor(faceMat, faceGray, ColorConversion.Bgr2Gray);
|
||||||
|
|
||||||
|
using var resized = new Mat();
|
||||||
|
CvInvoke.Resize(faceGray, resized, new Size(100, 100));
|
||||||
|
|
||||||
|
var result = new DetectedFace();
|
||||||
|
|
||||||
|
if (_isTrained)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var prediction = _recognizer.Predict(resized);
|
||||||
|
|
||||||
|
int label = prediction.Label;
|
||||||
|
double confidence = prediction.Distance;
|
||||||
|
|
||||||
|
if (label != -1 && confidence < 80)
|
||||||
|
{
|
||||||
|
result.IsRecognized = true;
|
||||||
|
result.MatchedEmployee = _employees.FirstOrDefault(e => e.Id == label);
|
||||||
|
result.Confidence = confidence;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Prediction error: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Конвертация в JPEG для веб-интерфейса
|
||||||
|
using var ms = new MemoryStream();
|
||||||
|
using var bmp = MatToBitmap(resized);
|
||||||
|
bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
|
||||||
|
result.ImageData = ms.ToArray();
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Безопасная конвертация Bitmap → Mat через промежуточный буфер
|
||||||
|
/// </summary>
|
||||||
|
private static Mat BitmapToMat(Bitmap bitmap)
|
||||||
|
{
|
||||||
|
var mat = new Mat(bitmap.Height, bitmap.Width, DepthType.Cv8U, 3);
|
||||||
|
|
||||||
|
var data = bitmap.LockBits(
|
||||||
|
new Rectangle(0, 0, bitmap.Width, bitmap.Height),
|
||||||
|
System.Drawing.Imaging.ImageLockMode.ReadOnly,
|
||||||
|
System.Drawing.Imaging.PixelFormat.Format24bppRgb);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
int length = Math.Abs(data.Stride) * bitmap.Height;
|
||||||
|
byte[] buffer = new byte[length];
|
||||||
|
Marshal.Copy(data.Scan0, buffer, 0, length);
|
||||||
|
Marshal.Copy(buffer, 0, mat.DataPointer, length);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
bitmap.UnlockBits(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
return mat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Безопасная конвертация Mat → Bitmap через промежуточный буфер
|
||||||
|
/// </summary>
|
||||||
|
private static Bitmap MatToBitmap(Mat mat)
|
||||||
|
{
|
||||||
|
var colorMat = new Mat();
|
||||||
|
if (mat.NumberOfChannels == 1)
|
||||||
|
CvInvoke.CvtColor(mat, colorMat, ColorConversion.Gray2Bgr);
|
||||||
|
else
|
||||||
|
mat.CopyTo(colorMat);
|
||||||
|
|
||||||
|
var bmp = new Bitmap(colorMat.Width, colorMat.Height, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
|
||||||
|
|
||||||
|
var data = bmp.LockBits(
|
||||||
|
new Rectangle(0, 0, bmp.Width, bmp.Height),
|
||||||
|
System.Drawing.Imaging.ImageLockMode.WriteOnly,
|
||||||
|
System.Drawing.Imaging.PixelFormat.Format24bppRgb);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
int length = Math.Abs(data.Stride) * colorMat.Height;
|
||||||
|
byte[] buffer = new byte[length];
|
||||||
|
Marshal.Copy(colorMat.DataPointer, buffer, 0, length);
|
||||||
|
Marshal.Copy(buffer, 0, data.Scan0, length);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
bmp.UnlockBits(data);
|
||||||
|
colorMat.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
return bmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
_cascade?.Dispose();
|
||||||
|
_recognizer?.Dispose();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*",
|
||||||
|
"Camera": {
|
||||||
|
"Url": "rtsp://admin:4NUDZhJ7@172.22.10.101:554/cam/realmonitor?channel=1&subtype=0"
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,73 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Face Recognition</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: sans-serif;
|
||||||
|
background: #222;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#gallery {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 10px;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
background: #333;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 8px;
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
border: 3px solid red;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.known img {
|
||||||
|
border-color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
.name {
|
||||||
|
margin-top: 5px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.time {
|
||||||
|
font-size: 0.8em;
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Live Face Detection</h1>
|
||||||
|
<div id="gallery"></div>
|
||||||
|
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/microsoft-signalr/8.0.0/signalr.min.js"></script>
|
||||||
|
<script>
|
||||||
|
const connection = new signalR.HubConnectionBuilder().withUrl("/faceHub").build();
|
||||||
|
|
||||||
|
connection.on("NewFace", (data) => {
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.className = data.isRecognized ? 'card known' : 'card';
|
||||||
|
div.innerHTML = `
|
||||||
|
<img src="data:image/jpeg;base64,${data.image}" />
|
||||||
|
<div class="name">${data.isRecognized ? data.name : 'Unknown'}</div>
|
||||||
|
<div class="time">${new Date().toLocaleTimeString()}</div>
|
||||||
|
`;
|
||||||
|
const gallery = document.getElementById('gallery');
|
||||||
|
gallery.insertBefore(div, gallery.firstChild);
|
||||||
|
if (gallery.children.length > 20) gallery.lastChild.remove();
|
||||||
|
});
|
||||||
|
|
||||||
|
connection.start().catch(console.error);
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<base href="/" />
|
<base href="/" />
|
||||||
<link rel="stylesheet" href="bootstrap/bootstrap.min.css" />
|
<link rel="stylesheet" href="~/bootstrap/css/bootstrap.css" />
|
||||||
<link rel="stylesheet" href="app.css" />
|
<link rel="stylesheet" href="app.css" />
|
||||||
<link rel="stylesheet" href="Ministreliy.styles.css" />
|
<link rel="stylesheet" href="Ministreliy.styles.css" />
|
||||||
<link rel="icon" type="image/png" href="favicon.png" />
|
<link rel="icon" type="image/png" href="favicon.png" />
|
||||||
@@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
<Routes @rendermode="InteractiveServer" />
|
<Routes @rendermode="InteractiveServer" />
|
||||||
|
<script src="~/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
<script src="_framework/blazor.web.js"></script>
|
<script src="_framework/blazor.web.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
@@ -1,23 +1,72 @@
|
|||||||
@page "/database"
|
@page "/database"
|
||||||
|
@using Ministreliy.Models
|
||||||
|
@using Newtonsoft.Json
|
||||||
|
@using System.Text
|
||||||
|
@inject IJSRuntime JS
|
||||||
|
@inject NavigationManager NavManager
|
||||||
|
|
||||||
<PageTitle>База данных</PageTitle>
|
<PageTitle>База данных</PageTitle>
|
||||||
|
|
||||||
<ul class="nav nav-tabs">
|
<div>
|
||||||
<li class="nav-item">
|
<div class="row justify-content-between">
|
||||||
<a class="nav-link active" aria-current="page" href="database">Сводные данные</a>
|
<div class="col-10">
|
||||||
</li>
|
<ul class="nav nav-tabs">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="database/addtype">Типы устройств</a>
|
<a class="nav-link active" aria-current="page" href="database">Сводные данные</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="database/type">Типы устройств</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="database/device">Устройства</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
@* <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#addtype">
|
||||||
|
Добавить тип
|
||||||
|
</button>
|
||||||
|
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#deltype">
|
||||||
|
Удалить тип
|
||||||
|
</button> *@
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@if (listDeviceTypes.Count == 0 || listDeviceItems.Count == 0)
|
||||||
|
{
|
||||||
|
<p>@messageStatus</p>
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@code {
|
@code {
|
||||||
private int currentCount = 0;
|
public static List<DeviceType>? listDeviceTypes = new();
|
||||||
|
public static List<DeviceItem>? listDeviceItems = new();
|
||||||
|
public static HttpClient httpClient = new();
|
||||||
|
|
||||||
private void IncrementCount()
|
string? messageStatus = "Получаю данные...";
|
||||||
|
|
||||||
|
protected override async Task OnInitializedAsync()
|
||||||
{
|
{
|
||||||
currentCount++;
|
httpClient.BaseAddress = new Uri("http://localhost:5262/api/");
|
||||||
|
var devicetype = await httpClient.GetAsync("Device/GetTypes");
|
||||||
|
var deviceitem = await httpClient.GetAsync("Device/GetDevices");
|
||||||
|
listDeviceTypes = JsonConvert.DeserializeObject<List<DeviceType>>(await devicetype.Content.ReadAsStringAsync());
|
||||||
|
listDeviceItems = JsonConvert.DeserializeObject<List<DeviceItem>>(await deviceitem.Content.ReadAsStringAsync());
|
||||||
|
messageStatus = string.Empty;
|
||||||
|
if (listDeviceTypes.Count == 0)
|
||||||
|
{
|
||||||
|
messageStatus += $"нет типов устройств\r\n";
|
||||||
|
}
|
||||||
|
if (listDeviceItems.Count == 0)
|
||||||
|
{
|
||||||
|
messageStatus += $"нет устройств\r\n";
|
||||||
|
}
|
||||||
|
DataStore.ListDeviceTypesStore = listDeviceTypes;
|
||||||
|
DataStore.ListDeviceItemsStore = listDeviceItems;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,36 +0,0 @@
|
|||||||
@page "/database/addtype"
|
|
||||||
@using Ministreliy.Models
|
|
||||||
|
|
||||||
<PageTitle>База данных</PageTitle>
|
|
||||||
|
|
||||||
@if (listDT == null)
|
|
||||||
{
|
|
||||||
<p><em>Получаю данные...</em></p>
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
<ul class="nav nav-tabs">
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" aria-current="page" href="database">Active</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link active" href="database/addtype">Добавить Тип</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
}
|
|
||||||
|
|
||||||
@code {
|
|
||||||
private DeviceType dt;
|
|
||||||
private List<DeviceType> listDT;
|
|
||||||
|
|
||||||
protected override async Task OnInitializedAsync()
|
|
||||||
{
|
|
||||||
await Task.Delay(1000);
|
|
||||||
HttpClient http = new();
|
|
||||||
http.BaseAddress = new Uri("http://localhost:5262/api/");
|
|
||||||
var t = await http.GetAsync("Device/GetTypes");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,201 @@
|
|||||||
|
@page "/database/device"
|
||||||
|
@using Ministreliy.Models
|
||||||
|
@using System.Text.Json
|
||||||
|
@using Newtonsoft.Json
|
||||||
|
@using System.Text
|
||||||
|
@inject IJSRuntime JS
|
||||||
|
@inject NavigationManager NavManager
|
||||||
|
|
||||||
|
<PageTitle>База данных</PageTitle>
|
||||||
|
|
||||||
|
<ul class="nav nav-tabs">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" aria-current="page" href="database">Сводные данные</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="database/type">Типы устройств</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link active" href="database/device">Устройства</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="modal fade modal1" id="addtype" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="addtypeLabel" aria-hidden="true">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h1 class="modal-title fs-5" id="addtypeLabel">Заголовок</h1>
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="typeID" class="form-label">id типа</label>
|
||||||
|
<input type="number" class="form-control" id="typeID" @bind="id_type" />
|
||||||
|
</div>
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="typeName" class="form-label">Имя типа</label>
|
||||||
|
<textarea class="form-control" id="typeName" rows="3" @bind="name_type"></textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-primary" @onclick="SaveType">Сохранить</button>
|
||||||
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Закрыть</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@if (listDT.Count == 0 || listDT == null)
|
||||||
|
{
|
||||||
|
<p>@msg</p>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
@* <ul class="nav nav-tabs">
|
||||||
|
<li class="nav-item" role="presentation">
|
||||||
|
<a class="nav-link" aria-current="page" href="database">Сводные данные</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item" role="presentation">
|
||||||
|
<a class="nav-link active"
|
||||||
|
id="addtype-tab"
|
||||||
|
data-bs-toggle="tab"
|
||||||
|
data-bs-target="#addtype"
|
||||||
|
role="tab"
|
||||||
|
aria-controls="addtype"
|
||||||
|
aria-selected="true"
|
||||||
|
href="database/addtype">Добавить Тип</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul> *@
|
||||||
|
<br>
|
||||||
|
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#addtype">
|
||||||
|
Добавить тип
|
||||||
|
</button>
|
||||||
|
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#deltype">
|
||||||
|
Удалить тип
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<div class="card-body p-0">
|
||||||
|
<div class="tab-content" id="myTabContent">
|
||||||
|
<!-- Панель 1: Главная -->
|
||||||
|
<div class="tab-pane fade show active" id="addtype" role="tabpanel" aria-labelledby="addtype-tab">
|
||||||
|
<table class="table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">#</th>
|
||||||
|
<th scope="col">Название</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
@foreach (var item in listDT)
|
||||||
|
{
|
||||||
|
<tr>
|
||||||
|
<th scope="row">@item.Id</th>
|
||||||
|
<td>@item.Name</td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="modal fade modal2" id="deltype" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="deltypeLabel" aria-hidden="true">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h1 class="modal-title fs-5" id="deltypeLabel">Заголовок</h1>
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="mb-3">
|
||||||
|
<select class="form-select" @bind="selected_type" aria-label="Вибрать тип">
|
||||||
|
@foreach (var item in listDT)
|
||||||
|
{
|
||||||
|
<option value="@item.Id">@item.Name</option>
|
||||||
|
}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-primary" @onclick="DelType">Удалить</button>
|
||||||
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Закрыть</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@code {
|
||||||
|
//HttpClient http = new();
|
||||||
|
|
||||||
|
private DeviceType dt;
|
||||||
|
private List<DeviceType> listDT = new();
|
||||||
|
|
||||||
|
private string msg = "-= ПОЛУЧАЮ ДАННЫЕ =-", name_type = "";
|
||||||
|
private int id_type = 1, selected_type = 0;
|
||||||
|
|
||||||
|
protected override async Task OnInitializedAsync()
|
||||||
|
{
|
||||||
|
HttpClient http = new();
|
||||||
|
await Task.Delay(1000);
|
||||||
|
http.BaseAddress = new Uri("http://localhost:5262/api/");
|
||||||
|
var t = await http.GetAsync("Device/GetTypes");
|
||||||
|
if (t.StatusCode == System.Net.HttpStatusCode.NoContent)
|
||||||
|
{
|
||||||
|
msg = "-= ДАННЫХ НЕТ =-";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
listDT = JsonConvert.DeserializeObject<List<DeviceType>>(await t.Content.ReadAsStringAsync());
|
||||||
|
//id_type = listDT.Count + 1;
|
||||||
|
var a = listDT.Select(listDT => listDT.Id).ToList();
|
||||||
|
id_type = Enumerable.Range(1, int.MaxValue).FirstOrDefault(i => !a.Contains(i));
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private async Task SaveType()
|
||||||
|
{
|
||||||
|
HttpClient http = new();
|
||||||
|
dt = new();
|
||||||
|
dt.Id = id_type;
|
||||||
|
dt.Name = name_type;
|
||||||
|
http.BaseAddress = new Uri("http://localhost:5262/api/");
|
||||||
|
using StringContent content = new StringContent(
|
||||||
|
JsonConvert.SerializeObject(dt),
|
||||||
|
Encoding.UTF8,
|
||||||
|
"application/json"
|
||||||
|
);
|
||||||
|
var r = await http.PostAsync("Device/AddType", content);
|
||||||
|
if (r.IsSuccessStatusCode)
|
||||||
|
{
|
||||||
|
await JS.InvokeVoidAsync("eval", $"var myModal = bootstrap.Modal.getInstance(document.querySelector('.modal1')); myModal.hide();");
|
||||||
|
await Task.Delay(150);
|
||||||
|
id_type = listDT.Count+1;
|
||||||
|
NavManager.NavigateTo(NavManager.Uri, forceLoad: true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private async Task DelType()
|
||||||
|
{
|
||||||
|
HttpClient http = new();
|
||||||
|
http.BaseAddress = new Uri("http://localhost:5262/api/");
|
||||||
|
var r = await http.DeleteAsync($"Device/DelType?id={selected_type}");
|
||||||
|
if (r.IsSuccessStatusCode)
|
||||||
|
{
|
||||||
|
await JS.InvokeVoidAsync("eval", $"var myModal = bootstrap.Modal.getInstance(document.querySelector('.modal2')); myModal.hide();");
|
||||||
|
await Task.Delay(250);
|
||||||
|
id_type = listDT.Count + 1;
|
||||||
|
NavManager.NavigateTo(NavManager.Uri, forceLoad: true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,188 @@
|
|||||||
|
@page "/database/type"
|
||||||
|
@using Ministreliy.Models
|
||||||
|
@using System.Text.Json
|
||||||
|
@using Newtonsoft.Json
|
||||||
|
@using System.Text
|
||||||
|
@inject IJSRuntime JS
|
||||||
|
@inject NavigationManager NavManager
|
||||||
|
|
||||||
|
<PageTitle>База данных</PageTitle>
|
||||||
|
<div class="row justify-content-between">
|
||||||
|
<div class="col-10">
|
||||||
|
<ul class="nav nav-tabs">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" aria-current="page" href="database">Сводные данные</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link active" href="database/type">Типы устройств</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="database/device">Устройства</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<button type="button" class="btn btn-primary" @onclick="OpenModal">
|
||||||
|
Добавить тип
|
||||||
|
</button>
|
||||||
|
<button type="button" class="btn btn-primary" @onclick="DelModal">
|
||||||
|
Удалить тип
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@if (listDT.Count == 0)
|
||||||
|
{
|
||||||
|
<p>@msg</p>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<div class="card-body p-0">
|
||||||
|
<div class="tab-content" id="myTabContent">
|
||||||
|
<!-- Панель 1: Главная -->
|
||||||
|
<div class="tab-pane fade show active" id="addtype" role="tabpanel" aria-labelledby="addtype-tab">
|
||||||
|
<table class="table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">#</th>
|
||||||
|
<th scope="col">Название</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
@foreach (var item in Database.listDeviceTypes)
|
||||||
|
{
|
||||||
|
<tr>
|
||||||
|
<th scope="row">@item.Id</th>
|
||||||
|
<td>@item.Name</td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
<div class="modal fade modal1" id="addtype" tabindex="-1" aria-labelledby="addtypeLabel" aria-hidden="true">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="typeID" class="form-label">id типа</label>
|
||||||
|
<input type="number" class="form-control" id="typeID" @bind="id_type" />
|
||||||
|
</div>
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="typeName" class="form-label">Имя типа</label>
|
||||||
|
<textarea class="form-control" id="typeName" rows="3" @bind="name_type"></textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-primary" @onclick="SaveType">Сохранить</button>
|
||||||
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Закрыть</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal fade modal2" id="deltype" tabindex="-1" aria-labelledby="deltypeLabel" aria-hidden="true">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h1 class="modal-title fs-5" id="deltypeLabel">Заголовок</h1>
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="mb-3">
|
||||||
|
<select class="form-select" @bind="selected_type" aria-label="Вибрать тип">
|
||||||
|
@foreach (var item in listDT)
|
||||||
|
{
|
||||||
|
<option value="@item.Id">@item.Name</option>
|
||||||
|
}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-primary" @onclick="DelType">Удалить</button>
|
||||||
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Закрыть</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Функции для работы с модальными окнами
|
||||||
|
window.openModal = function (modalId) {
|
||||||
|
const modalElement = document.getElementById(modalId);
|
||||||
|
if (modalElement) {
|
||||||
|
const modal = new bootstrap.Modal(modalElement);
|
||||||
|
modal.show();
|
||||||
|
} else {
|
||||||
|
console.error('Модальное окно с id "' + modalId + '" не найдено');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
@code {
|
||||||
|
//HttpClient http = new();
|
||||||
|
|
||||||
|
private DeviceType dt;
|
||||||
|
private List<DeviceType> listDT;
|
||||||
|
|
||||||
|
private string msg = "-= ПОЛУЧАЮ ДАННЫЕ =-", name_type = "";
|
||||||
|
private int id_type = 1, selected_type = 0;
|
||||||
|
|
||||||
|
protected override async Task OnInitializedAsync()
|
||||||
|
{
|
||||||
|
listDT = Database.listDeviceTypes;
|
||||||
|
if (listDT.Count == 0)
|
||||||
|
{
|
||||||
|
msg = "-= ДАННЫХ НЕТ =-";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
|
||||||
|
//id_type = listDT.Count + 1;
|
||||||
|
var a = listDT.Select(listDT => listDT.Id).ToList();
|
||||||
|
//id_type = Enumerable.Range(1, int.MaxValue).FirstOrDefault(i => !a.Contains(i));
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private async Task SaveType()
|
||||||
|
{
|
||||||
|
HttpClient http = new();
|
||||||
|
dt = new();
|
||||||
|
dt.Id = id_type;
|
||||||
|
dt.Name = name_type;
|
||||||
|
http.BaseAddress = new Uri("http://localhost:5262/api/");
|
||||||
|
using StringContent content = new StringContent(
|
||||||
|
JsonConvert.SerializeObject(dt),
|
||||||
|
Encoding.UTF8,
|
||||||
|
"application/json"
|
||||||
|
);
|
||||||
|
var r = await http.PostAsync("Device/AddType", content);
|
||||||
|
if (r.IsSuccessStatusCode)
|
||||||
|
{
|
||||||
|
await JS.InvokeVoidAsync("eval", $"var myModal = bootstrap.Modal.getInstance(document.querySelector('.modal1')); myModal.hide();");
|
||||||
|
await Task.Delay(150);
|
||||||
|
id_type = listDT.Count + 1;
|
||||||
|
NavManager.NavigateTo(NavManager.Uri, forceLoad: true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private async Task DelType()
|
||||||
|
{
|
||||||
|
HttpClient http = new();
|
||||||
|
http.BaseAddress = new Uri("http://localhost:5262/api/");
|
||||||
|
var r = await http.DeleteAsync($"Device/DelType?id={selected_type}");
|
||||||
|
if (r.IsSuccessStatusCode)
|
||||||
|
{
|
||||||
|
await JS.InvokeVoidAsync("eval", $"var myModal = bootstrap.Modal.getInstance(document.querySelector('.modal2')); myModal.hide();");
|
||||||
|
await Task.Delay(250);
|
||||||
|
id_type = listDT.Count + 1;
|
||||||
|
NavManager.NavigateTo(NavManager.Uri, forceLoad: true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task OpenModal() => await JS.InvokeVoidAsync("openModal", "addtype");
|
||||||
|
private async Task DelModal() => await JS.InvokeVoidAsync("openModal", "deltype");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -1,63 +0,0 @@
|
|||||||
@page "/weather"
|
|
||||||
|
|
||||||
<PageTitle>Weather</PageTitle>
|
|
||||||
|
|
||||||
<h1>Weather</h1>
|
|
||||||
|
|
||||||
<p>This component demonstrates showing data.</p>
|
|
||||||
|
|
||||||
@if (forecasts == null)
|
|
||||||
{
|
|
||||||
<p><em>Loading...</em></p>
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
<table class="table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Date</th>
|
|
||||||
<th>Temp. (C)</th>
|
|
||||||
<th>Temp. (F)</th>
|
|
||||||
<th>Summary</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
@foreach (var forecast in forecasts)
|
|
||||||
{
|
|
||||||
<tr>
|
|
||||||
<td>@forecast.Date.ToShortDateString()</td>
|
|
||||||
<td>@forecast.TemperatureC</td>
|
|
||||||
<td>@forecast.TemperatureF</td>
|
|
||||||
<td>@forecast.Summary</td>
|
|
||||||
</tr>
|
|
||||||
}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
}
|
|
||||||
|
|
||||||
@code {
|
|
||||||
private WeatherForecast[]? forecasts;
|
|
||||||
|
|
||||||
protected override async Task OnInitializedAsync()
|
|
||||||
{
|
|
||||||
// Simulate asynchronous loading to demonstrate a loading indicator
|
|
||||||
await Task.Delay(500);
|
|
||||||
|
|
||||||
var startDate = DateOnly.FromDateTime(DateTime.Now);
|
|
||||||
var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" };
|
|
||||||
forecasts = Enumerable.Range(1, 5).Select(index => new WeatherForecast
|
|
||||||
{
|
|
||||||
Date = startDate.AddDays(index),
|
|
||||||
TemperatureC = Random.Shared.Next(-20, 55),
|
|
||||||
Summary = summaries[Random.Shared.Next(summaries.Length)]
|
|
||||||
}).ToArray();
|
|
||||||
}
|
|
||||||
|
|
||||||
private class WeatherForecast
|
|
||||||
{
|
|
||||||
public DateOnly Date { get; set; }
|
|
||||||
public int TemperatureC { get; set; }
|
|
||||||
public string? Summary { get; set; }
|
|
||||||
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -6,4 +6,10 @@
|
|||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Blazorise.Bootstrap5" Version="2.2.1" />
|
||||||
|
<PackageReference Include="Blazorise.Icons.FontAwesome" Version="2.2.1" />
|
||||||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
namespace Ministreliy.Models
|
||||||
|
{
|
||||||
|
public class DataStore
|
||||||
|
{
|
||||||
|
public static List<DeviceType>? ListDeviceTypesStore;
|
||||||
|
public static List<DeviceItem>? ListDeviceItemsStore;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
namespace Ministreliy.Models
|
||||||
|
{
|
||||||
|
public class DeviceItem
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Ip { get; set; }
|
||||||
|
public string Mac { get; set; }
|
||||||
|
public string? Description { get; set; }
|
||||||
|
public string? Name { get; set; }
|
||||||
|
public string? Location { get; set; }
|
||||||
|
public List<DeviceItem> Devises { get; set; }
|
||||||
|
public DeviceType DeviceType { get; set; }
|
||||||
|
public int ConnectedToSwitchId { get; set; }
|
||||||
|
public int ConnectedToPortOnSwitch { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unknown = 0,
|
||||||
|
//SwitchCore = 1,
|
||||||
|
//SwitchAccess = 2,
|
||||||
|
//Camera = 3,
|
||||||
|
//Server = 4,
|
||||||
|
//WorkStation = 5,
|
||||||
|
//PDU_AVR = 6,
|
||||||
|
}
|
||||||
+4085
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,601 @@
|
|||||||
|
/*!
|
||||||
|
* Bootstrap Reboot v5.3.8 (https://getbootstrap.com/)
|
||||||
|
* Copyright 2011-2025 The Bootstrap Authors
|
||||||
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||||
|
*/
|
||||||
|
:root,
|
||||||
|
[data-bs-theme=light] {
|
||||||
|
--bs-blue: #0d6efd;
|
||||||
|
--bs-indigo: #6610f2;
|
||||||
|
--bs-purple: #6f42c1;
|
||||||
|
--bs-pink: #d63384;
|
||||||
|
--bs-red: #dc3545;
|
||||||
|
--bs-orange: #fd7e14;
|
||||||
|
--bs-yellow: #ffc107;
|
||||||
|
--bs-green: #198754;
|
||||||
|
--bs-teal: #20c997;
|
||||||
|
--bs-cyan: #0dcaf0;
|
||||||
|
--bs-black: #000;
|
||||||
|
--bs-white: #fff;
|
||||||
|
--bs-gray: #6c757d;
|
||||||
|
--bs-gray-dark: #343a40;
|
||||||
|
--bs-gray-100: #f8f9fa;
|
||||||
|
--bs-gray-200: #e9ecef;
|
||||||
|
--bs-gray-300: #dee2e6;
|
||||||
|
--bs-gray-400: #ced4da;
|
||||||
|
--bs-gray-500: #adb5bd;
|
||||||
|
--bs-gray-600: #6c757d;
|
||||||
|
--bs-gray-700: #495057;
|
||||||
|
--bs-gray-800: #343a40;
|
||||||
|
--bs-gray-900: #212529;
|
||||||
|
--bs-primary: #0d6efd;
|
||||||
|
--bs-secondary: #6c757d;
|
||||||
|
--bs-success: #198754;
|
||||||
|
--bs-info: #0dcaf0;
|
||||||
|
--bs-warning: #ffc107;
|
||||||
|
--bs-danger: #dc3545;
|
||||||
|
--bs-light: #f8f9fa;
|
||||||
|
--bs-dark: #212529;
|
||||||
|
--bs-primary-rgb: 13, 110, 253;
|
||||||
|
--bs-secondary-rgb: 108, 117, 125;
|
||||||
|
--bs-success-rgb: 25, 135, 84;
|
||||||
|
--bs-info-rgb: 13, 202, 240;
|
||||||
|
--bs-warning-rgb: 255, 193, 7;
|
||||||
|
--bs-danger-rgb: 220, 53, 69;
|
||||||
|
--bs-light-rgb: 248, 249, 250;
|
||||||
|
--bs-dark-rgb: 33, 37, 41;
|
||||||
|
--bs-primary-text-emphasis: #052c65;
|
||||||
|
--bs-secondary-text-emphasis: #2b2f32;
|
||||||
|
--bs-success-text-emphasis: #0a3622;
|
||||||
|
--bs-info-text-emphasis: #055160;
|
||||||
|
--bs-warning-text-emphasis: #664d03;
|
||||||
|
--bs-danger-text-emphasis: #58151c;
|
||||||
|
--bs-light-text-emphasis: #495057;
|
||||||
|
--bs-dark-text-emphasis: #495057;
|
||||||
|
--bs-primary-bg-subtle: #cfe2ff;
|
||||||
|
--bs-secondary-bg-subtle: #e2e3e5;
|
||||||
|
--bs-success-bg-subtle: #d1e7dd;
|
||||||
|
--bs-info-bg-subtle: #cff4fc;
|
||||||
|
--bs-warning-bg-subtle: #fff3cd;
|
||||||
|
--bs-danger-bg-subtle: #f8d7da;
|
||||||
|
--bs-light-bg-subtle: #fcfcfd;
|
||||||
|
--bs-dark-bg-subtle: #ced4da;
|
||||||
|
--bs-primary-border-subtle: #9ec5fe;
|
||||||
|
--bs-secondary-border-subtle: #c4c8cb;
|
||||||
|
--bs-success-border-subtle: #a3cfbb;
|
||||||
|
--bs-info-border-subtle: #9eeaf9;
|
||||||
|
--bs-warning-border-subtle: #ffe69c;
|
||||||
|
--bs-danger-border-subtle: #f1aeb5;
|
||||||
|
--bs-light-border-subtle: #e9ecef;
|
||||||
|
--bs-dark-border-subtle: #adb5bd;
|
||||||
|
--bs-white-rgb: 255, 255, 255;
|
||||||
|
--bs-black-rgb: 0, 0, 0;
|
||||||
|
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
|
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
|
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
||||||
|
--bs-body-font-family: var(--bs-font-sans-serif);
|
||||||
|
--bs-body-font-size: 1rem;
|
||||||
|
--bs-body-font-weight: 400;
|
||||||
|
--bs-body-line-height: 1.5;
|
||||||
|
--bs-body-color: #212529;
|
||||||
|
--bs-body-color-rgb: 33, 37, 41;
|
||||||
|
--bs-body-bg: #fff;
|
||||||
|
--bs-body-bg-rgb: 255, 255, 255;
|
||||||
|
--bs-emphasis-color: #000;
|
||||||
|
--bs-emphasis-color-rgb: 0, 0, 0;
|
||||||
|
--bs-secondary-color: rgba(33, 37, 41, 0.75);
|
||||||
|
--bs-secondary-color-rgb: 33, 37, 41;
|
||||||
|
--bs-secondary-bg: #e9ecef;
|
||||||
|
--bs-secondary-bg-rgb: 233, 236, 239;
|
||||||
|
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
|
||||||
|
--bs-tertiary-color-rgb: 33, 37, 41;
|
||||||
|
--bs-tertiary-bg: #f8f9fa;
|
||||||
|
--bs-tertiary-bg-rgb: 248, 249, 250;
|
||||||
|
--bs-heading-color: inherit;
|
||||||
|
--bs-link-color: #0d6efd;
|
||||||
|
--bs-link-color-rgb: 13, 110, 253;
|
||||||
|
--bs-link-decoration: underline;
|
||||||
|
--bs-link-hover-color: #0a58ca;
|
||||||
|
--bs-link-hover-color-rgb: 10, 88, 202;
|
||||||
|
--bs-code-color: #d63384;
|
||||||
|
--bs-highlight-color: #212529;
|
||||||
|
--bs-highlight-bg: #fff3cd;
|
||||||
|
--bs-border-width: 1px;
|
||||||
|
--bs-border-style: solid;
|
||||||
|
--bs-border-color: #dee2e6;
|
||||||
|
--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
|
||||||
|
--bs-border-radius: 0.375rem;
|
||||||
|
--bs-border-radius-sm: 0.25rem;
|
||||||
|
--bs-border-radius-lg: 0.5rem;
|
||||||
|
--bs-border-radius-xl: 1rem;
|
||||||
|
--bs-border-radius-xxl: 2rem;
|
||||||
|
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
|
||||||
|
--bs-border-radius-pill: 50rem;
|
||||||
|
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
||||||
|
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
||||||
|
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
|
||||||
|
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
||||||
|
--bs-focus-ring-width: 0.25rem;
|
||||||
|
--bs-focus-ring-opacity: 0.25;
|
||||||
|
--bs-focus-ring-color: rgba(13, 110, 253, 0.25);
|
||||||
|
--bs-form-valid-color: #198754;
|
||||||
|
--bs-form-valid-border-color: #198754;
|
||||||
|
--bs-form-invalid-color: #dc3545;
|
||||||
|
--bs-form-invalid-border-color: #dc3545;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-bs-theme=dark] {
|
||||||
|
color-scheme: dark;
|
||||||
|
--bs-body-color: #dee2e6;
|
||||||
|
--bs-body-color-rgb: 222, 226, 230;
|
||||||
|
--bs-body-bg: #212529;
|
||||||
|
--bs-body-bg-rgb: 33, 37, 41;
|
||||||
|
--bs-emphasis-color: #fff;
|
||||||
|
--bs-emphasis-color-rgb: 255, 255, 255;
|
||||||
|
--bs-secondary-color: rgba(222, 226, 230, 0.75);
|
||||||
|
--bs-secondary-color-rgb: 222, 226, 230;
|
||||||
|
--bs-secondary-bg: #343a40;
|
||||||
|
--bs-secondary-bg-rgb: 52, 58, 64;
|
||||||
|
--bs-tertiary-color: rgba(222, 226, 230, 0.5);
|
||||||
|
--bs-tertiary-color-rgb: 222, 226, 230;
|
||||||
|
--bs-tertiary-bg: #2b3035;
|
||||||
|
--bs-tertiary-bg-rgb: 43, 48, 53;
|
||||||
|
--bs-primary-text-emphasis: #6ea8fe;
|
||||||
|
--bs-secondary-text-emphasis: #a7acb1;
|
||||||
|
--bs-success-text-emphasis: #75b798;
|
||||||
|
--bs-info-text-emphasis: #6edff6;
|
||||||
|
--bs-warning-text-emphasis: #ffda6a;
|
||||||
|
--bs-danger-text-emphasis: #ea868f;
|
||||||
|
--bs-light-text-emphasis: #f8f9fa;
|
||||||
|
--bs-dark-text-emphasis: #dee2e6;
|
||||||
|
--bs-primary-bg-subtle: #031633;
|
||||||
|
--bs-secondary-bg-subtle: #161719;
|
||||||
|
--bs-success-bg-subtle: #051b11;
|
||||||
|
--bs-info-bg-subtle: #032830;
|
||||||
|
--bs-warning-bg-subtle: #332701;
|
||||||
|
--bs-danger-bg-subtle: #2c0b0e;
|
||||||
|
--bs-light-bg-subtle: #343a40;
|
||||||
|
--bs-dark-bg-subtle: #1a1d20;
|
||||||
|
--bs-primary-border-subtle: #084298;
|
||||||
|
--bs-secondary-border-subtle: #41464b;
|
||||||
|
--bs-success-border-subtle: #0f5132;
|
||||||
|
--bs-info-border-subtle: #087990;
|
||||||
|
--bs-warning-border-subtle: #997404;
|
||||||
|
--bs-danger-border-subtle: #842029;
|
||||||
|
--bs-light-border-subtle: #495057;
|
||||||
|
--bs-dark-border-subtle: #343a40;
|
||||||
|
--bs-heading-color: inherit;
|
||||||
|
--bs-link-color: #6ea8fe;
|
||||||
|
--bs-link-hover-color: #8bb9fe;
|
||||||
|
--bs-link-color-rgb: 110, 168, 254;
|
||||||
|
--bs-link-hover-color-rgb: 139, 185, 254;
|
||||||
|
--bs-code-color: #e685b5;
|
||||||
|
--bs-highlight-color: #dee2e6;
|
||||||
|
--bs-highlight-bg: #664d03;
|
||||||
|
--bs-border-color: #495057;
|
||||||
|
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
|
||||||
|
--bs-form-valid-color: #75b798;
|
||||||
|
--bs-form-valid-border-color: #75b798;
|
||||||
|
--bs-form-invalid-color: #ea868f;
|
||||||
|
--bs-form-invalid-border-color: #ea868f;
|
||||||
|
}
|
||||||
|
|
||||||
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-reduced-motion: no-preference) {
|
||||||
|
:root {
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: var(--bs-body-font-family);
|
||||||
|
font-size: var(--bs-body-font-size);
|
||||||
|
font-weight: var(--bs-body-font-weight);
|
||||||
|
line-height: var(--bs-body-line-height);
|
||||||
|
color: var(--bs-body-color);
|
||||||
|
text-align: var(--bs-body-text-align);
|
||||||
|
background-color: var(--bs-body-bg);
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
margin: 1rem 0;
|
||||||
|
color: inherit;
|
||||||
|
border: 0;
|
||||||
|
border-top: var(--bs-border-width) solid;
|
||||||
|
opacity: 0.25;
|
||||||
|
}
|
||||||
|
|
||||||
|
h6, h5, h4, h3, h2, h1 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 1.2;
|
||||||
|
color: var(--bs-heading-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: calc(1.375rem + 1.5vw);
|
||||||
|
}
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
h1 {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: calc(1.325rem + 0.9vw);
|
||||||
|
}
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
h2 {
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: calc(1.3rem + 0.6vw);
|
||||||
|
}
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
h3 {
|
||||||
|
font-size: 1.75rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: calc(1.275rem + 0.3vw);
|
||||||
|
}
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
h4 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h6 {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
abbr[title] {
|
||||||
|
-webkit-text-decoration: underline dotted;
|
||||||
|
text-decoration: underline dotted;
|
||||||
|
cursor: help;
|
||||||
|
-webkit-text-decoration-skip-ink: none;
|
||||||
|
text-decoration-skip-ink: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
address {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
font-style: normal;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol,
|
||||||
|
ul {
|
||||||
|
padding-left: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol,
|
||||||
|
ul,
|
||||||
|
dl {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol ol,
|
||||||
|
ul ul,
|
||||||
|
ol ul,
|
||||||
|
ul ol {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
dt {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
margin: 0 0 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
b,
|
||||||
|
strong {
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
small {
|
||||||
|
font-size: 0.875em;
|
||||||
|
}
|
||||||
|
|
||||||
|
mark {
|
||||||
|
padding: 0.1875em;
|
||||||
|
color: var(--bs-highlight-color);
|
||||||
|
background-color: var(--bs-highlight-bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub,
|
||||||
|
sup {
|
||||||
|
position: relative;
|
||||||
|
font-size: 0.75em;
|
||||||
|
line-height: 0;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub {
|
||||||
|
bottom: -0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
sup {
|
||||||
|
top: -0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre,
|
||||||
|
code,
|
||||||
|
kbd,
|
||||||
|
samp {
|
||||||
|
font-family: var(--bs-font-monospace);
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
display: block;
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
overflow: auto;
|
||||||
|
font-size: 0.875em;
|
||||||
|
}
|
||||||
|
pre code {
|
||||||
|
font-size: inherit;
|
||||||
|
color: inherit;
|
||||||
|
word-break: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
font-size: 0.875em;
|
||||||
|
color: var(--bs-code-color);
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
a > code {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
kbd {
|
||||||
|
padding: 0.1875rem 0.375rem;
|
||||||
|
font-size: 0.875em;
|
||||||
|
color: var(--bs-body-bg);
|
||||||
|
background-color: var(--bs-body-color);
|
||||||
|
border-radius: 0.25rem;
|
||||||
|
}
|
||||||
|
kbd kbd {
|
||||||
|
padding: 0;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
figure {
|
||||||
|
margin: 0 0 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
img,
|
||||||
|
svg {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
caption-side: bottom;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
caption {
|
||||||
|
padding-top: 0.5rem;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
color: var(--bs-secondary-color);
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
text-align: inherit;
|
||||||
|
text-align: -webkit-match-parent;
|
||||||
|
}
|
||||||
|
|
||||||
|
thead,
|
||||||
|
tbody,
|
||||||
|
tfoot,
|
||||||
|
tr,
|
||||||
|
td,
|
||||||
|
th {
|
||||||
|
border-color: inherit;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:focus:not(:focus-visible) {
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
input,
|
||||||
|
button,
|
||||||
|
select,
|
||||||
|
optgroup,
|
||||||
|
textarea {
|
||||||
|
margin: 0;
|
||||||
|
font-family: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
select {
|
||||||
|
text-transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
[role=button] {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
word-wrap: normal;
|
||||||
|
}
|
||||||
|
select:disabled {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=submit] {
|
||||||
|
-webkit-appearance: button;
|
||||||
|
}
|
||||||
|
button:not(:disabled),
|
||||||
|
[type=button]:not(:disabled),
|
||||||
|
[type=reset]:not(:disabled),
|
||||||
|
[type=submit]:not(:disabled) {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-moz-focus-inner {
|
||||||
|
padding: 0;
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
min-width: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
legend {
|
||||||
|
float: left;
|
||||||
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
line-height: inherit;
|
||||||
|
font-size: calc(1.275rem + 0.3vw);
|
||||||
|
}
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
legend {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
legend + * {
|
||||||
|
clear: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-datetime-edit-fields-wrapper,
|
||||||
|
::-webkit-datetime-edit-text,
|
||||||
|
::-webkit-datetime-edit-minute,
|
||||||
|
::-webkit-datetime-edit-hour-field,
|
||||||
|
::-webkit-datetime-edit-day-field,
|
||||||
|
::-webkit-datetime-edit-month-field,
|
||||||
|
::-webkit-datetime-edit-year-field {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-inner-spin-button {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
[type=search] {
|
||||||
|
-webkit-appearance: textfield;
|
||||||
|
outline-offset: -2px;
|
||||||
|
}
|
||||||
|
[type=search]::-webkit-search-cancel-button {
|
||||||
|
cursor: pointer;
|
||||||
|
filter: grayscale(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* rtl:raw:
|
||||||
|
[type="tel"],
|
||||||
|
[type="url"],
|
||||||
|
[type="email"],
|
||||||
|
[type="number"] {
|
||||||
|
direction: ltr;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
::-webkit-search-decoration {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-color-swatch-wrapper {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-file-upload-button {
|
||||||
|
font: inherit;
|
||||||
|
-webkit-appearance: button;
|
||||||
|
}
|
||||||
|
|
||||||
|
::file-selector-button {
|
||||||
|
font: inherit;
|
||||||
|
-webkit-appearance: button;
|
||||||
|
}
|
||||||
|
|
||||||
|
output {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
iframe {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
summary {
|
||||||
|
display: list-item;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
progress {
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
[hidden] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,598 @@
|
|||||||
|
/*!
|
||||||
|
* Bootstrap Reboot v5.3.8 (https://getbootstrap.com/)
|
||||||
|
* Copyright 2011-2025 The Bootstrap Authors
|
||||||
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||||
|
*/
|
||||||
|
:root,
|
||||||
|
[data-bs-theme=light] {
|
||||||
|
--bs-blue: #0d6efd;
|
||||||
|
--bs-indigo: #6610f2;
|
||||||
|
--bs-purple: #6f42c1;
|
||||||
|
--bs-pink: #d63384;
|
||||||
|
--bs-red: #dc3545;
|
||||||
|
--bs-orange: #fd7e14;
|
||||||
|
--bs-yellow: #ffc107;
|
||||||
|
--bs-green: #198754;
|
||||||
|
--bs-teal: #20c997;
|
||||||
|
--bs-cyan: #0dcaf0;
|
||||||
|
--bs-black: #000;
|
||||||
|
--bs-white: #fff;
|
||||||
|
--bs-gray: #6c757d;
|
||||||
|
--bs-gray-dark: #343a40;
|
||||||
|
--bs-gray-100: #f8f9fa;
|
||||||
|
--bs-gray-200: #e9ecef;
|
||||||
|
--bs-gray-300: #dee2e6;
|
||||||
|
--bs-gray-400: #ced4da;
|
||||||
|
--bs-gray-500: #adb5bd;
|
||||||
|
--bs-gray-600: #6c757d;
|
||||||
|
--bs-gray-700: #495057;
|
||||||
|
--bs-gray-800: #343a40;
|
||||||
|
--bs-gray-900: #212529;
|
||||||
|
--bs-primary: #0d6efd;
|
||||||
|
--bs-secondary: #6c757d;
|
||||||
|
--bs-success: #198754;
|
||||||
|
--bs-info: #0dcaf0;
|
||||||
|
--bs-warning: #ffc107;
|
||||||
|
--bs-danger: #dc3545;
|
||||||
|
--bs-light: #f8f9fa;
|
||||||
|
--bs-dark: #212529;
|
||||||
|
--bs-primary-rgb: 13, 110, 253;
|
||||||
|
--bs-secondary-rgb: 108, 117, 125;
|
||||||
|
--bs-success-rgb: 25, 135, 84;
|
||||||
|
--bs-info-rgb: 13, 202, 240;
|
||||||
|
--bs-warning-rgb: 255, 193, 7;
|
||||||
|
--bs-danger-rgb: 220, 53, 69;
|
||||||
|
--bs-light-rgb: 248, 249, 250;
|
||||||
|
--bs-dark-rgb: 33, 37, 41;
|
||||||
|
--bs-primary-text-emphasis: #052c65;
|
||||||
|
--bs-secondary-text-emphasis: #2b2f32;
|
||||||
|
--bs-success-text-emphasis: #0a3622;
|
||||||
|
--bs-info-text-emphasis: #055160;
|
||||||
|
--bs-warning-text-emphasis: #664d03;
|
||||||
|
--bs-danger-text-emphasis: #58151c;
|
||||||
|
--bs-light-text-emphasis: #495057;
|
||||||
|
--bs-dark-text-emphasis: #495057;
|
||||||
|
--bs-primary-bg-subtle: #cfe2ff;
|
||||||
|
--bs-secondary-bg-subtle: #e2e3e5;
|
||||||
|
--bs-success-bg-subtle: #d1e7dd;
|
||||||
|
--bs-info-bg-subtle: #cff4fc;
|
||||||
|
--bs-warning-bg-subtle: #fff3cd;
|
||||||
|
--bs-danger-bg-subtle: #f8d7da;
|
||||||
|
--bs-light-bg-subtle: #fcfcfd;
|
||||||
|
--bs-dark-bg-subtle: #ced4da;
|
||||||
|
--bs-primary-border-subtle: #9ec5fe;
|
||||||
|
--bs-secondary-border-subtle: #c4c8cb;
|
||||||
|
--bs-success-border-subtle: #a3cfbb;
|
||||||
|
--bs-info-border-subtle: #9eeaf9;
|
||||||
|
--bs-warning-border-subtle: #ffe69c;
|
||||||
|
--bs-danger-border-subtle: #f1aeb5;
|
||||||
|
--bs-light-border-subtle: #e9ecef;
|
||||||
|
--bs-dark-border-subtle: #adb5bd;
|
||||||
|
--bs-white-rgb: 255, 255, 255;
|
||||||
|
--bs-black-rgb: 0, 0, 0;
|
||||||
|
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
|
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||||
|
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
||||||
|
--bs-body-font-family: var(--bs-font-sans-serif);
|
||||||
|
--bs-body-font-size: 1rem;
|
||||||
|
--bs-body-font-weight: 400;
|
||||||
|
--bs-body-line-height: 1.5;
|
||||||
|
--bs-body-color: #212529;
|
||||||
|
--bs-body-color-rgb: 33, 37, 41;
|
||||||
|
--bs-body-bg: #fff;
|
||||||
|
--bs-body-bg-rgb: 255, 255, 255;
|
||||||
|
--bs-emphasis-color: #000;
|
||||||
|
--bs-emphasis-color-rgb: 0, 0, 0;
|
||||||
|
--bs-secondary-color: rgba(33, 37, 41, 0.75);
|
||||||
|
--bs-secondary-color-rgb: 33, 37, 41;
|
||||||
|
--bs-secondary-bg: #e9ecef;
|
||||||
|
--bs-secondary-bg-rgb: 233, 236, 239;
|
||||||
|
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
|
||||||
|
--bs-tertiary-color-rgb: 33, 37, 41;
|
||||||
|
--bs-tertiary-bg: #f8f9fa;
|
||||||
|
--bs-tertiary-bg-rgb: 248, 249, 250;
|
||||||
|
--bs-heading-color: inherit;
|
||||||
|
--bs-link-color: #0d6efd;
|
||||||
|
--bs-link-color-rgb: 13, 110, 253;
|
||||||
|
--bs-link-decoration: underline;
|
||||||
|
--bs-link-hover-color: #0a58ca;
|
||||||
|
--bs-link-hover-color-rgb: 10, 88, 202;
|
||||||
|
--bs-code-color: #d63384;
|
||||||
|
--bs-highlight-color: #212529;
|
||||||
|
--bs-highlight-bg: #fff3cd;
|
||||||
|
--bs-border-width: 1px;
|
||||||
|
--bs-border-style: solid;
|
||||||
|
--bs-border-color: #dee2e6;
|
||||||
|
--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
|
||||||
|
--bs-border-radius: 0.375rem;
|
||||||
|
--bs-border-radius-sm: 0.25rem;
|
||||||
|
--bs-border-radius-lg: 0.5rem;
|
||||||
|
--bs-border-radius-xl: 1rem;
|
||||||
|
--bs-border-radius-xxl: 2rem;
|
||||||
|
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
|
||||||
|
--bs-border-radius-pill: 50rem;
|
||||||
|
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
||||||
|
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
||||||
|
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
|
||||||
|
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
||||||
|
--bs-focus-ring-width: 0.25rem;
|
||||||
|
--bs-focus-ring-opacity: 0.25;
|
||||||
|
--bs-focus-ring-color: rgba(13, 110, 253, 0.25);
|
||||||
|
--bs-form-valid-color: #198754;
|
||||||
|
--bs-form-valid-border-color: #198754;
|
||||||
|
--bs-form-invalid-color: #dc3545;
|
||||||
|
--bs-form-invalid-border-color: #dc3545;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-bs-theme=dark] {
|
||||||
|
color-scheme: dark;
|
||||||
|
--bs-body-color: #dee2e6;
|
||||||
|
--bs-body-color-rgb: 222, 226, 230;
|
||||||
|
--bs-body-bg: #212529;
|
||||||
|
--bs-body-bg-rgb: 33, 37, 41;
|
||||||
|
--bs-emphasis-color: #fff;
|
||||||
|
--bs-emphasis-color-rgb: 255, 255, 255;
|
||||||
|
--bs-secondary-color: rgba(222, 226, 230, 0.75);
|
||||||
|
--bs-secondary-color-rgb: 222, 226, 230;
|
||||||
|
--bs-secondary-bg: #343a40;
|
||||||
|
--bs-secondary-bg-rgb: 52, 58, 64;
|
||||||
|
--bs-tertiary-color: rgba(222, 226, 230, 0.5);
|
||||||
|
--bs-tertiary-color-rgb: 222, 226, 230;
|
||||||
|
--bs-tertiary-bg: #2b3035;
|
||||||
|
--bs-tertiary-bg-rgb: 43, 48, 53;
|
||||||
|
--bs-primary-text-emphasis: #6ea8fe;
|
||||||
|
--bs-secondary-text-emphasis: #a7acb1;
|
||||||
|
--bs-success-text-emphasis: #75b798;
|
||||||
|
--bs-info-text-emphasis: #6edff6;
|
||||||
|
--bs-warning-text-emphasis: #ffda6a;
|
||||||
|
--bs-danger-text-emphasis: #ea868f;
|
||||||
|
--bs-light-text-emphasis: #f8f9fa;
|
||||||
|
--bs-dark-text-emphasis: #dee2e6;
|
||||||
|
--bs-primary-bg-subtle: #031633;
|
||||||
|
--bs-secondary-bg-subtle: #161719;
|
||||||
|
--bs-success-bg-subtle: #051b11;
|
||||||
|
--bs-info-bg-subtle: #032830;
|
||||||
|
--bs-warning-bg-subtle: #332701;
|
||||||
|
--bs-danger-bg-subtle: #2c0b0e;
|
||||||
|
--bs-light-bg-subtle: #343a40;
|
||||||
|
--bs-dark-bg-subtle: #1a1d20;
|
||||||
|
--bs-primary-border-subtle: #084298;
|
||||||
|
--bs-secondary-border-subtle: #41464b;
|
||||||
|
--bs-success-border-subtle: #0f5132;
|
||||||
|
--bs-info-border-subtle: #087990;
|
||||||
|
--bs-warning-border-subtle: #997404;
|
||||||
|
--bs-danger-border-subtle: #842029;
|
||||||
|
--bs-light-border-subtle: #495057;
|
||||||
|
--bs-dark-border-subtle: #343a40;
|
||||||
|
--bs-heading-color: inherit;
|
||||||
|
--bs-link-color: #6ea8fe;
|
||||||
|
--bs-link-hover-color: #8bb9fe;
|
||||||
|
--bs-link-color-rgb: 110, 168, 254;
|
||||||
|
--bs-link-hover-color-rgb: 139, 185, 254;
|
||||||
|
--bs-code-color: #e685b5;
|
||||||
|
--bs-highlight-color: #dee2e6;
|
||||||
|
--bs-highlight-bg: #664d03;
|
||||||
|
--bs-border-color: #495057;
|
||||||
|
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
|
||||||
|
--bs-form-valid-color: #75b798;
|
||||||
|
--bs-form-valid-border-color: #75b798;
|
||||||
|
--bs-form-invalid-color: #ea868f;
|
||||||
|
--bs-form-invalid-border-color: #ea868f;
|
||||||
|
}
|
||||||
|
|
||||||
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-reduced-motion: no-preference) {
|
||||||
|
:root {
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: var(--bs-body-font-family);
|
||||||
|
font-size: var(--bs-body-font-size);
|
||||||
|
font-weight: var(--bs-body-font-weight);
|
||||||
|
line-height: var(--bs-body-line-height);
|
||||||
|
color: var(--bs-body-color);
|
||||||
|
text-align: var(--bs-body-text-align);
|
||||||
|
background-color: var(--bs-body-bg);
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
margin: 1rem 0;
|
||||||
|
color: inherit;
|
||||||
|
border: 0;
|
||||||
|
border-top: var(--bs-border-width) solid;
|
||||||
|
opacity: 0.25;
|
||||||
|
}
|
||||||
|
|
||||||
|
h6, h5, h4, h3, h2, h1 {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 1.2;
|
||||||
|
color: var(--bs-heading-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: calc(1.375rem + 1.5vw);
|
||||||
|
}
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
h1 {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: calc(1.325rem + 0.9vw);
|
||||||
|
}
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
h2 {
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: calc(1.3rem + 0.6vw);
|
||||||
|
}
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
h3 {
|
||||||
|
font-size: 1.75rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: calc(1.275rem + 0.3vw);
|
||||||
|
}
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
h4 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h6 {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
abbr[title] {
|
||||||
|
-webkit-text-decoration: underline dotted;
|
||||||
|
text-decoration: underline dotted;
|
||||||
|
cursor: help;
|
||||||
|
-webkit-text-decoration-skip-ink: none;
|
||||||
|
text-decoration-skip-ink: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
address {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
font-style: normal;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol,
|
||||||
|
ul {
|
||||||
|
padding-right: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol,
|
||||||
|
ul,
|
||||||
|
dl {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol ol,
|
||||||
|
ul ul,
|
||||||
|
ol ul,
|
||||||
|
ul ol {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
dt {
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
margin: 0 0 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
b,
|
||||||
|
strong {
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
small {
|
||||||
|
font-size: 0.875em;
|
||||||
|
}
|
||||||
|
|
||||||
|
mark {
|
||||||
|
padding: 0.1875em;
|
||||||
|
color: var(--bs-highlight-color);
|
||||||
|
background-color: var(--bs-highlight-bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub,
|
||||||
|
sup {
|
||||||
|
position: relative;
|
||||||
|
font-size: 0.75em;
|
||||||
|
line-height: 0;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub {
|
||||||
|
bottom: -0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
sup {
|
||||||
|
top: -0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre,
|
||||||
|
code,
|
||||||
|
kbd,
|
||||||
|
samp {
|
||||||
|
font-family: var(--bs-font-monospace);
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
display: block;
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
overflow: auto;
|
||||||
|
font-size: 0.875em;
|
||||||
|
}
|
||||||
|
pre code {
|
||||||
|
font-size: inherit;
|
||||||
|
color: inherit;
|
||||||
|
word-break: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
font-size: 0.875em;
|
||||||
|
color: var(--bs-code-color);
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
a > code {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
kbd {
|
||||||
|
padding: 0.1875rem 0.375rem;
|
||||||
|
font-size: 0.875em;
|
||||||
|
color: var(--bs-body-bg);
|
||||||
|
background-color: var(--bs-body-color);
|
||||||
|
border-radius: 0.25rem;
|
||||||
|
}
|
||||||
|
kbd kbd {
|
||||||
|
padding: 0;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
figure {
|
||||||
|
margin: 0 0 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
img,
|
||||||
|
svg {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
caption-side: bottom;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
caption {
|
||||||
|
padding-top: 0.5rem;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
color: var(--bs-secondary-color);
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
text-align: inherit;
|
||||||
|
text-align: -webkit-match-parent;
|
||||||
|
}
|
||||||
|
|
||||||
|
thead,
|
||||||
|
tbody,
|
||||||
|
tfoot,
|
||||||
|
tr,
|
||||||
|
td,
|
||||||
|
th {
|
||||||
|
border-color: inherit;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:focus:not(:focus-visible) {
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
input,
|
||||||
|
button,
|
||||||
|
select,
|
||||||
|
optgroup,
|
||||||
|
textarea {
|
||||||
|
margin: 0;
|
||||||
|
font-family: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
select {
|
||||||
|
text-transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
[role=button] {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
word-wrap: normal;
|
||||||
|
}
|
||||||
|
select:disabled {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=submit] {
|
||||||
|
-webkit-appearance: button;
|
||||||
|
}
|
||||||
|
button:not(:disabled),
|
||||||
|
[type=button]:not(:disabled),
|
||||||
|
[type=reset]:not(:disabled),
|
||||||
|
[type=submit]:not(:disabled) {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-moz-focus-inner {
|
||||||
|
padding: 0;
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
min-width: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
legend {
|
||||||
|
float: right;
|
||||||
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
line-height: inherit;
|
||||||
|
font-size: calc(1.275rem + 0.3vw);
|
||||||
|
}
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
legend {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
legend + * {
|
||||||
|
clear: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-datetime-edit-fields-wrapper,
|
||||||
|
::-webkit-datetime-edit-text,
|
||||||
|
::-webkit-datetime-edit-minute,
|
||||||
|
::-webkit-datetime-edit-hour-field,
|
||||||
|
::-webkit-datetime-edit-day-field,
|
||||||
|
::-webkit-datetime-edit-month-field,
|
||||||
|
::-webkit-datetime-edit-year-field {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-inner-spin-button {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
[type=search] {
|
||||||
|
-webkit-appearance: textfield;
|
||||||
|
outline-offset: -2px;
|
||||||
|
}
|
||||||
|
[type=search]::-webkit-search-cancel-button {
|
||||||
|
cursor: pointer;
|
||||||
|
filter: grayscale(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
[type="tel"],
|
||||||
|
[type="url"],
|
||||||
|
[type="email"],
|
||||||
|
[type="number"] {
|
||||||
|
direction: ltr;
|
||||||
|
}
|
||||||
|
::-webkit-search-decoration {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-color-swatch-wrapper {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-file-upload-button {
|
||||||
|
font: inherit;
|
||||||
|
-webkit-appearance: button;
|
||||||
|
}
|
||||||
|
|
||||||
|
::file-selector-button {
|
||||||
|
font: inherit;
|
||||||
|
-webkit-appearance: button;
|
||||||
|
}
|
||||||
|
|
||||||
|
output {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
iframe {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
summary {
|
||||||
|
display: list-item;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
progress {
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
[hidden] {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
/*# sourceMappingURL=bootstrap-reboot.rtl.css.map */
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+12048
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+12021
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+6312
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+4447
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+4494
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -9,31 +9,21 @@ namespace Strela.Controllers;
|
|||||||
[Route("api/[controller]")]
|
[Route("api/[controller]")]
|
||||||
public class DeviceController : ControllerBase
|
public class DeviceController : ControllerBase
|
||||||
{
|
{
|
||||||
private readonly ILogger<UserController> _logger;
|
private readonly ILogger<DeviceController> _logger;
|
||||||
|
|
||||||
public DeviceController(ILogger<UserController> logger)
|
public DeviceController(ILogger<DeviceController> logger)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
}
|
}
|
||||||
//=========================== GET =================================//
|
|
||||||
[HttpGet("GetTypes")]
|
|
||||||
[ProducesResponseType<List<DeviceType>>(StatusCodes.Status200OK)]
|
|
||||||
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
|
||||||
public IActionResult GetList()
|
|
||||||
{
|
|
||||||
using (var db = new SQLiteService())
|
|
||||||
{
|
|
||||||
var tps = db.DeviceTypes.ToList();
|
|
||||||
if (tps.Count != 0)
|
|
||||||
return Ok(tps);
|
|
||||||
else return NoContent();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpGet("GetDevice")]
|
//=========================== GET =================================//
|
||||||
|
#region GET
|
||||||
|
|
||||||
|
|
||||||
|
[HttpGet("GetDeviceById")]
|
||||||
[ProducesResponseType<DeviceItem>(StatusCodes.Status200OK)]
|
[ProducesResponseType<DeviceItem>(StatusCodes.Status200OK)]
|
||||||
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
||||||
public IActionResult GetById(int id)
|
public IActionResult GetById(int id) // Получить устройство по id
|
||||||
{
|
{
|
||||||
using (var db = new SQLiteService())
|
using (var db = new SQLiteService())
|
||||||
{
|
{
|
||||||
@@ -44,9 +34,25 @@ public class DeviceController : ControllerBase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[HttpGet("GetDevices")]
|
||||||
|
[ProducesResponseType<DeviceItem>(StatusCodes.Status200OK)]
|
||||||
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
||||||
|
public IActionResult GetAll() // Получить все устройства
|
||||||
|
{
|
||||||
|
using (var db = new SQLiteService())
|
||||||
|
{
|
||||||
|
var d = db.Devices.ToList();
|
||||||
|
//if (d.Count != 0)
|
||||||
|
return Ok(d);
|
||||||
|
//else return NoContent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
//========================= POST ====================================//
|
//========================= POST ====================================//
|
||||||
|
#region POST
|
||||||
[HttpPost("AddDevice")]
|
[HttpPost("AddDevice")]
|
||||||
public IActionResult AddDevice(DeviceItem d)
|
public IActionResult AddDevice(DeviceItem d) // Добавить одно устройство
|
||||||
{
|
{
|
||||||
using (var db = new SQLiteService())
|
using (var db = new SQLiteService())
|
||||||
{
|
{
|
||||||
@@ -56,14 +62,22 @@ public class DeviceController : ControllerBase
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpPost("AddType")]
|
|
||||||
public IActionResult AddType(DeviceType d)
|
#endregion
|
||||||
|
|
||||||
|
//========================= DELETE ====================================//
|
||||||
|
#region DELETE
|
||||||
|
|
||||||
|
[HttpDelete("DelDevice")]
|
||||||
|
public IActionResult DelDevice(int id) //Удалить устройство по id
|
||||||
{
|
{
|
||||||
using (var db = new SQLiteService())
|
using (var db = new SQLiteService())
|
||||||
{
|
{
|
||||||
db.DeviceTypes.Add(d);//.Where(u => u.Name == name).FirstOrDefault();
|
var deldev = db.Devices.Where(u => u.Id == id).FirstOrDefault();
|
||||||
|
db.Devices.Remove(deldev);
|
||||||
db.SaveChanges();
|
db.SaveChanges();
|
||||||
return Created();
|
return Ok();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,82 @@
|
|||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Strela.Models;
|
||||||
|
using Strela.Services;
|
||||||
|
|
||||||
|
namespace Strela.Controllers;
|
||||||
|
|
||||||
|
[ApiController]
|
||||||
|
[Route("api/[controller]")]
|
||||||
|
public class ObjectController : ControllerBase
|
||||||
|
{
|
||||||
|
private readonly ILogger<ObjectController> _logger;
|
||||||
|
|
||||||
|
public ObjectController(ILogger<ObjectController> logger)
|
||||||
|
{
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
//=========================== GET =================================//
|
||||||
|
[HttpGet("GetObject")]
|
||||||
|
public IActionResult GetList()
|
||||||
|
{
|
||||||
|
using (var db = new SQLiteService())
|
||||||
|
{
|
||||||
|
var oi = db.ObjectItems.ToList();
|
||||||
|
return Ok(oi);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("GetObjectById")]
|
||||||
|
[ProducesResponseType<ObjectItem>(StatusCodes.Status200OK)]
|
||||||
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
||||||
|
public IActionResult GetById(int id)
|
||||||
|
{
|
||||||
|
using (var db = new SQLiteService())
|
||||||
|
{
|
||||||
|
var o = db.ObjectItems.Where(o => o.Id == id).FirstOrDefault();
|
||||||
|
if (o != null)
|
||||||
|
return Ok(o);
|
||||||
|
else return NoContent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("GetObjectByName")]
|
||||||
|
[ProducesResponseType<ObjectItem>(StatusCodes.Status200OK)]
|
||||||
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
||||||
|
public IActionResult GetByName(string name)
|
||||||
|
{
|
||||||
|
using (var db = new SQLiteService())
|
||||||
|
{
|
||||||
|
var o = db.ObjectItems.Where(ob => ob.NameObject == name).FirstOrDefault();
|
||||||
|
if (o != null)
|
||||||
|
return Ok(o);
|
||||||
|
else return NoContent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//========================= POST ====================================//
|
||||||
|
[HttpPost("AddObject")]
|
||||||
|
public IActionResult AddObject(ObjectItem o)
|
||||||
|
{
|
||||||
|
using (var db = new SQLiteService())
|
||||||
|
{
|
||||||
|
db.ObjectItems.Add(o);
|
||||||
|
db.SaveChanges();
|
||||||
|
return Created();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//========================= DELETE ====================================//
|
||||||
|
[HttpDelete("DelObject")]
|
||||||
|
public IActionResult DelObject(int id)
|
||||||
|
{
|
||||||
|
using (var db = new SQLiteService())
|
||||||
|
{
|
||||||
|
var delobj = db.ObjectItems.Where(o => o.Id == id).FirstOrDefault();
|
||||||
|
db.ObjectItems.Remove(delobj);
|
||||||
|
db.SaveChanges();
|
||||||
|
return Ok();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
using Microsoft.AspNetCore.Http.HttpResults;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Strela.Models;
|
||||||
|
using Strela.Services;
|
||||||
|
|
||||||
|
namespace Strela.Controllers;
|
||||||
|
|
||||||
|
[ApiController]
|
||||||
|
[Route("api/[controller]")]
|
||||||
|
public class TypeController : ControllerBase
|
||||||
|
{
|
||||||
|
private readonly ILogger<TypeController> _logger;
|
||||||
|
|
||||||
|
public TypeController(ILogger<TypeController> logger)
|
||||||
|
{
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
//=========================== GET =================================//
|
||||||
|
#region GET
|
||||||
|
[HttpGet("GetTypes")]
|
||||||
|
public IActionResult GetList()// Получить лист типов устройств
|
||||||
|
{
|
||||||
|
using (var db = new SQLiteService())
|
||||||
|
{
|
||||||
|
var tps = db.DeviceTypes.ToList();
|
||||||
|
return Ok(tps);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("GetTypeById")]
|
||||||
|
[ProducesResponseType<DeviceItem>(StatusCodes.Status200OK)]
|
||||||
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
||||||
|
public IActionResult GetById(int id) // Получить устройство по id
|
||||||
|
{
|
||||||
|
using (var db = new SQLiteService())
|
||||||
|
{
|
||||||
|
var d = db.DeviceTypes.Where(d => d.Id == id).FirstOrDefault();
|
||||||
|
if (d != null)
|
||||||
|
return Ok(d);
|
||||||
|
else return NoContent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
//========================= POST ====================================//
|
||||||
|
#region POST
|
||||||
|
|
||||||
|
[HttpPost("AddType")]
|
||||||
|
public IActionResult AddType(DeviceType d) //Добавить один тип устройства
|
||||||
|
{
|
||||||
|
using (var db = new SQLiteService())
|
||||||
|
{
|
||||||
|
db.DeviceTypes.Add(d);//.Where(u => u.Name == name).FirstOrDefault();
|
||||||
|
db.SaveChanges();
|
||||||
|
return Created();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
//========================= DELETE ====================================//
|
||||||
|
#region DELETE
|
||||||
|
[HttpDelete("DelType")]
|
||||||
|
public IActionResult DelType(int id) //Удалить тип устройства по id
|
||||||
|
{
|
||||||
|
using (var db = new SQLiteService())
|
||||||
|
{
|
||||||
|
var deldevtype = db.DeviceTypes.Where(u => u.Id == id).FirstOrDefault();
|
||||||
|
db.DeviceTypes.Remove(deldevtype);
|
||||||
|
db.SaveChanges();
|
||||||
|
return Ok();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
+16
-19
@@ -2,29 +2,26 @@
|
|||||||
{
|
{
|
||||||
public class DeviceItem
|
public class DeviceItem
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
public string Ip { get; set; }
|
public string? Ip { get; set; }
|
||||||
public string Mac { get; set; }
|
public string? Mac { get; set; }
|
||||||
public string? Description { get; set; }
|
public string? Description { get; set; }
|
||||||
public string? Name { get; set; }
|
public string? Name { get; set; }
|
||||||
public string? Location { get; set; }
|
public string? Location { get; set; }
|
||||||
public List<DeviceItem> Devises { get; set; }
|
public List<DeviceItem>? ListDevices { get; set; }
|
||||||
public DeviceType DeviceType { get; set; }
|
public DeviceType? DeviceType { get; set; }
|
||||||
public int ConnectedToSwitchId { get; set; }
|
public ObjectItem? DeviceObject { get; set; }
|
||||||
|
public Guid ConnectedToSwitchId { get; set; }
|
||||||
public int ConnectedToPortOnSwitch { get; set; }
|
public int ConnectedToPortOnSwitch { get; set; }
|
||||||
|
|
||||||
//public DeviceItem(int type, string ip, string mac, string location)
|
|
||||||
//{
|
|
||||||
|
|
||||||
//}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//Unknown = 0,
|
//Unknown = 0,
|
||||||
//SwitchCore = 1,
|
//SwitchCore = 1,
|
||||||
//SwitchAccess = 2,
|
//SwitchAccess = 2,
|
||||||
//Camera = 3,
|
//Camera = 3,
|
||||||
//Server = 4,
|
//Server = 4,
|
||||||
//WorkStation = 5,
|
//WorkStation = 5,
|
||||||
//PDU_AVR = 6,
|
//PDU_AVR = 6,
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,8 @@
|
|||||||
{
|
{
|
||||||
public class DeviceType
|
public class DeviceType
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
|
public string? Description { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace Strela.Models
|
||||||
|
{
|
||||||
|
public class ObjectItem
|
||||||
|
{
|
||||||
|
public Guid Id { get; set; }
|
||||||
|
public string NameObject { get; set; } = "Unknown";
|
||||||
|
public string? DescriptionObject { get; set; } = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -9,6 +9,7 @@ namespace Strela.Services
|
|||||||
public virtual DbSet<User> Users { get; set; }
|
public virtual DbSet<User> Users { get; set; }
|
||||||
public virtual DbSet<DeviceItem> Devices { get; set; }
|
public virtual DbSet<DeviceItem> Devices { get; set; }
|
||||||
public virtual DbSet<DeviceType> DeviceTypes { get; set; }
|
public virtual DbSet<DeviceType> DeviceTypes { get; set; }
|
||||||
|
public virtual DbSet<ObjectItem> ObjectItems { get; set; }
|
||||||
|
|
||||||
|
|
||||||
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
||||||
|
|||||||
@@ -8,6 +8,13 @@
|
|||||||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Remove="Models\OTD\**" />
|
||||||
|
<Content Remove="Models\OTD\**" />
|
||||||
|
<EmbeddedResource Remove="Models\OTD\**" />
|
||||||
|
<None Remove="Models\OTD\**" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.16" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.16" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.16" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.16" />
|
||||||
@@ -23,8 +30,4 @@
|
|||||||
<ProjectReference Include="..\lsSoft.ServiceDefaults\lsSoft.ServiceDefaults.csproj" />
|
<ProjectReference Include="..\lsSoft.ServiceDefaults\lsSoft.ServiceDefaults.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<Folder Include="Models\OTD\" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.4.32916.344
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Visor", "Visor\Visor.csproj", "{A1073A31-9C1C-4B5F-8752-F4397F84E210}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{A1073A31-9C1C-4B5F-8752-F4397F84E210}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{A1073A31-9C1C-4B5F-8752-F4397F84E210}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{A1073A31-9C1C-4B5F-8752-F4397F84E210}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{A1073A31-9C1C-4B5F-8752-F4397F84E210}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {C59BEA9D-058E-406A-BE53-A3BC184DCF72}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"servers": {
|
||||||
|
"blazorise-docs": {
|
||||||
|
"type": "http",
|
||||||
|
"url": "https://mcp.blazorise.com/mcp"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
<Blazorise.ThemeProvider Theme="@theme">
|
||||||
|
<Router AppAssembly="typeof(App).Assembly">
|
||||||
|
<Found Context="routeData">
|
||||||
|
<RouteView RouteData="routeData" DefaultLayout="typeof(Visor.Layouts.MainLayout)" />
|
||||||
|
</Found>
|
||||||
|
<NotFound>
|
||||||
|
<p>Sorry, there's nothing at this address.</p>
|
||||||
|
</NotFound>
|
||||||
|
</Router>
|
||||||
|
<MessageProvider />
|
||||||
|
<PageProgressProvider />
|
||||||
|
</Blazorise.ThemeProvider>
|
||||||
|
@code {
|
||||||
|
private Theme theme = new()
|
||||||
|
{
|
||||||
|
BarOptions = new()
|
||||||
|
{
|
||||||
|
HorizontalHeight = "72px"
|
||||||
|
},
|
||||||
|
ColorOptions = new()
|
||||||
|
{
|
||||||
|
Primary = "#0288D1",
|
||||||
|
Secondary = "#A65529",
|
||||||
|
Success = "#23C02E",
|
||||||
|
Info = "#9BD8FE",
|
||||||
|
Warning = "#F8B86C",
|
||||||
|
Danger = "#F95741",
|
||||||
|
Light = "#F0F0F0",
|
||||||
|
Dark = "#535353",
|
||||||
|
},
|
||||||
|
BackgroundOptions = new()
|
||||||
|
{
|
||||||
|
Primary = "#0288D1",
|
||||||
|
Secondary = "#A65529",
|
||||||
|
Success = "#23C02E",
|
||||||
|
Info = "#9BD8FE",
|
||||||
|
Warning = "#F8B86C",
|
||||||
|
Danger = "#F95741",
|
||||||
|
Light = "#F0F0F0",
|
||||||
|
Dark = "#535353",
|
||||||
|
},
|
||||||
|
InputOptions = new()
|
||||||
|
{
|
||||||
|
CheckColor = "#0288D1",
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
@using System.Reflection
|
||||||
|
<Bar Padding="Padding.Is1" Background="Background.Default">
|
||||||
|
<Heading TextAlignment="TextAlignment.Center" Width="Width.Is100" TextColor="TextColor.White" Size="HeadingSize.Is6">@($"{Assembly.GetExecutingAssembly().GetName().Name} v{Assembly.GetExecutingAssembly().GetName().Version}")</Heading>
|
||||||
|
</Bar>
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
<Bar Breakpoint="Breakpoint.Desktop" NavigationBreakpoint="Breakpoint.Tablet" ThemeContrast="ThemeContrast.Dark"
|
||||||
|
Mode="BarMode.VerticalInline" CollapseMode="BarCollapseMode.Small">
|
||||||
|
<BarToggler />
|
||||||
|
<BarBrand>
|
||||||
|
<BarItem>
|
||||||
|
<BarLink To="">
|
||||||
|
<BarIcon IconName="customIcon" />
|
||||||
|
Visor
|
||||||
|
</BarLink>
|
||||||
|
</BarItem>
|
||||||
|
</BarBrand>
|
||||||
|
<BarMenu>
|
||||||
|
<BarStart>
|
||||||
|
<BarItem>
|
||||||
|
<BarLink To="/">
|
||||||
|
<BarIcon IconName="IconName.Dashboard" />
|
||||||
|
Дашборд
|
||||||
|
</BarLink>
|
||||||
|
</BarItem>
|
||||||
|
<BarItem>
|
||||||
|
<BarDropdown @bind-Visible="pagesBarVisible">
|
||||||
|
<BarDropdownToggle>
|
||||||
|
<BarIcon IconName="IconName.Edit" />
|
||||||
|
Настройка
|
||||||
|
</BarDropdownToggle>
|
||||||
|
<BarDropdownMenu>
|
||||||
|
<BarDropdownItem To="/setting/add_objects">Добавить объект</BarDropdownItem>
|
||||||
|
</BarDropdownMenu>
|
||||||
|
<BarDropdownMenu>
|
||||||
|
<BarDropdownItem To="/simple-datagrid">Simple DataGrid</BarDropdownItem>
|
||||||
|
</BarDropdownMenu>
|
||||||
|
</BarDropdown>
|
||||||
|
</BarItem>
|
||||||
|
</BarStart>
|
||||||
|
<BarEnd>
|
||||||
|
<BarItem>
|
||||||
|
<BarLink To="/setting/wizard">
|
||||||
|
<BarIcon IconName="IconName.CaretSquareRight" />
|
||||||
|
Wizard
|
||||||
|
</BarLink>
|
||||||
|
</BarItem>
|
||||||
|
</BarEnd>
|
||||||
|
</BarMenu>
|
||||||
|
</Bar>
|
||||||
|
@code {
|
||||||
|
private bool pagesBarVisible = false;
|
||||||
|
|
||||||
|
RenderFragment customIcon = @<img src="/brand-logo.png" style="width:32px; height: 32px" />;
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
<div>
|
||||||
|
@foreach ( var color in ThemeColors.Items.Values )
|
||||||
|
{
|
||||||
|
<div @key="color.Key">
|
||||||
|
@foreach ( var shade in color.Shades.Values )
|
||||||
|
{
|
||||||
|
var temp = shade.Value;
|
||||||
|
|
||||||
|
<div @key="shade.Key" class="demo-theme-color-item" style="background: @temp" @onclick="@(()=>OnThemeColorSelect(temp))"></div>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
@code{
|
||||||
|
[Parameter]
|
||||||
|
public string? Value { get; set; }
|
||||||
|
|
||||||
|
[Parameter]
|
||||||
|
public EventCallback<string> ValueChanged { get; set; }
|
||||||
|
|
||||||
|
Task OnThemeColorSelect( string value )
|
||||||
|
{
|
||||||
|
Value = value;
|
||||||
|
return ValueChanged.InvokeAsync(value);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
.demo-theme-color-item {
|
||||||
|
display: table-cell;
|
||||||
|
width: 36px;
|
||||||
|
height: 36px;
|
||||||
|
vertical-align: top;
|
||||||
|
text-align: center;
|
||||||
|
color: white;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-theme-color-item .material-icons {
|
||||||
|
display: flex;
|
||||||
|
height: 100%;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
@@ -0,0 +1,163 @@
|
|||||||
|
@using Blazorise.Localization
|
||||||
|
|
||||||
|
<Bar @bind-Visible="@topbarVisible" Breakpoint="Breakpoint.Desktop" Background="Background.Primary" ThemeContrast="ThemeContrast.Light">
|
||||||
|
<BarBrand>
|
||||||
|
<BarItem>
|
||||||
|
<BarLink To="">
|
||||||
|
<BarIcon Margin="Margin.Is2.FromEnd" IconName="IconName.Dashboard" />
|
||||||
|
Visor
|
||||||
|
</BarLink>
|
||||||
|
</BarItem>
|
||||||
|
</BarBrand>
|
||||||
|
<BarToggler />
|
||||||
|
<BarMenu>
|
||||||
|
<BarStart>
|
||||||
|
<BarItem>
|
||||||
|
<BarLink To="/">Home</BarLink>
|
||||||
|
</BarItem>
|
||||||
|
<BarItem>
|
||||||
|
<BarLink To="https://blazorise.com/docs/">Documentation</BarLink>
|
||||||
|
</BarItem>
|
||||||
|
<BarItem>
|
||||||
|
<BarDropdown>
|
||||||
|
<BarDropdownToggle>More</BarDropdownToggle>
|
||||||
|
<BarDropdownMenu>
|
||||||
|
<BarDropdownItem To="https://blazorise.com/docs/start/">
|
||||||
|
Quick-Start Guide
|
||||||
|
</BarDropdownItem>
|
||||||
|
<BarDropdownDivider />
|
||||||
|
<BarDropdownItem To="https://blazorise.com/docs/usage/">
|
||||||
|
Usage
|
||||||
|
</BarDropdownItem>
|
||||||
|
</BarDropdownMenu>
|
||||||
|
</BarDropdown>
|
||||||
|
</BarItem>
|
||||||
|
<BarItem>
|
||||||
|
<BarDropdown>
|
||||||
|
<BarDropdownToggle>Layout</BarDropdownToggle>
|
||||||
|
<BarDropdownMenu>
|
||||||
|
<BarDropdownItem Clicked="@(()=>OnLayoutTypeChecked("fixed-header"))">
|
||||||
|
@if ( LayoutType == "fixed-header" )
|
||||||
|
{
|
||||||
|
<Icon Name="IconName.CheckCircle" TextColor="TextColor.Success" />
|
||||||
|
}
|
||||||
|
Fixed Header
|
||||||
|
</BarDropdownItem>
|
||||||
|
<BarDropdownItem Clicked="@(()=>OnLayoutTypeChecked("fixed-header-footer-only"))">
|
||||||
|
@if ( LayoutType == "fixed-header-footer-only" )
|
||||||
|
{
|
||||||
|
<Icon Name="IconName.CheckCircle" TextColor="TextColor.Success" />
|
||||||
|
}
|
||||||
|
Fixed Header and Footer only
|
||||||
|
</BarDropdownItem>
|
||||||
|
<BarDropdownItem Clicked="@(()=>OnLayoutTypeChecked("sider-with-header-on-top"))">
|
||||||
|
@if ( LayoutType == "sider-with-header-on-top" )
|
||||||
|
{
|
||||||
|
<Icon Name="IconName.CheckCircle" TextColor="TextColor.Success" />
|
||||||
|
}
|
||||||
|
Sider with Header on top
|
||||||
|
</BarDropdownItem>
|
||||||
|
</BarDropdownMenu>
|
||||||
|
</BarDropdown>
|
||||||
|
</BarItem>
|
||||||
|
|
||||||
|
|
||||||
|
</BarStart>
|
||||||
|
<BarEnd>
|
||||||
|
<BarItem>
|
||||||
|
<BarDropdown RightAligned>
|
||||||
|
<BarDropdownToggle><Icon Name="IconName.Language" /></BarDropdownToggle>
|
||||||
|
<BarDropdownMenu>
|
||||||
|
@foreach ( var cultureInfo in LocalizationService!.AvailableCultures )
|
||||||
|
{
|
||||||
|
<BarDropdownItem @key="@cultureInfo.Name" Clicked="@(()=>SelectCulture(cultureInfo.Name))">
|
||||||
|
@if ( cultureInfo.IsNeutralCulture )
|
||||||
|
{
|
||||||
|
@cultureInfo.EnglishName
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
@cultureInfo.Parent.EnglishName
|
||||||
|
}
|
||||||
|
</BarDropdownItem>
|
||||||
|
}
|
||||||
|
</BarDropdownMenu>
|
||||||
|
</BarDropdown>
|
||||||
|
</BarItem>
|
||||||
|
<BarItem>
|
||||||
|
<BarDropdown RightAligned>
|
||||||
|
<BarDropdownToggle><Icon Name="IconName.Tint" /> Theme</BarDropdownToggle>
|
||||||
|
<BarDropdownMenu Style="padding: 15px; min-width:550px;">
|
||||||
|
<Row>
|
||||||
|
<Column Margin="Margin.Is2.FromBottom">
|
||||||
|
<Field>
|
||||||
|
<Switch TValue="bool" Value="@(Theme?.Enabled == true)" ValueChanged="@ThemeEnabledChanged">Theme enabled</Switch>
|
||||||
|
</Field>
|
||||||
|
</Column>
|
||||||
|
</Row>
|
||||||
|
<Row>
|
||||||
|
<Column Margin="Margin.Is2.FromBottom">
|
||||||
|
<Field>
|
||||||
|
<Check TValue="bool" Value="@(Theme?.IsGradient == true)" ValueChanged="@ThemeGradientChanged">Gradient colors</Check>
|
||||||
|
</Field>
|
||||||
|
<Field>
|
||||||
|
<Check TValue="bool" Value="@(Theme?.IsRounded == true)" ValueChanged="@ThemeRoundedChanged">Rounded elements</Check>
|
||||||
|
</Field>
|
||||||
|
</Column>
|
||||||
|
</Row>
|
||||||
|
<Row>
|
||||||
|
<Column>
|
||||||
|
<Container Fluid>
|
||||||
|
<ThemeColorSelector Value="@(Theme?.ColorOptions?.Primary)" ValueChanged="@ThemeColorChanged"></ThemeColorSelector>
|
||||||
|
</Container>
|
||||||
|
</Column>
|
||||||
|
</Row>
|
||||||
|
</BarDropdownMenu>
|
||||||
|
</BarDropdown>
|
||||||
|
</BarItem>
|
||||||
|
<BarItem>
|
||||||
|
<BarLink To="https://github.com/Megabit/Blazorise">GitHub</BarLink>
|
||||||
|
</BarItem>
|
||||||
|
</BarEnd>
|
||||||
|
</BarMenu>
|
||||||
|
</Bar>
|
||||||
|
@code {
|
||||||
|
protected override async Task OnInitializedAsync()
|
||||||
|
{
|
||||||
|
await SelectCulture( "en-US" );
|
||||||
|
|
||||||
|
await base.OnInitializedAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
Task SelectCulture( string name )
|
||||||
|
{
|
||||||
|
LocalizationService!.ChangeLanguage( name );
|
||||||
|
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool topbarVisible = false;
|
||||||
|
|
||||||
|
Task OnLayoutTypeChecked( string layoutType )
|
||||||
|
{
|
||||||
|
LayoutType = layoutType;
|
||||||
|
|
||||||
|
return LayoutTypeChanged.InvokeAsync( layoutType );
|
||||||
|
}
|
||||||
|
|
||||||
|
[Parameter] public EventCallback<bool> ThemeEnabledChanged { get; set; }
|
||||||
|
|
||||||
|
[Parameter] public EventCallback<bool> ThemeGradientChanged { get; set; }
|
||||||
|
|
||||||
|
[Parameter] public EventCallback<bool> ThemeRoundedChanged { get; set; }
|
||||||
|
|
||||||
|
[Parameter] public EventCallback<string> ThemeColorChanged { get; set; }
|
||||||
|
|
||||||
|
[Parameter] public string? LayoutType { get; set; }
|
||||||
|
|
||||||
|
[Parameter] public EventCallback<string> LayoutTypeChanged { get; set; }
|
||||||
|
|
||||||
|
[Inject] protected ITextLocalizerService? LocalizationService { get; set; }
|
||||||
|
|
||||||
|
[CascadingParameter] protected Theme? Theme { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
using Microsoft.AspNetCore.Components;
|
||||||
|
|
||||||
|
namespace Visor.Components.TodoApp
|
||||||
|
{
|
||||||
|
public abstract class BaseTodoItems : ComponentBase
|
||||||
|
{
|
||||||
|
protected Validations? validations;
|
||||||
|
|
||||||
|
protected string? description;
|
||||||
|
|
||||||
|
protected Filter filter = Filter.All;
|
||||||
|
|
||||||
|
protected List<Todo> todos = new()
|
||||||
|
{
|
||||||
|
new() { Description = "Buy milk" },
|
||||||
|
new() { Description = "Call John regarding the meeting" },
|
||||||
|
new() { Description = "Walk a dog" },
|
||||||
|
};
|
||||||
|
|
||||||
|
protected IEnumerable<Todo> Todos
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
var query = from t in todos select t;
|
||||||
|
|
||||||
|
if (filter == Filter.Active)
|
||||||
|
query = from q in query where !q.Completed select q;
|
||||||
|
|
||||||
|
if (filter == Filter.Completed)
|
||||||
|
query = from q in query where q.Completed select q;
|
||||||
|
|
||||||
|
return query;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void SetFilter(Filter filter)
|
||||||
|
{
|
||||||
|
this.filter = filter;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void OnCheckAll(bool isChecked)
|
||||||
|
{
|
||||||
|
todos.ForEach(x => x.Completed = isChecked);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async Task OnAddTodo()
|
||||||
|
{
|
||||||
|
if (await validations!.ValidateAll())
|
||||||
|
{
|
||||||
|
todos.Add(new() { Description = description });
|
||||||
|
description = null;
|
||||||
|
|
||||||
|
await validations.ClearAll();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void OnClearCompleted()
|
||||||
|
{
|
||||||
|
todos.RemoveAll(x => x.Completed);
|
||||||
|
filter = Filter.All;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected Task OnTodoStatusChanged(bool isChecked)
|
||||||
|
{
|
||||||
|
return InvokeAsync(StateHasChanged);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace Visor.Components.TodoApp
|
||||||
|
{
|
||||||
|
public enum Filter
|
||||||
|
{
|
||||||
|
All,
|
||||||
|
Active,
|
||||||
|
Completed,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace Visor.Components.TodoApp
|
||||||
|
{
|
||||||
|
public class Todo
|
||||||
|
{
|
||||||
|
public bool Completed { get; set; }
|
||||||
|
|
||||||
|
public string? Description { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
@if (Todo is not null)
|
||||||
|
{
|
||||||
|
<ListGroupItem>
|
||||||
|
<Field Horizontal Padding="Padding.IsAuto.OnAll">
|
||||||
|
<FieldBody ColumnSize="ColumnSize.Is1">
|
||||||
|
<Check TValue="bool" Value="@Todo.Completed" ValueChanged="@OnCheckedChanged"></Check>
|
||||||
|
</FieldBody>
|
||||||
|
<FieldBody ColumnSize="ColumnSize.Is11">
|
||||||
|
@Todo.Description
|
||||||
|
</FieldBody>
|
||||||
|
</Field>
|
||||||
|
</ListGroupItem>
|
||||||
|
}
|
||||||
|
@code {
|
||||||
|
Task OnCheckedChanged(bool isChecked)
|
||||||
|
{
|
||||||
|
Todo!.Completed = isChecked;
|
||||||
|
|
||||||
|
return StatusChanged?.Invoke(isChecked) ?? Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
[Parameter] public Todo? Todo { get; set; }
|
||||||
|
|
||||||
|
[Parameter] public Func<bool, Task>? StatusChanged { get; set; }
|
||||||
|
}
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
@inherits BaseTodoItems
|
||||||
|
<Container Fluid>
|
||||||
|
<Row>
|
||||||
|
<Column>
|
||||||
|
<Card>
|
||||||
|
<CardHeader Padding="Padding.Is1.FromBottom">
|
||||||
|
<CardTitle Size="HeadingSize.Is4">Todo List</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardBody Padding="Padding.Is0.FromBottom">
|
||||||
|
<Fields>
|
||||||
|
<Column ColumnSize="ColumnSize.Is1">
|
||||||
|
<Check TValue="bool" Value="@Todos.All(x=>x.Completed)" ValueChanged="@OnCheckAll">All</Check>
|
||||||
|
</Column>
|
||||||
|
<Column ColumnSize="ColumnSize.Is11">
|
||||||
|
<Addons>
|
||||||
|
<Addon AddonType="AddonType.Body">
|
||||||
|
<Validations @ref="validations" Mode="ValidationMode.Manual">
|
||||||
|
<Validation Validator="@ValidationRule.IsNotEmpty">
|
||||||
|
<TextInput @bind-Value="@description" Placeholder="What needs to be done?"></TextInput>
|
||||||
|
</Validation>
|
||||||
|
</Validations>
|
||||||
|
</Addon>
|
||||||
|
<Addon AddonType="AddonType.End">
|
||||||
|
<Button Color="Color.Primary" Clicked="@OnAddTodo">
|
||||||
|
<Icon Name="IconName.Add" />Add
|
||||||
|
</Button>
|
||||||
|
</Addon>
|
||||||
|
</Addons>
|
||||||
|
</Column>
|
||||||
|
</Fields>
|
||||||
|
</CardBody>
|
||||||
|
<CardBody Padding="Padding.Is0.OnY">
|
||||||
|
<ListGroup Flush>
|
||||||
|
@foreach ( var todo in Todos )
|
||||||
|
{
|
||||||
|
<TodoItem Todo="@todo" StatusChanged="@OnTodoStatusChanged" />
|
||||||
|
}
|
||||||
|
</ListGroup>
|
||||||
|
</CardBody>
|
||||||
|
<CardFooter Padding="Padding.Is3.FromBottom">
|
||||||
|
<Field Horizontal>
|
||||||
|
<FieldBody ColumnSize="ColumnSize.Is10">
|
||||||
|
<Buttons Role="ButtonsRole.Addons">
|
||||||
|
<Button Color="Color.Info" Clicked="@(() => SetFilter( Filter.All ))" Active="@(filter == Filter.All)">All</Button>
|
||||||
|
<Button Color="Color.Info" Clicked="@(() => SetFilter( Filter.Active ))" Active="@(filter == Filter.Active)">Active</Button>
|
||||||
|
<Button Color="Color.Info" Clicked="@(() => SetFilter( Filter.Completed ))" Active="@(filter == Filter.Completed)">Completed</Button>
|
||||||
|
</Buttons>
|
||||||
|
</FieldBody>
|
||||||
|
<FieldBody ColumnSize="ColumnSize.Is2">
|
||||||
|
<Button Color="Color.Warning" Float="Float.End" Clicked="@OnClearCompleted" Display="@(todos.Any(x=>x.Completed) ? Display.Always : Display.None)">Clear Completed</Button>
|
||||||
|
</FieldBody>
|
||||||
|
</Field>
|
||||||
|
</CardFooter>
|
||||||
|
</Card>
|
||||||
|
</Column>
|
||||||
|
</Row>
|
||||||
|
</Container>
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
global using Blazorise;
|
||||||
|
global using Blazorise.DataGrid;
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
@using Visor.Components.Layout
|
||||||
|
|
||||||
|
@inherits LayoutComponentBase
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<Layout Sider>
|
||||||
|
<LayoutSider>
|
||||||
|
<LayoutSiderContent>
|
||||||
|
<SideMenu />
|
||||||
|
</LayoutSiderContent>
|
||||||
|
</LayoutSider>
|
||||||
|
<Layout>
|
||||||
|
@* <LayoutHeader Fixed>
|
||||||
|
<TopMenu ThemeEnabledChanged="@OnThemeEnabledChanged"
|
||||||
|
ThemeGradientChanged="@OnThemeGradientChanged"
|
||||||
|
ThemeRoundedChanged="@OnThemeRoundedChanged"
|
||||||
|
ThemeColorChanged="@OnThemeColorChanged"
|
||||||
|
@bind-LayoutType="@layoutType" />
|
||||||
|
</LayoutHeader> *@
|
||||||
|
<LayoutContent Padding="Padding.Is4.OnX.Is4.FromTop">
|
||||||
|
@Body
|
||||||
|
</LayoutContent>
|
||||||
|
</Layout>
|
||||||
|
</Layout>
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
using Blazorise;
|
||||||
|
using Blazorise.Localization;
|
||||||
|
|
||||||
|
using Microsoft.AspNetCore.Components;
|
||||||
|
|
||||||
|
namespace Visor.Layouts
|
||||||
|
{
|
||||||
|
public partial class MainLayout
|
||||||
|
{
|
||||||
|
[Inject] protected ITextLocalizerService? LocalizationService { get; set; }
|
||||||
|
|
||||||
|
[CascadingParameter] protected Theme? Theme { get; set; }
|
||||||
|
|
||||||
|
protected string layoutType = "fixed-header";
|
||||||
|
|
||||||
|
protected override async Task OnInitializedAsync()
|
||||||
|
{
|
||||||
|
await SelectCulture("en-US");
|
||||||
|
|
||||||
|
await base.OnInitializedAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Task SelectCulture(string name)
|
||||||
|
{
|
||||||
|
LocalizationService!.ChangeLanguage(name);
|
||||||
|
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
Task OnThemeEnabledChanged(bool value)
|
||||||
|
{
|
||||||
|
if (Theme is null)
|
||||||
|
return Task.CompletedTask;
|
||||||
|
|
||||||
|
Theme.Enabled = value;
|
||||||
|
|
||||||
|
return InvokeAsync(Theme.ThemeHasChanged);
|
||||||
|
}
|
||||||
|
|
||||||
|
Task OnThemeGradientChanged(bool value)
|
||||||
|
{
|
||||||
|
if (Theme is null)
|
||||||
|
return Task.CompletedTask;
|
||||||
|
|
||||||
|
Theme.IsGradient = value;
|
||||||
|
|
||||||
|
return InvokeAsync(Theme.ThemeHasChanged);
|
||||||
|
}
|
||||||
|
|
||||||
|
Task OnThemeRoundedChanged(bool value)
|
||||||
|
{
|
||||||
|
if (Theme is null)
|
||||||
|
return Task.CompletedTask;
|
||||||
|
|
||||||
|
Theme.IsRounded = value;
|
||||||
|
|
||||||
|
return InvokeAsync(Theme.ThemeHasChanged);
|
||||||
|
}
|
||||||
|
|
||||||
|
Task OnThemeColorChanged(string value)
|
||||||
|
{
|
||||||
|
if (Theme is null)
|
||||||
|
return Task.CompletedTask;
|
||||||
|
|
||||||
|
Theme.ColorOptions ??= new();
|
||||||
|
|
||||||
|
Theme.BackgroundOptions ??= new();
|
||||||
|
|
||||||
|
Theme.TextColorOptions ??= new();
|
||||||
|
|
||||||
|
Theme.ColorOptions.Primary = value;
|
||||||
|
Theme.BackgroundOptions.Primary = value;
|
||||||
|
Theme.TextColorOptions.Primary = value;
|
||||||
|
|
||||||
|
Theme.InputOptions ??= new();
|
||||||
|
|
||||||
|
Theme.InputOptions.CheckColor = value;
|
||||||
|
Theme.InputOptions.SliderColor = value;
|
||||||
|
|
||||||
|
Theme.SpinKitOptions ??= new();
|
||||||
|
|
||||||
|
Theme.SpinKitOptions.Color = value;
|
||||||
|
|
||||||
|
return InvokeAsync(Theme.ThemeHasChanged);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
namespace Visor.Models
|
||||||
|
{
|
||||||
|
public class AllPubData
|
||||||
|
{
|
||||||
|
public static List<ObjectItems> ListObjectItems { get; set; } = new();
|
||||||
|
public static List<DeviceItems> ListDeviceItems { get; set; } = new();
|
||||||
|
public static List<DeviceTypeItems> ListDeviceTypeItems { get; set; } = new();
|
||||||
|
public static HttpClient http { get; set; } = new()
|
||||||
|
{
|
||||||
|
BaseAddress = new Uri("http://localhost:5262/")
|
||||||
|
};
|
||||||
|
|
||||||
|
public static Task GetAll() => _GetAllData();
|
||||||
|
public static Task GetObjects() => _GetObject();
|
||||||
|
public static Task GetType() => _GetType();
|
||||||
|
public static Task GetDevice() => _GetDevice();
|
||||||
|
|
||||||
|
private static async Task _GetAllData()
|
||||||
|
{
|
||||||
|
var o = await _GetObject();
|
||||||
|
var t = await _GetType();
|
||||||
|
var d = await _GetDevice();
|
||||||
|
}
|
||||||
|
private static async Task<List<ObjectItems>> _GetObject()
|
||||||
|
{
|
||||||
|
return ListObjectItems = await http.GetFromJsonAsync<List<ObjectItems>>("api/Object/GetObject");
|
||||||
|
}
|
||||||
|
private static async Task<List<DeviceItems>> _GetDevice()
|
||||||
|
{
|
||||||
|
return ListDeviceItems = http.GetFromJsonAsync<List<DeviceItems>>("api/Device/GetDevices").Result.Take(100).ToList();
|
||||||
|
}
|
||||||
|
private static async Task<List<DeviceTypeItems>> _GetType()
|
||||||
|
{
|
||||||
|
return ListDeviceTypeItems = await http.GetFromJsonAsync<List<DeviceTypeItems>>("api/Type/GetTypes");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
namespace Visor.Models
|
||||||
|
{
|
||||||
|
public class DeviceItems
|
||||||
|
{
|
||||||
|
public Guid Id { get; set; }
|
||||||
|
public string? Ip { get; set; }
|
||||||
|
public string? Mac { get; set; }
|
||||||
|
public string? Description { get; set; }
|
||||||
|
public string? Name { get; set; }
|
||||||
|
public string? Location { get; set; }
|
||||||
|
public List<DeviceItems>? ListDevices { get; set; }
|
||||||
|
public DeviceTypeItems? DeviceType { get; set; }
|
||||||
|
public ObjectItems? DeviceObject { get; set; }
|
||||||
|
public Guid ConnectedToSwitchId { get; set; }
|
||||||
|
public int ConnectedToPortOnSwitch { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unknown = 0,
|
||||||
|
//SwitchCore = 1,
|
||||||
|
//SwitchAccess = 2,
|
||||||
|
//Camera = 3,
|
||||||
|
//Server = 4,
|
||||||
|
//WorkStation = 5,
|
||||||
|
//PDU_AVR = 6,
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace Visor.Models
|
||||||
|
{
|
||||||
|
public class DeviceTypeItems
|
||||||
|
{
|
||||||
|
public Guid Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
public string? Description { get; set; } = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
|
||||||
|
namespace Visor.Models
|
||||||
|
{
|
||||||
|
public class ObjectItems
|
||||||
|
{
|
||||||
|
[Key]
|
||||||
|
public Guid Id { get; set; }
|
||||||
|
public string NameObject { get; set; } = "Unknown";
|
||||||
|
public string DescriptionObject { get; set; } = string.Empty;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
@page "/"
|
||||||
|
@using Visor.Models
|
||||||
|
@inject IVersionProvider VersionProvider
|
||||||
|
<Heading Size="HeadingSize.Is1" Margin="Margin.Is3.FromBottom">ДАШБОРД</Heading>
|
||||||
|
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
@page
|
||||||
|
@model Visor.Pages.ErrorModel
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||||
|
<title>Error</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<h1>Error.</h1>
|
||||||
|
<h2>An error occurred while processing your request.</h2>
|
||||||
|
|
||||||
|
@if (Model.ShowRequestId)
|
||||||
|
{
|
||||||
|
<p>
|
||||||
|
<strong>Request ID:</strong> <code>@Model.RequestId</code>
|
||||||
|
</p>
|
||||||
|
}
|
||||||
|
|
||||||
|
<h3>Development Mode</h3>
|
||||||
|
<p>
|
||||||
|
Swapping to the <strong>Development</strong> environment displays detailed information about the error that occurred.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
|
||||||
|
It can result in displaying sensitive information from exceptions to end users.
|
||||||
|
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
|
||||||
|
and restarting the app.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user