Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Core: Disable SidebarContextMenu in static builds #29743

Merged
merged 7 commits into from
Dec 2, 2024
13 changes: 11 additions & 2 deletions code/core/src/manager/components/sidebar/ContextMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ import type { API } from '@storybook/core/manager-api';
import type { Link } from '../../../components/components/tooltip/TooltipLinkList';
import { StatusButton } from './StatusButton';
import type { ExcludesNull } from './Tree';
import { ContextMenu } from './Tree';

const empty = {
onMouseEnter: () => {},
node: null,
};

export const useContextMenu = (context: API_HashEntry, links: Link[], api: API) => {
const [hoverCount, setHoverCount] = useState(0);
Expand All @@ -34,7 +38,7 @@ export const useContextMenu = (context: API_HashEntry, links: Link[], api: API)
}, []);

/**
* Calculate the providerLinks whenever the user mouses over the container. We use an incrementer,
* Calculate the providerLinks whenever the user mouses over the container. We use an incrementor,
* instead of a simple boolean to ensure that the links are recalculated
*/
const providerLinks = useMemo(() => {
Expand All @@ -51,6 +55,11 @@ export const useContextMenu = (context: API_HashEntry, links: Link[], api: API)
const isRendered = providerLinks.length > 0 || links.length > 0;

return useMemo(() => {
// Never show the SidebarContextMenu in production
if (globalThis.CONFIG_TYPE !== 'DEVELOPMENT') {
return empty;
}
Comment on lines +59 to +61
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: Consider using process.env.NODE_ENV instead of globalThis.CONFIG_TYPE for more reliable environment detection


return {
onMouseEnter: handlers.onMouseEnter,
node: isRendered ? (
Expand Down
Loading