31 lines
802 B
C#
31 lines
802 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System.Text.Json;
|
|
|
|
namespace LANCommander.Controllers
|
|
{
|
|
public class BaseController : Controller
|
|
{
|
|
public void Alert(string message, string type = "info", bool dismissable = true)
|
|
{
|
|
List<AlertViewModel> alerts;
|
|
|
|
try
|
|
{
|
|
alerts = JsonSerializer.Deserialize<List<AlertViewModel>>((string)TempData["Alerts"]);
|
|
}
|
|
catch
|
|
{
|
|
alerts = new List<AlertViewModel>();
|
|
}
|
|
|
|
alerts.Add(new AlertViewModel()
|
|
{
|
|
Message = message,
|
|
Type = type,
|
|
Dismissable = dismissable
|
|
});
|
|
|
|
TempData["Alerts"] = JsonSerializer.Serialize(alerts);
|
|
}
|
|
}
|
|
}
|