mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 14:59:41 +02:00
refactor(containers): migrate create view to react [EE-2307] (#9175)
This commit is contained in:
parent
bc0050a7b4
commit
d970f0e2bc
71 changed files with 2612 additions and 1399 deletions
48
app/react/docker/agent/NodeSelector.tsx
Normal file
48
app/react/docker/agent/NodeSelector.tsx
Normal file
|
@ -0,0 +1,48 @@
|
|||
import { useEffect } from 'react';
|
||||
|
||||
import { useEnvironmentId } from '@/react/hooks/useEnvironmentId';
|
||||
|
||||
import { Option, PortainerSelect } from '@@/form-components/PortainerSelect';
|
||||
import { FormControl } from '@@/form-components/FormControl';
|
||||
|
||||
import { useApiVersion } from './queries/useApiVersion';
|
||||
import { useAgentNodes } from './queries/useAgentNodes';
|
||||
|
||||
export function NodeSelector({
|
||||
value,
|
||||
onChange,
|
||||
}: {
|
||||
value: string;
|
||||
onChange: (value: string) => void;
|
||||
}) {
|
||||
const environmentId = useEnvironmentId();
|
||||
|
||||
const apiVersionQuery = useApiVersion(environmentId);
|
||||
|
||||
const nodesQuery = useAgentNodes<Array<Option<string>>>(
|
||||
environmentId,
|
||||
apiVersionQuery.data || 1,
|
||||
{
|
||||
select: (data) =>
|
||||
data.map((node) => ({ label: node.NodeName, value: node.NodeName })),
|
||||
enabled: apiVersionQuery.data !== undefined,
|
||||
}
|
||||
);
|
||||
|
||||
useEffect(() => {
|
||||
if (nodesQuery.data && !value && nodesQuery.data.length > 0) {
|
||||
onChange(nodesQuery.data[0].value);
|
||||
}
|
||||
}, [nodesQuery.data, onChange, value]);
|
||||
|
||||
return (
|
||||
<FormControl label="Node" inputId="node-selector">
|
||||
<PortainerSelect
|
||||
inputId="node-selector"
|
||||
value={value}
|
||||
onChange={onChange}
|
||||
options={nodesQuery.data || []}
|
||||
/>
|
||||
</FormControl>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue