Group all 69 projects into category subfolders under src/ and tests/ so the Rider Solution Explorer mirrors the module structure. Folders: Core, Server, Drivers (with a nested Driver CLIs subfolder), Client, Tooling. - Move every project folder on disk with git mv (history preserved as renames). - Recompute relative paths in 57 .csproj files: cross-category ProjectReferences, the lib/ HintPath+None refs in Driver.Historian.Wonderware, and the external mxaccessgw refs in Driver.Galaxy and its test project. - Rebuild ZB.MOM.WW.OtOpcUa.slnx with nested solution folders. - Re-prefix project paths in functional scripts (e2e, compliance, smoke SQL, integration, install). Build green (0 errors); unit tests pass. Docs left for a separate pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
31 lines
1.5 KiB
C#
31 lines
1.5 KiB
C#
namespace ZB.MOM.WW.OtOpcUa.Core.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Optional plug-point a driver implements to provide a custom Admin UI editor for its
|
|
/// <c>DriverConfig</c> JSON. Drivers that don't implement this fall back to the generic
|
|
/// JSON editor with schema-driven validation against the registered JSON schema.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Per <c>docs/v2/plan.md</c> decision #27 — driver-specific config editors are deferred
|
|
/// to each driver's implementation phase; v2.0 ships with the generic JSON editor as the
|
|
/// default. This interface is the future plug-point so phase-specific editors can land
|
|
/// incrementally.
|
|
///
|
|
/// The actual UI rendering happens in the Admin Blazor Server app (see
|
|
/// <c>docs/v2/admin-ui.md</c>). This interface in <c>Core.Abstractions</c> is the
|
|
/// contract between the driver and the Admin app — the Admin app discovers
|
|
/// implementations and slots them into the Driver Detail screen.
|
|
/// </remarks>
|
|
public interface IDriverConfigEditor
|
|
{
|
|
/// <summary>Driver type name this editor handles (e.g. "Galaxy", "ModbusTcp").</summary>
|
|
string DriverType { get; }
|
|
|
|
/// <summary>
|
|
/// Type of the Razor component (must derive from <c>ComponentBase</c> in the Admin app's
|
|
/// `Components/Shared/` folder) that renders the editor. Returned as <c>Type</c> so the
|
|
/// <c>Core.Abstractions</c> project doesn't need a Blazor reference.
|
|
/// </summary>
|
|
Type EditorComponentType { get; }
|
|
}
|