Merge pull request #3495 from overleaf/ae-prettier-2

Upgrade Prettier to v2

GitOrigin-RevId: 85aa3fa1acb6332c4f58c46165a43d1a51471f33
This commit is contained in:
Alf Eaton
2021-04-14 14:17:21 +01:00
committed by Copybot
parent 930d7ba028
commit 1ebc8a79cb
582 changed files with 20382 additions and 20374 deletions

View File

@@ -33,43 +33,49 @@ module.exports = MetaHandler = {
getAllMetaForProject(projectId, callback) {
if (callback == null) {
callback = function(err, projectMeta) {}
callback = function (err, projectMeta) {}
}
return DocumentUpdaterHandler.flushProjectToMongo(projectId, function(err) {
if (err != null) {
return callback(err)
}
return ProjectEntityHandler.getAllDocs(projectId, function(err, docs) {
return DocumentUpdaterHandler.flushProjectToMongo(
projectId,
function (err) {
if (err != null) {
return callback(err)
}
const projectMeta = MetaHandler.extractMetaFromProjectDocs(docs)
return callback(null, projectMeta)
})
})
return ProjectEntityHandler.getAllDocs(projectId, function (err, docs) {
if (err != null) {
return callback(err)
}
const projectMeta = MetaHandler.extractMetaFromProjectDocs(docs)
return callback(null, projectMeta)
})
}
)
},
getMetaForDoc(projectId, docId, callback) {
if (callback == null) {
callback = function(err, docMeta) {}
callback = function (err, docMeta) {}
}
return DocumentUpdaterHandler.flushDocToMongo(projectId, docId, function(
err
) {
if (err != null) {
return callback(err)
}
return ProjectEntityHandler.getDoc(projectId, docId, function(
err,
lines
) {
return DocumentUpdaterHandler.flushDocToMongo(
projectId,
docId,
function (err) {
if (err != null) {
return callback(err)
}
const docMeta = MetaHandler.extractMetaFromDoc(lines)
return callback(null, docMeta)
})
})
return ProjectEntityHandler.getDoc(
projectId,
docId,
function (err, lines) {
if (err != null) {
return callback(err)
}
const docMeta = MetaHandler.extractMetaFromDoc(lines)
return callback(null, docMeta)
}
)
}
)
},
extractMetaFromDoc(lines) {