import { useQuery } from 'react-query';
import _ from 'lodash-es';
import { useUIState } from '@/portainer/hooks/UIStateProvider';
import { InformationPanel } from '../components/InformationPanel/InformationPanel';
import { getMotd } from './home.service';
export function MotdPanel() {
const motd = useMotd();
const [uiState, setUIState] = useUIState();
if (!motd || motd.Message === '' || motd.Hash === uiState.dismissedInfoHash) {
return null;
}
return (
<>
{!!motd.Style && }
onDismiss(motd.Hash)}
title={motd.Title}
wrapperStyle={camelCaseKeys(motd.ContentLayout)}
bodyClassName="motd-body"
>
{/* eslint-disable-next-line react/no-danger */}
>
);
function onDismiss(hash: string) {
setUIState({
...uiState,
dismissedInfoHash: hash,
});
}
}
function useMotd() {
const { data } = useQuery('motd', () => getMotd());
return data;
}
function camelCaseKeys(obj: Record = {}) {
return Object.fromEntries(
Object.entries(obj).map(([key, value]) => {
const camelCased = _.camelCase(key);
return [camelCased, value];
})
);
}