mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
2ff1cf43d6
Upgrade and configure ESLint GitOrigin-RevId: ad5aeaf85e72c847a125ff3a9db99a12855e38aa
29 lines
893 B
JavaScript
29 lines
893 B
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 MetadataManager
|
|
|
|
export default MetadataManager = class MetadataManager {
|
|
constructor(ide, $scope, metadata) {
|
|
this.ide = ide
|
|
this.$scope = $scope
|
|
this.metadata = metadata
|
|
this.ide.socket.on('broadcastDocMeta', data => {
|
|
return this.metadata.onBroadcastDocMeta(data)
|
|
})
|
|
this.$scope.$on('entity:deleted', this.metadata.onEntityDeleted)
|
|
this.$scope.$on('file:upload:complete', this.metadata.fileUploadComplete)
|
|
}
|
|
|
|
loadProjectMetaFromServer() {
|
|
return this.metadata.loadProjectMetaFromServer()
|
|
}
|
|
}
|