mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
18 lines
661 B
CoffeeScript
18 lines
661 B
CoffeeScript
ProjectEntityHandler = require "./ProjectEntityHandler"
|
|
Path = require "path"
|
|
|
|
module.exports = ProjectRootDocManager =
|
|
setRootDocAutomatically: (project_id, callback = (error) ->) ->
|
|
ProjectEntityHandler.getAllDocs project_id, (error, docs) ->
|
|
return callback(error) if error?
|
|
root_doc_id = null
|
|
for path, doc of docs
|
|
for line in doc.lines || []
|
|
match = line.match /(.*)\\documentclass/ # no lookbehind in js regexp :(
|
|
if Path.extname(path).match(/\.R?tex$/) and match and !match[1].match /%/
|
|
root_doc_id = doc._id
|
|
if root_doc_id?
|
|
ProjectEntityHandler.setRootDoc project_id, root_doc_id, callback
|
|
else
|
|
callback()
|
|
|