| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /* 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
- )
- }
- })
- })
|