portainer/app/react/edge/edge-groups/components/EdgeGroupForm/StaticGroupFieldset.tsx

41 lines
1.3 KiB
TypeScript

import { useFormikContext } from 'formik';
import { AssociatedEdgeEnvironmentsSelector } from '@/react/edge/components/AssociatedEdgeEnvironmentsSelector';
import { FormSection } from '@@/form-components/FormSection';
import { confirmDestructive } from '@@/modals/confirm';
import { buildConfirmButton } from '@@/modals/utils';
import { FormValues } from './types';
export function StaticGroupFieldset({ isEdit }: { isEdit?: boolean }) {
const { values, setFieldValue, errors } = useFormikContext<FormValues>();
return (
<FormSection title="Associated environments">
<div className="form-group">
<AssociatedEdgeEnvironmentsSelector
value={values.environmentIds}
error={errors.environmentIds}
onChange={async (environmentIds, meta) => {
if (meta.type === 'remove' && isEdit) {
const confirmed = await confirmDestructive({
title: 'Confirm action',
message:
'Removing the environment from this group will remove its corresponding edge stacks',
confirmButton: buildConfirmButton('Confirm'),
});
if (!confirmed) {
return;
}
}
setFieldValue('environmentIds', environmentIds);
}}
/>
</div>
</FormSection>
);
}