2018-11-05 05:06:39 -05:00
|
|
|
/* eslint-disable
|
|
|
|
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([
|
2020-04-06 07:45:56 -04:00
|
|
|
'./controllers/PdfController',
|
|
|
|
'./controllers/PdfViewToggleController',
|
|
|
|
'../pdfng/directives/pdfJs'
|
2018-11-05 05:06:39 -05:00
|
|
|
], function() {
|
|
|
|
let PdfManager
|
|
|
|
return (PdfManager = class PdfManager {
|
|
|
|
constructor(ide, $scope) {
|
|
|
|
this.ide = ide
|
|
|
|
this.$scope = $scope
|
|
|
|
this.$scope.pdf = {
|
|
|
|
url: null, // Pdf Url
|
|
|
|
error: false, // Server error
|
|
|
|
timeout: false, // Server timed out
|
|
|
|
failure: false, // PDF failed to compile
|
|
|
|
compiling: false,
|
|
|
|
uncompiled: true,
|
|
|
|
logEntries: [],
|
|
|
|
logEntryAnnotations: {},
|
|
|
|
rawLog: '',
|
|
|
|
view: null, // 'pdf' 'logs'
|
|
|
|
showRawLog: false,
|
|
|
|
highlights: [],
|
|
|
|
position: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|