BinaryFileController.coffee 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. define [
  2. "base"
  3. "moment"
  4. ], (App, moment) ->
  5. App.controller "BinaryFileController", ["$scope", "$rootScope", "$http", "$timeout", "$element", "ide", "waitFor", ($scope, $rootScope, $http, $timeout, $element, ide, waitFor) ->
  6. TWO_MEGABYTES = 2 * 1024 * 1024
  7. textExtensions = ['bib', 'tex', 'txt', 'cls', 'sty']
  8. imageExtentions = ['png', 'jpg', 'jpeg', 'gif']
  9. previewableExtensions = ['eps', 'pdf']
  10. extension = (file) ->
  11. return file.name.split(".").pop()?.toLowerCase()
  12. $scope.isTextFile = () =>
  13. textExtensions.indexOf(extension($scope.openFile)) > -1
  14. $scope.isImageFile = () =>
  15. imageExtentions.indexOf(extension($scope.openFile)) > -1
  16. $scope.isPreviewableFile = () =>
  17. previewableExtensions.indexOf(extension($scope.openFile)) > -1
  18. $scope.isUnpreviewableFile = () ->
  19. !$scope.isTextFile() and
  20. !$scope.isImageFile() and
  21. !$scope.isPreviewableFile()
  22. $scope.textPreview =
  23. loading: false
  24. shouldShowDots: false
  25. error: false
  26. data: null
  27. $scope.refreshing = false
  28. $scope.refreshError = null
  29. MAX_URL_LENGTH = 60
  30. FRONT_OF_URL_LENGTH = 35
  31. FILLER = '...'
  32. TAIL_OF_URL_LENGTH = MAX_URL_LENGTH - FRONT_OF_URL_LENGTH - FILLER.length
  33. $scope.displayUrl = (url) ->
  34. if !url?
  35. return
  36. if url.length > MAX_URL_LENGTH
  37. front = url.slice(0, FRONT_OF_URL_LENGTH)
  38. tail = url.slice(url.length - TAIL_OF_URL_LENGTH)
  39. return front + FILLER + tail
  40. else
  41. return url
  42. $scope.refreshFile = (file) ->
  43. $scope.refreshing = true
  44. $scope.refreshError = null
  45. ide.fileTreeManager.refreshLinkedFile(file)
  46. .then (response) ->
  47. { data } = response
  48. { new_file_id } = data
  49. $timeout(
  50. () ->
  51. waitFor(
  52. () ->
  53. ide.fileTreeManager.findEntityById(new_file_id)
  54. 5000
  55. )
  56. .then (newFile) ->
  57. ide.binaryFilesManager.openFile(newFile)
  58. .catch (err) ->
  59. console.warn(err)
  60. , 0
  61. )
  62. $scope.refreshError = null
  63. .catch (response) ->
  64. $scope.refreshError = response.data
  65. .finally () ->
  66. $scope.refreshing = false
  67. # Callback fired when the `img` tag fails to load,
  68. # `failedLoad` used to show the "No Preview" message
  69. $scope.failedLoad = false
  70. window.sl_binaryFilePreviewError = () =>
  71. $scope.failedLoad = true
  72. $scope.$apply()
  73. # Callback fired when the `img` tag is done loading,
  74. # `imgLoaded` is used to show the spinner gif while loading
  75. $scope.imgLoaded = false
  76. window.sl_binaryFilePreviewLoaded = () =>
  77. $scope.imgLoaded = true
  78. $scope.$apply()
  79. do loadTextFileFilePreview = () ->
  80. return unless $scope.isTextFile()
  81. url = "/project/#{project_id}/file/#{$scope.openFile.id}?range=0-#{TWO_MEGABYTES}"
  82. $scope.textPreview.data = null
  83. $scope.textPreview.loading = true
  84. $scope.textPreview.shouldShowDots = false
  85. $scope.$apply()
  86. $http({
  87. url: url,
  88. method: 'GET',
  89. transformResponse: null # Don't parse JSON
  90. })
  91. .then (response) ->
  92. { data } = response
  93. $scope.textPreview.error = false
  94. # show dots when payload is closs to cutoff
  95. if data.length >= (TWO_MEGABYTES - 200)
  96. $scope.textPreview.shouldShowDots = true
  97. # remove last partial line
  98. data = data?.replace?(/\n.*$/, '')
  99. $scope.textPreview.data = data
  100. $timeout(setHeight, 0)
  101. .catch (error) ->
  102. console.error(error)
  103. $scope.textPreview.error = true
  104. $scope.textPreview.loading = false
  105. setHeight = () ->
  106. $preview = $element.find('.text-preview .scroll-container')
  107. $footer = $element.find('.binary-file-footer')
  108. maxHeight = $element.height() - $footer.height() - 14 # borders + margin
  109. $preview.css('max-height': maxHeight)
  110. # Don't show the preview until we've set the height, otherwise we jump around
  111. $scope.textPreview.loading = false
  112. ]