mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
659242b457
Decaffeinate frontend GitOrigin-RevId: 1c8c53dedecfe55f9936a13408df17b852f996de
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
/* eslint-disable
|
|
max-len,
|
|
no-undef,
|
|
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
|
|
*/
|
|
define(['ide/binary-files/controllers/BinaryFileController'], function() {
|
|
let BinaryFilesManager
|
|
return (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)
|
|
}
|
|
})
|
|
}
|
|
|
|
openFile(file) {
|
|
this.ide.fileTreeManager.selectEntity(file)
|
|
this.$scope.ui.view = 'file'
|
|
this.$scope.openFile = null
|
|
this.$scope.$apply()
|
|
return window.setTimeout(
|
|
() => {
|
|
this.$scope.openFile = file
|
|
return this.$scope.$apply()
|
|
},
|
|
0,
|
|
this
|
|
)
|
|
}
|
|
})
|
|
})
|