mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
3a81428ef3
Avoid switching away from v1 history view when a file is selected GitOrigin-RevId: 7b7d75f5e4c63bf899fc7f1f5c7c17119863177b
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
/* eslint-disable
|
|
max-len,
|
|
no-unused-vars,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
let BinaryFilesManager
|
|
|
|
export default BinaryFilesManager = class BinaryFilesManager {
|
|
constructor(ide, $scope) {
|
|
this.ide = ide
|
|
this.$scope = $scope
|
|
this.$scope.$on('entity:selected', (event, entity) => {
|
|
if (this.$scope.ui.view !== 'track-changes' && entity.type === 'file') {
|
|
return this.openFile(entity)
|
|
} else if (entity.type === 'doc') {
|
|
return this.closeFile()
|
|
}
|
|
})
|
|
}
|
|
|
|
openFile(file) {
|
|
this.ide.fileTreeManager.selectEntity(file)
|
|
if (this.$scope.ui.view !== 'history') {
|
|
this.$scope.ui.view = 'file'
|
|
}
|
|
this.$scope.openFile = null
|
|
this.$scope.$apply()
|
|
return window.setTimeout(
|
|
() => {
|
|
this.$scope.openFile = file
|
|
|
|
this.$scope.$apply()
|
|
|
|
this.$scope.$broadcast('file-view:file-opened')
|
|
},
|
|
0,
|
|
this
|
|
)
|
|
}
|
|
|
|
closeFile() {
|
|
return window.setTimeout(
|
|
() => {
|
|
this.$scope.openFile = null
|
|
if (this.$scope.ui.view !== 'history') {
|
|
this.$scope.ui.view = 'editor'
|
|
}
|
|
this.$scope.$apply()
|
|
},
|
|
0,
|
|
this
|
|
)
|
|
}
|
|
}
|