mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:01:16 +08:00
Add storyFileName
This commit is contained in:
parent
06bdc0a6e4
commit
bc6e68c6df
@ -1,7 +1,7 @@
|
||||
import global from 'global';
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import { useChannel } from '@storybook/api';
|
||||
import { useChannel, useParameter } from '@storybook/api';
|
||||
import { AddonPanel, Icons } from '@storybook/components';
|
||||
import { styled } from '@storybook/theming';
|
||||
|
||||
@ -193,6 +193,8 @@ export const Panel: React.FC<PanelProps> = (props) => {
|
||||
},
|
||||
});
|
||||
|
||||
const [fileName] = useParameter('fileName', '').split('/').slice(-1);
|
||||
|
||||
const { log, interactions, callsById, isDebugging } = state;
|
||||
const hasException = interactions.some((call) => call.state === CallState.ERROR);
|
||||
const hasPrevious = interactions.some((call) => call.state !== CallState.PENDING);
|
||||
@ -244,6 +246,7 @@ export const Panel: React.FC<PanelProps> = (props) => {
|
||||
{tabButton && showStatus && ReactDOM.createPortal(statusIcon, tabButton)}
|
||||
<Subnav
|
||||
status={hasException ? CallState.ERROR : CallState.DONE}
|
||||
storyFileName={fileName}
|
||||
onPrevious={prev}
|
||||
onNext={next}
|
||||
onReplay={stop}
|
||||
|
@ -67,6 +67,7 @@ const StyledLocation = styled(P)(({ theme }) => ({
|
||||
justifyContent: 'flex-end',
|
||||
textAlign: 'right',
|
||||
paddingRight: 15,
|
||||
fontSize: 13,
|
||||
}));
|
||||
|
||||
const Group = styled.div({
|
||||
|
Loading…
x
Reference in New Issue
Block a user