Consistent story data

This commit is contained in:
Gert Hengeveld 2021-11-24 21:48:12 +01:00
parent a061bcf758
commit 0803e96073
2 changed files with 44 additions and 10 deletions

View File

@ -60,6 +60,14 @@ export const Paused: Story = {
args: {
isPlaying: true,
interactions: [getCall(CallStates.WAITING)],
controlStates: {
debugger: true,
start: false,
back: false,
goto: true,
next: true,
end: true,
},
},
};

View File

@ -18,8 +18,8 @@ export default {
start: true,
back: true,
goto: true,
next: true,
end: true,
next: false,
end: false,
},
storyFileName: 'Subnav.stories.tsx',
hasNext: true,
@ -45,18 +45,44 @@ export const Runs = {
},
};
export const AtTheBeginning = {
name: 'at the beginning',
export const AtStart = {
args: {
status: CallStates.DONE,
hasPrevious: false,
status: CallStates.WAITING,
controlStates: {
debugger: true,
start: false,
back: false,
goto: true,
next: true,
end: true,
},
},
};
export const AtTheEnd = {
name: 'at the end',
export const Midway = {
args: {
status: CallStates.DONE,
hasNext: false,
status: CallStates.WAITING,
controlStates: {
debugger: true,
start: true,
back: true,
goto: true,
next: true,
end: true,
},
},
};
export const Locked = {
args: {
status: CallStates.ACTIVE,
controlStates: {
debugger: true,
start: false,
back: false,
goto: false,
next: false,
end: false,
},
},
};