import { useEffect } from 'react'; import { useAgentDetails } from '@/portainer/environments/queries/useAgentDetails'; import { Code } from '@@/Code'; import { CopyButton } from '@@/buttons/CopyButton'; import { NavTabs } from '@@/NavTabs'; import { ScriptFormValues, Platform } from './types'; import { CommandTab } from './scripts'; interface Props { values: ScriptFormValues; edgeKey: string; edgeId?: string; commands: CommandTab[]; platform?: Platform; onPlatformChange?(platform: Platform): void; } export function ScriptTabs({ values, edgeKey, edgeId, commands, platform, onPlatformChange = () => {}, }: Props) { const agentDetails = useAgentDetails(); useEffect(() => { if (commands.length > 0 && commands.every((p) => p.id !== platform)) { onPlatformChange(commands[0].id); } }, [platform, onPlatformChange, commands]); if (!agentDetails) { return null; } const { agentSecret, agentVersion } = agentDetails; const options = commands.map((c) => { const cmd = c.command(agentVersion, edgeKey, values, edgeId, agentSecret); return { id: c.id, label: c.label, children: ( <> {cmd} Copy ), }; }); return (
onPlatformChange(id)} />
); }