mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 04:44:49 +00:00
52 lines
1.5 KiB
C#
52 lines
1.5 KiB
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.AppServer;
|
|
using PepperDash.Essentials.AppServer.Messengers;
|
|
|
|
namespace PepperDash.Essentials.Touchpanel
|
|
{
|
|
/// <summary>
|
|
/// Represents a ThemeMessenger
|
|
/// </summary>
|
|
public class ThemeMessenger : MessengerBase
|
|
{
|
|
private readonly ITheme _tpDevice;
|
|
|
|
public ThemeMessenger(string key, string path, ITheme device) : base(key, path, device as Device)
|
|
{
|
|
_tpDevice = device;
|
|
}
|
|
|
|
protected override void RegisterActions()
|
|
{
|
|
AddAction("/fullStatus", (id, content) =>
|
|
{
|
|
PostStatusMessage(new ThemeUpdateMessage { Theme = _tpDevice.Theme });
|
|
});
|
|
|
|
AddAction("/saveTheme", (id, content) =>
|
|
{
|
|
var theme = content.ToObject<MobileControlSimpleContent<string>>();
|
|
|
|
Debug.LogMessage(Serilog.Events.LogEventLevel.Information, "Setting theme to {theme}", this, theme.Value);
|
|
_tpDevice.UpdateTheme(theme.Value);
|
|
|
|
PostStatusMessage(JToken.FromObject(new { theme = theme.Value }));
|
|
});
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Represents a ThemeUpdateMessage
|
|
/// </summary>
|
|
public class ThemeUpdateMessage : DeviceStateMessageBase
|
|
{
|
|
[JsonProperty("theme")]
|
|
/// <summary>
|
|
/// Gets or sets the Theme
|
|
/// </summary>
|
|
public string Theme { get; set; }
|
|
}
|
|
}
|