mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import { useQuery } from 'react-query';
|
|
import _ from 'lodash';
|
|
|
|
import { useUIState } from '@/portainer/hooks/UIStateProvider';
|
|
|
|
import { InformationPanel } from '@@/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 && <style>{motd.Style}</style>}
|
|
<InformationPanel
|
|
onDismiss={() => onDismiss(motd.Hash)}
|
|
title={motd.Title}
|
|
wrapperStyle={camelCaseKeys(motd.ContentLayout)}
|
|
bodyClassName="motd-body"
|
|
>
|
|
<span className="text-muted">
|
|
{/* eslint-disable-next-line react/no-danger */}
|
|
<p dangerouslySetInnerHTML={{ __html: motd.Message }} />
|
|
</span>
|
|
</InformationPanel>
|
|
</>
|
|
);
|
|
|
|
function onDismiss(hash: string) {
|
|
setUIState({
|
|
...uiState,
|
|
dismissedInfoHash: hash,
|
|
});
|
|
}
|
|
}
|
|
|
|
function useMotd() {
|
|
const { data } = useQuery('motd', () => getMotd());
|
|
return data;
|
|
}
|
|
|
|
function camelCaseKeys(obj: Record<string, string> = {}) {
|
|
return Object.fromEntries(
|
|
Object.entries(obj).map(([key, value]) => {
|
|
const camelCased = _.camelCase(key);
|
|
return [camelCased, value];
|
|
})
|
|
);
|
|
}
|