mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1fcf94c3b9
React shared context GitOrigin-RevId: ebc6fa90dd8c65ddf803fd457c99a30f0e8e3c9c
66 lines
1.3 KiB
JavaScript
66 lines
1.3 KiB
JavaScript
import React from 'react'
|
|
|
|
import OutlinePane from '../js/features/outline/components/outline-pane'
|
|
import { ContextRoot } from '../js/shared/context/root-context'
|
|
|
|
window.project_id = '1234'
|
|
|
|
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: 'Outline',
|
|
component: OutlinePane,
|
|
argTypes: {
|
|
jumpToLine: { action: 'jumpToLine' }
|
|
},
|
|
args: {
|
|
eventTracking: { sendMB: () => {} },
|
|
isTexFile: true,
|
|
outline: [],
|
|
jumpToLine: () => {},
|
|
onToggle: () => {}
|
|
},
|
|
decorators: [
|
|
Story => (
|
|
<ContextRoot>
|
|
<Story />
|
|
</ContextRoot>
|
|
)
|
|
]
|
|
}
|