mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
d91ee50762
GitOrigin-RevId: 109a4357fc3b083ffbd3af5b8c98acf0f655f297
56 lines
1.1 KiB
JavaScript
56 lines
1.1 KiB
JavaScript
import OutlinePane from '../js/features/outline/components/outline-pane'
|
|
import { ScopeDecorator } from './decorators/scope'
|
|
|
|
export const Basic = args => <OutlinePane {...args} />
|
|
Basic.args = {
|
|
outline: [{ line: 1, title: 'Hello', level: 1 }],
|
|
}
|
|
|
|
export const Nested = args => <OutlinePane {...args} />
|
|
Nested.args = {
|
|
outline: [
|
|
{
|
|
line: 1,
|
|
title: 'Section',
|
|
level: 1,
|
|
children: [
|
|
{
|
|
line: 2,
|
|
title: 'Subsection',
|
|
level: 2,
|
|
children: [
|
|
{
|
|
line: 3,
|
|
title: 'Subsubsection',
|
|
level: 3,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
export const NoSections = args => <OutlinePane {...args} />
|
|
NoSections.args = {}
|
|
|
|
export const NonTexFile = args => <OutlinePane {...args} />
|
|
NonTexFile.args = {
|
|
isTexFile: false,
|
|
}
|
|
|
|
export default {
|
|
title: 'Editor / Outline',
|
|
component: OutlinePane,
|
|
argTypes: {
|
|
jumpToLine: { action: 'jumpToLine' },
|
|
},
|
|
args: {
|
|
eventTracking: { sendMB: () => {} },
|
|
isTexFile: true,
|
|
outline: [],
|
|
jumpToLine: () => {},
|
|
onToggle: () => {},
|
|
},
|
|
decorators: [ScopeDecorator],
|
|
}
|