f7cb0f3241
Add a discoverable per-container "Update now" action, shown only when the
image status is `outdated`, plus a bulk "Update selected" action in the
containers list.
Both manual paths share ONE apply primitive (applyContainerUpdate /
useUpdateContainerImage) that also backs the future M4 auto-update job:
- standalone container -> recreate-with-pull (existing recreate endpoint)
- stack-managed -> stack redeploy-with-pull (existing git/file stack
update mutations), so the container stays in its
stack and is never recreated out-of-band
- externally-managed -> refused; the details button is disabled with an
compose explanatory tooltip and the bulk action skips it
Decision logic lives in the pure, unit-tested resolveContainerUpdatePath /
groupContainersForUpdate helpers. The bulk action filters to outdated
containers and redeploys each owning stack exactly once even when several of
its containers are selected, reporting per-item success/failure.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
132 lines
3.8 KiB
TypeScript
132 lines
3.8 KiB
TypeScript
import { Download } from 'lucide-react';
|
|
import { useRouter } from '@uirouter/react';
|
|
|
|
import { EnvironmentId } from '@/react/portainer/environments/types';
|
|
import { confirmContainerRecreation } from '@/react/docker/containers/ItemView/ConfirmRecreationModal';
|
|
import { confirmStackUpdate } from '@/react/common/stacks/common/confirm-stack-update';
|
|
import { useStacks } from '@/react/common/stacks/queries/useStacks';
|
|
import { notifySuccess } from '@/portainer/services/notifications';
|
|
import { useContainerImageStatus } from '@/react/docker/containers/queries/useContainerImageStatus';
|
|
import {
|
|
resolveContainerUpdatePath,
|
|
useUpdateContainerImage,
|
|
ContainerUpdateContext,
|
|
} from '@/react/docker/containers/update';
|
|
|
|
import { LoadingButton } from '@@/buttons';
|
|
import { TooltipWithChildren } from '@@/Tip/TooltipWithChildren';
|
|
|
|
import { ContainerId } from '../../../types';
|
|
|
|
interface UpdateNowButtonProps {
|
|
environmentId: EnvironmentId;
|
|
containerId: ContainerId;
|
|
nodeName?: string;
|
|
containerImage: string;
|
|
containerName: string;
|
|
labels?: Record<string, string>;
|
|
isPortainer: boolean;
|
|
}
|
|
|
|
/**
|
|
* "Update now" surfaces a discoverable per-container apply action ONLY when the
|
|
* image is `outdated`. It routes through the shared update primitive:
|
|
* standalone -> recreate-with-pull, stack-managed -> stack redeploy-with-pull
|
|
* (container stays in its stack). Externally-managed compose containers are
|
|
* shown disabled with an explanatory tooltip, never recreated out-of-band.
|
|
*/
|
|
export function UpdateNowButton({
|
|
environmentId,
|
|
containerId,
|
|
nodeName,
|
|
containerImage,
|
|
containerName,
|
|
labels,
|
|
isPortainer,
|
|
}: UpdateNowButtonProps) {
|
|
const router = useRouter();
|
|
const statusQuery = useContainerImageStatus(
|
|
environmentId,
|
|
containerId,
|
|
nodeName
|
|
);
|
|
const stacksQuery = useStacks();
|
|
const updateMutation = useUpdateContainerImage();
|
|
|
|
// Only meaningful when a newer image is actually available.
|
|
if (statusQuery.data?.Status !== 'outdated') {
|
|
return null;
|
|
}
|
|
|
|
const stacks = stacksQuery.data ?? [];
|
|
const path = resolveContainerUpdatePath({ labels, environmentId }, stacks);
|
|
const isExternal = path.kind === 'external';
|
|
|
|
const button = (
|
|
<LoadingButton
|
|
color="primary"
|
|
size="small"
|
|
onClick={handleClick}
|
|
disabled={isPortainer || isExternal || stacksQuery.isLoading}
|
|
isLoading={updateMutation.isLoading}
|
|
loadingText="Updating..."
|
|
data-cy="update-now-button"
|
|
icon={Download}
|
|
>
|
|
Update now
|
|
</LoadingButton>
|
|
);
|
|
|
|
if (isExternal) {
|
|
return (
|
|
<TooltipWithChildren message="This container belongs to a compose project that is managed outside Portainer, so it can't be updated from here.">
|
|
{button}
|
|
</TooltipWithChildren>
|
|
);
|
|
}
|
|
|
|
return button;
|
|
|
|
async function handleClick() {
|
|
const context: ContainerUpdateContext = {
|
|
id: containerId,
|
|
name: containerName,
|
|
image: containerImage,
|
|
labels,
|
|
environmentId,
|
|
nodeName,
|
|
};
|
|
|
|
let pullImage: boolean;
|
|
|
|
if (path.kind === 'stack') {
|
|
const result = await confirmStackUpdate(
|
|
'This will redeploy the stack pulling the latest images and may cause a service interruption. Do you wish to continue?',
|
|
true
|
|
);
|
|
if (!result) {
|
|
return;
|
|
}
|
|
pullImage = result.repullImageAndRedeploy;
|
|
} else {
|
|
const cannotPullImage =
|
|
!containerImage || containerImage.toLowerCase().startsWith('sha256');
|
|
const result = await confirmContainerRecreation(cannotPullImage);
|
|
if (!result) {
|
|
return;
|
|
}
|
|
pullImage = result.pullLatest;
|
|
}
|
|
|
|
updateMutation.mutate(
|
|
{ context, stacks, pullImage },
|
|
{
|
|
onSuccess: () => {
|
|
notifySuccess('Success', 'Container image update applied');
|
|
router.stateService.go('docker.containers', {}, { reload: true });
|
|
},
|
|
}
|
|
);
|
|
}
|
|
}
|