Portal/rsconcept/frontend/src/features/help/components/BadgeHelp.tsx

53 lines
1.7 KiB
TypeScript
Raw Normal View History

2024-12-05 15:45:53 +03:00
import React, { Suspense } from 'react';
import { PlacesType, Tooltip } from '@/components/Container';
import { TextURL } from '@/components/Control';
2025-01-28 23:23:03 +03:00
import { IconHelp } from '@/components/Icons';
import { Loader } from '@/components/Loader';
2025-01-28 23:23:03 +03:00
import { CProps } from '@/components/props';
import { usePreferencesStore } from '@/stores/preferences';
2024-06-07 20:17:03 +03:00
import { HelpTopic } from '../models/helpTopic';
const TopicPage = React.lazy(() => import('@/features/help/pages/ManualsPage/TopicPage'));
2024-06-07 20:17:03 +03:00
interface BadgeHelpProps extends CProps.Styling {
/** Topic to display in a tooltip. */
2024-06-07 20:17:03 +03:00
topic: HelpTopic;
/** Offset from the cursor to the tooltip. */
2024-06-07 20:17:03 +03:00
offset?: number;
/** Classname for padding. */
2024-06-07 20:17:03 +03:00
padding?: string;
/** Place of the tooltip in relation to the cursor. */
2024-06-07 20:17:03 +03:00
place?: PlacesType;
}
/**
* Display help icon with a manual page tooltip.
*/
2025-02-11 20:56:11 +03:00
export function BadgeHelp({ topic, padding = 'p-1', ...restProps }: BadgeHelpProps) {
const showHelp = usePreferencesStore(state => state.showHelp);
2024-06-07 20:17:03 +03:00
if (!showHelp) {
return null;
}
return (
2024-10-29 12:05:23 +03:00
<div tabIndex={-1} id={`help-${topic}`} className={padding}>
2024-06-07 20:17:03 +03:00
<IconHelp size='1.25rem' className='icon-primary' />
<Tooltip clickable anchorSelect={`#help-${topic}`} layer='z-modalTooltip' {...restProps}>
2024-12-05 15:45:53 +03:00
<Suspense fallback={<Loader />}>
<div className='relative' onClick={event => event.stopPropagation()}>
<div className='absolute right-0 text-sm top-[0.4rem] clr-input'>
<TextURL text='Справка...' href={`/manuals?topic=${topic}`} />
</div>
2024-06-07 20:17:03 +03:00
</div>
2024-12-05 15:45:53 +03:00
<TopicPage topic={topic} />
</Suspense>
2024-06-07 20:17:03 +03:00
</Tooltip>
</div>
);
}