38c42cb47b
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
import { useCurrentStateAndParams } from '@uirouter/react';
|
|
|
|
import { useContainer } from '@/react/docker/containers/queries/useContainer';
|
|
import { ContainerDetailsViewModel } from '@/docker/models/containerDetails';
|
|
|
|
import { InformationPanel } from '@@/InformationPanel';
|
|
import { TextTip } from '@@/Tip/TextTip';
|
|
import { Link } from '@@/Link';
|
|
|
|
export function LogView() {
|
|
const {
|
|
params: { endpointId: environmentId, id: containerId, nodeName },
|
|
} = useCurrentStateAndParams();
|
|
|
|
const containerQuery = useContainer(
|
|
{ environmentId, containerId, nodeName },
|
|
{
|
|
select: (c) => new ContainerDetailsViewModel(c),
|
|
}
|
|
);
|
|
if (!containerQuery.data || containerQuery.isLoading) {
|
|
return null;
|
|
}
|
|
|
|
const logsEnabled =
|
|
containerQuery.data.HostConfig?.LogConfig?.Type && // if a portion of the object path doesn't exist, logging is likely disabled
|
|
containerQuery.data.HostConfig.LogConfig.Type !== 'none'; // if type === none logging is disabled
|
|
|
|
return <>{!logsEnabled && <LogsDisabledInfoPanel />}</>;
|
|
}
|
|
|
|
function LogsDisabledInfoPanel() {
|
|
const {
|
|
params: { id: containerId, nodeName },
|
|
} = useCurrentStateAndParams();
|
|
|
|
return (
|
|
<div className="row">
|
|
<div className="col-sm-12">
|
|
<InformationPanel>
|
|
<TextTip color="blue">
|
|
Logging is disabled for this container. If you want to re-enable
|
|
logging, please{' '}
|
|
<Link
|
|
to="docker.containers.new"
|
|
params={{ from: containerId, nodeName }}
|
|
data-cy="redeploy-container-link"
|
|
>
|
|
redeploy your container
|
|
</Link>{' '}
|
|
and select a logging driver in the "Command & logging"
|
|
panel.
|
|
</TextTip>
|
|
</InformationPanel>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|