-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a Wrapper StandardPageWithSelection
Signed-off-by: yzamir <[email protected]>
- Loading branch information
Showing
11 changed files
with
215 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
...-plugin/src/modules/Providers/views/details/tabs/Hosts/components/SelectNetworkButton.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import React, { FC } from 'react'; | ||
import { useModal } from 'src/modules/Providers/modals'; | ||
import { useForkliftTranslation } from 'src/utils/i18n'; | ||
|
||
import { V1beta1Provider } from '@kubev2v/types'; | ||
import { Button, ToolbarItem } from '@patternfly/react-core'; | ||
|
||
import { VSphereNetworkModal } from '../modals'; | ||
import { InventoryHostPair } from '../utils'; | ||
|
||
/** | ||
* `SelectNetworkButton` is a functional component that renders a button for selecting a migration network. | ||
* When clicked, it opens a modal dialog for choosing the network. | ||
* | ||
* @component | ||
* @example | ||
* // Usage within a parent component | ||
* <SelectNetworkButton | ||
* selectedIds={['host1', 'host2']} | ||
* provider={myProvider} | ||
* hostsData={myInventoryHostPairs} | ||
* /> | ||
* | ||
* @param {Object} props - The properties passed to the component. | ||
* @param {string[]} props.selectedIds - An array of host IDs that are selected for migration. | ||
* @param {V1beta1Provider} props.provider - The provider object containing details about the provider. | ||
* @param {InventoryHostPair[]} props.hostsData - An array of inventory host pairs for displaying in the modal. | ||
*/ | ||
export const SelectNetworkButton: FC<{ | ||
selectedIds: string[]; | ||
provider: V1beta1Provider; | ||
hostsData: InventoryHostPair[]; | ||
}> = ({ selectedIds, provider, hostsData }) => { | ||
const { t } = useForkliftTranslation(); | ||
const { showModal } = useModal(); | ||
|
||
return ( | ||
<ToolbarItem> | ||
<Button | ||
variant="secondary" | ||
onClick={() => | ||
showModal( | ||
<VSphereNetworkModal provider={provider} data={hostsData} selected={selectedIds} />, | ||
) | ||
} | ||
isDisabled={!selectedIds?.length} | ||
> | ||
{t('Select migration network')} | ||
</Button> | ||
</ToolbarItem> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.