mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
148 lines
4.2 KiB
Text
148 lines
4.2 KiB
Text
extends ../layout
|
|
|
|
block vars
|
|
- var suppressNavbar = true
|
|
- var suppressFooter = true
|
|
- var suppressDefaultJs = true
|
|
|
|
block scripts
|
|
//- Only use the native bootstrap on the editor page,
|
|
//- since we use the Angular-based bootstrap elsewhere.
|
|
script(src=jsPath+'libs/bootstrap-3.1.1.js')
|
|
script(src=jsPath+'libs/jquery-layout.js')
|
|
script(src=jsPath+'libs/jquery.storage.js')
|
|
|
|
block content
|
|
.editor(ng-controller="IdeController")
|
|
.loading-screen(ng-show="state.loading")
|
|
.container
|
|
h3 Loading...
|
|
.progress
|
|
.progress-bar(ng-style="{'width': state.load_progress + '%'}")
|
|
|
|
.global-alerts(ng-cloak)
|
|
.alert.alert-danger.small(ng-if="connection.forced_disconnect")
|
|
strong Disconnected
|
|
| Please refresh the page to continue.
|
|
|
|
.alert.alert-warning.small(ng-if="connection.reconnection_countdown")
|
|
strong Lost Connection.
|
|
| Reconnecting in {{ connection.reconnection_countdown }} secs.
|
|
a.pull-right(href, ng-click="tryReconnectNow()") Try Now
|
|
|
|
.alert.alert-warning.small(ng-if="connection.reconnecting")
|
|
strong Reconnecting...
|
|
|
|
header.toolbar.toolbar-header(ng-cloak, ng-hide="state.loading")
|
|
a.btn.btn-full-height(href='#', tooltip="Menu", tooltip-placement="bottom")
|
|
i.fa.fa-bars
|
|
|
|
span.name {{ project.name }}
|
|
|
|
a(href='#', data-toggle="tooltip", title="Rename")
|
|
i.fa.fa-pencil
|
|
|
|
.toolbar-right
|
|
a.btn.btn-full-height(href='#', tooltip="Share", tooltip-placement="bottom")
|
|
i.fa.fa-group
|
|
a.btn.btn-full-height(href='#', tooltip="Recent Changes", tooltip-placement="bottom")
|
|
i.fa.fa-history
|
|
a.btn.btn-full-height(href='#', tooltip="Chat", tooltip-placement="bottom")
|
|
i.fa.fa-comment
|
|
|
|
#ide-body(ng-cloak, layout="main", ng-hide="state.loading")
|
|
include ./editor/file-tree
|
|
|
|
.ui-layout-center
|
|
#editor(ace-editor, theme="'cobalt'", show-print-margin="false", sharejs-doc="editor.sharejs_doc", last-updated="editor.last_updated")
|
|
|
|
//- #loadingScreen
|
|
//- h3 Loading...
|
|
//- p#loadingMessage Loading editor
|
|
|
|
//- #errorMessages
|
|
//- #connectionLostMessage(style="display: none;")
|
|
//- | Lost connection.
|
|
//- span#trying-reconnect
|
|
//- | Reconnecting in
|
|
//- span#reconnection-countdown ?
|
|
//- | seconds.
|
|
//- a(href='#')#try-reconnect-now Try now.
|
|
//- span#reconnecting
|
|
//- | Reconnecting...
|
|
|
|
//- #savingProblems(style="display: none")
|
|
//- | Saving...
|
|
|
|
//- div#toolbar.sidebar-navigation
|
|
//- ul#tabs
|
|
//- #toolbar-footer
|
|
|
|
//- #tab-content.tab-content
|
|
|
|
//- include ../templates
|
|
//- include ../templates/dropbox
|
|
|
|
script(src='/socket.io/socket.io.js')
|
|
|
|
script(type='text/javascript').
|
|
window.project_id = "!{project_id}"
|
|
window.sharelatex = !{sharelatexObject};
|
|
window.userSettings = !{userSettingsObject};
|
|
window.user = !{userObject};
|
|
window.csrfToken = "!{csrfToken}";
|
|
window.requirejs = {
|
|
"paths" : {
|
|
"underscore": "../libs/underscore-1.3.3",
|
|
"mathjax": "https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS_HTML",
|
|
"moment": "libs/moment-2.4.0",
|
|
"ace": "#{jsPath}ace"
|
|
},
|
|
"urlArgs" : "fingerprint=#{fingerprint(jsPath + 'ide.js')}",
|
|
"waitSeconds": 0,
|
|
"shim": {
|
|
"libs/backbone": {
|
|
deps: ["libs/underscore-1.3.3"]
|
|
},
|
|
"libs/pdfListView/PdfListView": {
|
|
deps: ["libs/pdf"]
|
|
},
|
|
"libs/pdf": {
|
|
deps: ["libs/compatibility"]
|
|
}
|
|
}
|
|
};
|
|
|
|
script(type='text/javascript').
|
|
ga('send', 'event', 'editor-interaction', 'editor-opened')
|
|
|
|
- locals.suppressDefaultJs = true
|
|
|
|
- var fingerprintedPath = fingerprint(jsPath+'libs/pdf.worker.js')
|
|
- var pdfJsWorkerPath = jsPath+'libs/pdf.worker.js?fingerprint='+fingerprintedPath
|
|
script(type='text/javascript').
|
|
window.sharelatex.pdfJsWorkerPath = "#{pdfJsWorkerPath}"
|
|
|
|
script(
|
|
data-main=jsPath+'app/ide.js',
|
|
baseurl=jsPath,
|
|
data-ace-base=jsPath+'ace',
|
|
src=jsPath+'libs/require.js?fingerprint='+fingerprint(jsPath + 'libs/require.js')
|
|
)
|
|
|
|
- if (!anonymous)
|
|
script(type="text/javascript").
|
|
var chatReq = require.config({
|
|
context: "chat",
|
|
baseUrl: "#{chatUrl}/chat"
|
|
});
|
|
chatReq(["require", "chat"], function(require, Chat) {
|
|
new Chat({
|
|
room: {
|
|
project_id: window.userSettings.project_id
|
|
},
|
|
url: "#{chatUrl}"
|
|
})
|
|
});
|
|
|
|
|