mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
a54b633726
[web] Parser backed file outline GitOrigin-RevId: 0825f4887ba4dae24a14dd1880d07b791d0b4cd9
62 lines
1.6 KiB
JavaScript
62 lines
1.6 KiB
JavaScript
import App from '../../../base'
|
|
import OutlinePane from '../components/outline-pane'
|
|
import { react2angular } from 'react2angular'
|
|
import { rootContext } from '../../../shared/context/root-context'
|
|
|
|
App.controller('OutlineController', function ($scope, ide, eventTracking) {
|
|
$scope.isTexFile = false
|
|
$scope.outline = []
|
|
$scope.eventTracking = eventTracking
|
|
|
|
function shouldShowOutline() {
|
|
if ($scope.editor.showRichText) {
|
|
return true
|
|
}
|
|
return !$scope.editor.newSourceEditor
|
|
}
|
|
|
|
$scope.show = shouldShowOutline()
|
|
|
|
$scope.$watch('editor.newSourceEditor', function () {
|
|
$scope.show = shouldShowOutline()
|
|
})
|
|
|
|
$scope.$watch('editor.showRichText', function () {
|
|
$scope.show = shouldShowOutline()
|
|
})
|
|
|
|
$scope.$on('outline-manager:outline-changed', onOutlineChange)
|
|
|
|
function onOutlineChange(e, outlineInfo) {
|
|
$scope.$applyAsync(() => {
|
|
$scope.isTexFile = outlineInfo.isTexFile
|
|
$scope.outline = outlineInfo.outline
|
|
$scope.highlightedLine = outlineInfo.highlightedLine
|
|
})
|
|
}
|
|
|
|
$scope.jumpToLine = (lineNo, syncToPdf) => {
|
|
ide.outlineManager.jumpToLine(lineNo, syncToPdf)
|
|
eventTracking.sendMB('outline-jump-to-line')
|
|
}
|
|
|
|
$scope.onToggle = isOpen => {
|
|
$scope.$applyAsync(() => {
|
|
$scope.$emit('outline-toggled', isOpen)
|
|
})
|
|
}
|
|
})
|
|
|
|
// Wrap React component as Angular component. Only needed for "top-level" component
|
|
App.component(
|
|
'outlinePane',
|
|
react2angular(rootContext.use(OutlinePane), [
|
|
'outline',
|
|
'jumpToLine',
|
|
'highlightedLine',
|
|
'eventTracking',
|
|
'onToggle',
|
|
'isTexFile',
|
|
'show',
|
|
])
|
|
)
|