2026-03-19 12:42:52 +01:00
|
|
|
import { useState } from 'react'
|
|
|
|
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
|
feat: implement Phase 6 — Software Deployment
Backend:
- SoftwarePackage model (Name, Version, OsType, PackageManager, PackageName, InstallerUrl, Checksum, SilentArgs)
- RmmDbContext: SoftwarePackages DbSet + unique index on (Name, Version, OsType)
- SoftwarePackagesController: full CRUD with OsType filter
- DeployController: POST /api/v1/deploy creates InstallSoftware/UninstallSoftware TaskItem
- EF Migration: AddSoftwarePackages (20260319130448)
Go Agent:
- internal/deployer/deployer.go: Install() and Uninstall() with:
- Chocolatey (Windows), apt/dnf (Linux), auto-detect
- Direct installer fallback: HTTP download + SHA256 verify + silent install
- Supports .msi, .exe (Windows) and .deb, .rpm (Linux)
- main.go: COMMAND_TYPE_INSTALL_SOFTWARE and COMMAND_TYPE_UNINSTALL_SOFTWARE routed to deployer
Frontend:
- SoftwarePage: Katalog tab (CRUD, OS filter, smart package manager select) + Deploy tab
- api/types.ts: SoftwarePackage, PackageManager, DeployRequest/Response types
- api/client.ts: softwarePackagesApi and deployApi
- App.tsx: Software nav item with Package icon
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 14:06:40 +01:00
|
|
|
import { LayoutDashboard, Ticket, Bell, Package, Menu, X } from 'lucide-react'
|
2026-03-19 12:42:52 +01:00
|
|
|
import { DashboardPage } from './pages/DashboardPage'
|
|
|
|
|
import { AgentDetailPage } from './pages/AgentDetailPage'
|
|
|
|
|
import TicketsPage from './pages/TicketsPage'
|
feat: implement Phase 5 — Alerting & Monitoring
Backend:
- AlertEvaluationService: evaluates metrics against AlertRules after each heartbeat
- Supports cpu_usage_percent and memory_usage_percent metric paths
- Operators: >, >=, <, <=, ==
- 15-minute dedup window to prevent alert spam
- AlertRulesController: full CRUD for alert rules (GET/POST/PUT/DELETE)
- AlertsController: list with acknowledged filter + POST acknowledge endpoint
- IRmmHubClient: added AlertTriggered push method
- Program.cs: AlertEvaluationService registered as Scoped
Frontend:
- AlertsPage: two-tab layout (active alerts + rules)
- Alerts tab: severity badges, acknowledge button, all/unack/ack filter
- Rules tab: condition display, enabled toggle, delete with confirm
- Create rule modal with MetricPath/Operator/Threshold/Severity selects
- api/types.ts: AlertRule, AlertItem, CreateAlertRuleRequest types
- api/client.ts: alertRulesApi and alertsApi
- useAgentSignalR: handles AlertTriggered → invalidates alerts query
- App.tsx: Alerts nav item with Bell icon
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 14:00:19 +01:00
|
|
|
import AlertsPage from './pages/AlertsPage'
|
feat: implement Phase 6 — Software Deployment
Backend:
- SoftwarePackage model (Name, Version, OsType, PackageManager, PackageName, InstallerUrl, Checksum, SilentArgs)
- RmmDbContext: SoftwarePackages DbSet + unique index on (Name, Version, OsType)
- SoftwarePackagesController: full CRUD with OsType filter
- DeployController: POST /api/v1/deploy creates InstallSoftware/UninstallSoftware TaskItem
- EF Migration: AddSoftwarePackages (20260319130448)
Go Agent:
- internal/deployer/deployer.go: Install() and Uninstall() with:
- Chocolatey (Windows), apt/dnf (Linux), auto-detect
- Direct installer fallback: HTTP download + SHA256 verify + silent install
- Supports .msi, .exe (Windows) and .deb, .rpm (Linux)
- main.go: COMMAND_TYPE_INSTALL_SOFTWARE and COMMAND_TYPE_UNINSTALL_SOFTWARE routed to deployer
Frontend:
- SoftwarePage: Katalog tab (CRUD, OS filter, smart package manager select) + Deploy tab
- api/types.ts: SoftwarePackage, PackageManager, DeployRequest/Response types
- api/client.ts: softwarePackagesApi and deployApi
- App.tsx: Software nav item with Package icon
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 14:06:40 +01:00
|
|
|
import SoftwarePage from './pages/SoftwarePage'
|
2026-03-19 12:42:52 +01:00
|
|
|
import { cn } from './lib/utils'
|
|
|
|
|
|
|
|
|
|
const queryClient = new QueryClient({
|
|
|
|
|
defaultOptions: {
|
|
|
|
|
queries: {
|
|
|
|
|
staleTime: 30_000,
|
|
|
|
|
retry: 2,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
feat: implement Phase 6 — Software Deployment
Backend:
- SoftwarePackage model (Name, Version, OsType, PackageManager, PackageName, InstallerUrl, Checksum, SilentArgs)
- RmmDbContext: SoftwarePackages DbSet + unique index on (Name, Version, OsType)
- SoftwarePackagesController: full CRUD with OsType filter
- DeployController: POST /api/v1/deploy creates InstallSoftware/UninstallSoftware TaskItem
- EF Migration: AddSoftwarePackages (20260319130448)
Go Agent:
- internal/deployer/deployer.go: Install() and Uninstall() with:
- Chocolatey (Windows), apt/dnf (Linux), auto-detect
- Direct installer fallback: HTTP download + SHA256 verify + silent install
- Supports .msi, .exe (Windows) and .deb, .rpm (Linux)
- main.go: COMMAND_TYPE_INSTALL_SOFTWARE and COMMAND_TYPE_UNINSTALL_SOFTWARE routed to deployer
Frontend:
- SoftwarePage: Katalog tab (CRUD, OS filter, smart package manager select) + Deploy tab
- api/types.ts: SoftwarePackage, PackageManager, DeployRequest/Response types
- api/client.ts: softwarePackagesApi and deployApi
- App.tsx: Software nav item with Package icon
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 14:06:40 +01:00
|
|
|
type Page = 'dashboard' | 'agent-detail' | 'tickets' | 'alerts' | 'software'
|
2026-03-19 12:42:52 +01:00
|
|
|
|
|
|
|
|
interface NavItem {
|
|
|
|
|
id: Page
|
|
|
|
|
label: string
|
|
|
|
|
icon: React.ReactNode
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const navItems: NavItem[] = [
|
|
|
|
|
{ id: 'dashboard', label: 'Dashboard', icon: <LayoutDashboard size={18} /> },
|
|
|
|
|
{ id: 'tickets', label: 'Tickets', icon: <Ticket size={18} /> },
|
feat: implement Phase 5 — Alerting & Monitoring
Backend:
- AlertEvaluationService: evaluates metrics against AlertRules after each heartbeat
- Supports cpu_usage_percent and memory_usage_percent metric paths
- Operators: >, >=, <, <=, ==
- 15-minute dedup window to prevent alert spam
- AlertRulesController: full CRUD for alert rules (GET/POST/PUT/DELETE)
- AlertsController: list with acknowledged filter + POST acknowledge endpoint
- IRmmHubClient: added AlertTriggered push method
- Program.cs: AlertEvaluationService registered as Scoped
Frontend:
- AlertsPage: two-tab layout (active alerts + rules)
- Alerts tab: severity badges, acknowledge button, all/unack/ack filter
- Rules tab: condition display, enabled toggle, delete with confirm
- Create rule modal with MetricPath/Operator/Threshold/Severity selects
- api/types.ts: AlertRule, AlertItem, CreateAlertRuleRequest types
- api/client.ts: alertRulesApi and alertsApi
- useAgentSignalR: handles AlertTriggered → invalidates alerts query
- App.tsx: Alerts nav item with Bell icon
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 14:00:19 +01:00
|
|
|
{ id: 'alerts', label: 'Alerts', icon: <Bell size={18} /> },
|
feat: implement Phase 6 — Software Deployment
Backend:
- SoftwarePackage model (Name, Version, OsType, PackageManager, PackageName, InstallerUrl, Checksum, SilentArgs)
- RmmDbContext: SoftwarePackages DbSet + unique index on (Name, Version, OsType)
- SoftwarePackagesController: full CRUD with OsType filter
- DeployController: POST /api/v1/deploy creates InstallSoftware/UninstallSoftware TaskItem
- EF Migration: AddSoftwarePackages (20260319130448)
Go Agent:
- internal/deployer/deployer.go: Install() and Uninstall() with:
- Chocolatey (Windows), apt/dnf (Linux), auto-detect
- Direct installer fallback: HTTP download + SHA256 verify + silent install
- Supports .msi, .exe (Windows) and .deb, .rpm (Linux)
- main.go: COMMAND_TYPE_INSTALL_SOFTWARE and COMMAND_TYPE_UNINSTALL_SOFTWARE routed to deployer
Frontend:
- SoftwarePage: Katalog tab (CRUD, OS filter, smart package manager select) + Deploy tab
- api/types.ts: SoftwarePackage, PackageManager, DeployRequest/Response types
- api/client.ts: softwarePackagesApi and deployApi
- App.tsx: Software nav item with Package icon
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 14:06:40 +01:00
|
|
|
{ id: 'software', label: 'Software', icon: <Package size={18} /> },
|
2026-03-19 12:42:52 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
function AppContent() {
|
|
|
|
|
const [page, setPage] = useState<Page>('dashboard')
|
|
|
|
|
const [selectedAgentId, setSelectedAgentId] = useState<string | null>(null)
|
|
|
|
|
const [sidebarOpen, setSidebarOpen] = useState(true)
|
|
|
|
|
|
|
|
|
|
function handleSelectAgent(agentId: string) {
|
|
|
|
|
setSelectedAgentId(agentId)
|
|
|
|
|
setPage('agent-detail')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleBack() {
|
|
|
|
|
setPage('dashboard')
|
|
|
|
|
setSelectedAgentId(null)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="min-h-screen bg-background text-foreground flex">
|
|
|
|
|
{/* Sidebar */}
|
|
|
|
|
<aside
|
|
|
|
|
className={cn(
|
|
|
|
|
'flex flex-col border-r border-border bg-card transition-all duration-200',
|
|
|
|
|
sidebarOpen ? 'w-56' : 'w-14',
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
{/* Logo */}
|
|
|
|
|
<div className="flex items-center gap-3 px-4 py-4 border-b border-border">
|
|
|
|
|
<div className="w-7 h-7 rounded-md bg-primary flex items-center justify-center text-primary-foreground font-bold text-sm flex-shrink-0">
|
|
|
|
|
N
|
|
|
|
|
</div>
|
|
|
|
|
{sidebarOpen && (
|
|
|
|
|
<span className="font-semibold text-foreground truncate">NexusRMM</span>
|
|
|
|
|
)}
|
|
|
|
|
<button
|
|
|
|
|
onClick={() => setSidebarOpen(!sidebarOpen)}
|
|
|
|
|
className="ml-auto text-muted-foreground hover:text-foreground"
|
|
|
|
|
>
|
|
|
|
|
{sidebarOpen ? <X size={16} /> : <Menu size={16} />}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Nav */}
|
|
|
|
|
<nav className="flex-1 py-3 px-2 flex flex-col gap-1">
|
|
|
|
|
{navItems.map((item) => (
|
|
|
|
|
<button
|
|
|
|
|
key={item.id}
|
|
|
|
|
onClick={() => {
|
|
|
|
|
setPage(item.id)
|
|
|
|
|
setSelectedAgentId(null)
|
|
|
|
|
}}
|
|
|
|
|
className={cn(
|
|
|
|
|
'flex items-center gap-3 px-2 py-2 rounded-md text-sm transition-colors w-full text-left',
|
|
|
|
|
page === item.id || (page === 'agent-detail' && item.id === 'dashboard')
|
|
|
|
|
? 'bg-primary/15 text-primary'
|
|
|
|
|
: 'text-muted-foreground hover:text-foreground hover:bg-accent',
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<span className="flex-shrink-0">{item.icon}</span>
|
|
|
|
|
{sidebarOpen && <span>{item.label}</span>}
|
|
|
|
|
</button>
|
|
|
|
|
))}
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
{/* Version */}
|
|
|
|
|
{sidebarOpen && (
|
|
|
|
|
<div className="px-4 py-3 text-xs text-muted-foreground border-t border-border">
|
|
|
|
|
NexusRMM v0.1.0
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
|
|
{/* Main content */}
|
|
|
|
|
<main className="flex-1 overflow-auto">
|
|
|
|
|
{page === 'dashboard' && (
|
|
|
|
|
<DashboardPage onSelectAgent={handleSelectAgent} />
|
|
|
|
|
)}
|
|
|
|
|
{page === 'agent-detail' && selectedAgentId && (
|
|
|
|
|
<AgentDetailPage agentId={selectedAgentId} onBack={handleBack} />
|
|
|
|
|
)}
|
|
|
|
|
{page === 'tickets' && <TicketsPage />}
|
feat: implement Phase 5 — Alerting & Monitoring
Backend:
- AlertEvaluationService: evaluates metrics against AlertRules after each heartbeat
- Supports cpu_usage_percent and memory_usage_percent metric paths
- Operators: >, >=, <, <=, ==
- 15-minute dedup window to prevent alert spam
- AlertRulesController: full CRUD for alert rules (GET/POST/PUT/DELETE)
- AlertsController: list with acknowledged filter + POST acknowledge endpoint
- IRmmHubClient: added AlertTriggered push method
- Program.cs: AlertEvaluationService registered as Scoped
Frontend:
- AlertsPage: two-tab layout (active alerts + rules)
- Alerts tab: severity badges, acknowledge button, all/unack/ack filter
- Rules tab: condition display, enabled toggle, delete with confirm
- Create rule modal with MetricPath/Operator/Threshold/Severity selects
- api/types.ts: AlertRule, AlertItem, CreateAlertRuleRequest types
- api/client.ts: alertRulesApi and alertsApi
- useAgentSignalR: handles AlertTriggered → invalidates alerts query
- App.tsx: Alerts nav item with Bell icon
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 14:00:19 +01:00
|
|
|
{page === 'alerts' && <AlertsPage />}
|
feat: implement Phase 6 — Software Deployment
Backend:
- SoftwarePackage model (Name, Version, OsType, PackageManager, PackageName, InstallerUrl, Checksum, SilentArgs)
- RmmDbContext: SoftwarePackages DbSet + unique index on (Name, Version, OsType)
- SoftwarePackagesController: full CRUD with OsType filter
- DeployController: POST /api/v1/deploy creates InstallSoftware/UninstallSoftware TaskItem
- EF Migration: AddSoftwarePackages (20260319130448)
Go Agent:
- internal/deployer/deployer.go: Install() and Uninstall() with:
- Chocolatey (Windows), apt/dnf (Linux), auto-detect
- Direct installer fallback: HTTP download + SHA256 verify + silent install
- Supports .msi, .exe (Windows) and .deb, .rpm (Linux)
- main.go: COMMAND_TYPE_INSTALL_SOFTWARE and COMMAND_TYPE_UNINSTALL_SOFTWARE routed to deployer
Frontend:
- SoftwarePage: Katalog tab (CRUD, OS filter, smart package manager select) + Deploy tab
- api/types.ts: SoftwarePackage, PackageManager, DeployRequest/Response types
- api/client.ts: softwarePackagesApi and deployApi
- App.tsx: Software nav item with Package icon
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 14:06:40 +01:00
|
|
|
{page === 'software' && <SoftwarePage />}
|
2026-03-19 12:42:52 +01:00
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
|
return (
|
|
|
|
|
<QueryClientProvider client={queryClient}>
|
|
|
|
|
<AppContent />
|
|
|
|
|
</QueryClientProvider>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default App
|