using ZB.MOM.WW.OtOpcUa.AdminUI.Uns.TagEditors; using ZB.MOM.WW.OtOpcUa.Driver.FOCAS; namespace ZB.MOM.WW.OtOpcUa.AdminUI.Components.Shared.Drivers.DeviceForms; /// /// Typed working model for a FOCAS Device's connection endpoint (the v3 endpoint→DeviceConfig /// split). Authors the PascalCase HostAddress/Series keys that /// FocasDeviceOptions binds — the exact casing the seed and runtime probe /// (PropertyNameCaseInsensitive) expect. Preserves unrecognised keys across a load→save. /// public sealed class FocasDeviceModel { /// CNC host address (host or host:port, e.g. 192.168.0.10:8193). public string HostAddress { get; set; } = ""; /// CNC series, enabling per-series address validation. public FocasCncSeries Series { get; set; } = FocasCncSeries.Unknown; private System.Text.Json.Nodes.JsonObject _bag = new(); /// Loads a model from a DeviceConfig JSON string, defaulting absent keys and retaining /// every original key so fields this editor doesn't expose survive a load→save. /// The raw DeviceConfig JSON string, or null for a new/empty device. /// The populated . public static FocasDeviceModel FromJson(string? json) { var o = TagConfigJson.ParseOrNew(json); return new FocasDeviceModel { HostAddress = TagConfigJson.GetString(o, "HostAddress") ?? "", Series = TagConfigJson.GetEnum(o, "Series", FocasCncSeries.Unknown), _bag = o, }; } /// Serializes this model back to a DeviceConfig JSON string, writing the PascalCase endpoint /// keys over the preserved key bag. /// The serialised DeviceConfig JSON string. public string ToJson() { TagConfigJson.Set(_bag, "HostAddress", HostAddress); TagConfigJson.Set(_bag, "Series", Series.ToString()); return TagConfigJson.Serialize(_bag); } /// Validation hook; returns an error message or null when the model is valid. /// An error message describing the validation failure, or null when the model is valid. public string? Validate() => string.IsNullOrWhiteSpace(HostAddress) ? "Host address is required." : null; }