import { useQuery } from '@tanstack/react-query';
import _ from 'lodash';
import sanitize from 'sanitize-html';
import { useUIState } from '@/react/hooks/useUIState';
import { InformationPanel } from '@@/InformationPanel';
import { getMotd } from './home.service';
export function MotdPanel() {
const motd = useMotd();
const uiStateStore = useUIState();
if (
!motd ||
motd.Message === '' ||
motd.Hash === uiStateStore.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) {
uiStateStore.dismissMotd(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];
})
);
}