2014-02-12 05:23:40 -05:00
|
|
|
extends ../layout
|
|
|
|
|
2014-06-21 17:20:37 -04:00
|
|
|
block vars
|
|
|
|
- var suppressNavbar = true
|
|
|
|
- var suppressFooter = true
|
2021-07-27 09:23:05 -04:00
|
|
|
- var suppressSkipToContent = true
|
2018-11-09 18:30:16 -05:00
|
|
|
- metadata.robotsNoindexNofollow = true
|
2014-06-21 17:20:37 -04:00
|
|
|
|
2021-09-08 04:24:14 -04:00
|
|
|
block css
|
|
|
|
each file in entrypointStyles('ide')
|
|
|
|
link(rel='stylesheet', href=file)
|
2021-03-29 07:07:40 -04:00
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
block content
|
2014-07-28 10:57:06 -04:00
|
|
|
.editor(ng-controller="IdeController").full-size
|
2020-12-14 06:44:10 -05:00
|
|
|
//- required by react2angular-shared-context, must be rendered as a top level component
|
2021-02-23 05:17:41 -05:00
|
|
|
shared-context-react()
|
2017-02-23 10:47:48 -05:00
|
|
|
.loading-screen(ng-if="state.loading")
|
2017-08-01 11:02:19 -04:00
|
|
|
.loading-screen-brand-container
|
|
|
|
.loading-screen-brand(
|
2017-02-23 10:47:48 -05:00
|
|
|
style="height: 20%;"
|
|
|
|
ng-style="{ 'height': state.load_progress + '%' }"
|
|
|
|
)
|
|
|
|
h3.loading-screen-label(ng-if="!state.error") #{translate("loading")}
|
|
|
|
span.loading-screen-ellip .
|
|
|
|
span.loading-screen-ellip .
|
|
|
|
span.loading-screen-ellip .
|
2019-09-10 05:52:53 -04:00
|
|
|
p.loading-screen-error(ng-if="state.error").ng-cloak
|
2017-02-23 10:47:48 -05:00
|
|
|
span(ng-bind-html="state.error")
|
2015-07-31 10:42:47 -04:00
|
|
|
|
2020-12-14 04:29:45 -05:00
|
|
|
.global-alerts(ng-cloak ng-hide="editor.error_state")
|
2014-06-24 11:33:36 -04:00
|
|
|
.alert.alert-danger.small(ng-if="connection.forced_disconnect")
|
2014-07-31 12:07:43 -04:00
|
|
|
strong #{translate("disconnected")}
|
2014-06-24 11:33:36 -04:00
|
|
|
|
|
|
|
.alert.alert-warning.small(ng-if="connection.reconnection_countdown")
|
2014-07-31 12:07:43 -04:00
|
|
|
strong #{translate("lost_connection")}.
|
2019-09-10 05:52:53 -04:00
|
|
|
| #{translate("reconnecting_in_x_secs", {seconds:"{{ connection.reconnection_countdown }}"})}.
|
2017-12-20 10:39:50 -05:00
|
|
|
a#try-reconnect-now-button.alert-link-as-btn.pull-right(href, ng-click="tryReconnectNow()") #{translate("try_now")}
|
2014-06-24 11:33:36 -04:00
|
|
|
|
2019-09-10 10:31:08 -04:00
|
|
|
.alert.alert-warning.small(ng-if="connection.reconnecting && connection.stillReconnecting")
|
2020-04-22 05:35:33 -04:00
|
|
|
strong #{translate("reconnecting")}…
|
2014-06-24 11:33:36 -04:00
|
|
|
|
2019-06-17 10:47:19 -04:00
|
|
|
.alert.alert-warning.small(ng-if="sync_tex_error")
|
|
|
|
strong #{translate("synctex_failed")}.
|
|
|
|
a#synctex-more-info-button.alert-link-as-btn.pull-right(
|
|
|
|
href="/learn/how-to/SyncTeX_Errors"
|
|
|
|
target="_blank"
|
|
|
|
) #{translate("more_info")}
|
|
|
|
|
2015-10-14 09:15:33 -04:00
|
|
|
.alert.alert-warning.small(ng-if="connection.inactive_disconnect")
|
|
|
|
strong #{translate("editor_disconected_click_to_reconnect")}
|
|
|
|
|
2019-09-10 10:31:08 -04:00
|
|
|
.alert.alert-warning.small(ng-if="connection.debug") {{ connection.state }}
|
|
|
|
|
2014-07-02 12:41:07 -04:00
|
|
|
.div(ng-controller="SavingNotificationController")
|
2015-10-14 09:15:33 -04:00
|
|
|
.alert.alert-warning.small(ng-repeat="(doc_id, state) in docSavingStatus" ng-if="state.unsavedSeconds > 8") #{translate("saving_notification_with_seconds", {docname:"{{ state.doc.name }}", seconds:"{{ state.unsavedSeconds }}"})}
|
2014-07-02 12:41:07 -04:00
|
|
|
|
2020-02-26 06:55:28 -05:00
|
|
|
.div(ng-controller="SystemMessagesController")
|
|
|
|
.alert.alert-warning.system-message(
|
|
|
|
ng-repeat="message in messages"
|
|
|
|
ng-controller="SystemMessageController"
|
|
|
|
ng-hide="hidden"
|
|
|
|
)
|
|
|
|
button(ng-hide="protected",ng-click="hide()").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|
|
|
|
.system-message-content(ng-bind-html="htmlContent")
|
|
|
|
|
2014-06-26 11:39:52 -04:00
|
|
|
include ./editor/left-menu
|
2014-06-25 08:51:02 -04:00
|
|
|
|
2016-10-11 09:24:01 -04:00
|
|
|
#chat-wrapper.full-size(
|
2014-07-02 08:23:04 -04:00
|
|
|
layout="chat",
|
2017-11-30 10:24:48 -05:00
|
|
|
spacing-open="{{ui.chatResizerSizeOpen}}",
|
|
|
|
spacing-closed="{{ui.chatResizerSizeClosed}}",
|
2014-07-02 08:23:04 -04:00
|
|
|
initial-size-east="250",
|
|
|
|
init-closed-east="true",
|
|
|
|
open-east="ui.chatOpen",
|
|
|
|
ng-hide="state.loading",
|
|
|
|
ng-cloak
|
|
|
|
)
|
|
|
|
.ui-layout-center
|
2021-01-27 05:30:55 -05:00
|
|
|
if showNewNavigationUI
|
|
|
|
include ./editor/header-react
|
|
|
|
else
|
|
|
|
include ./editor/header
|
2014-06-21 17:20:37 -04:00
|
|
|
|
2018-04-10 05:01:10 -04:00
|
|
|
!= moduleIncludes("publish:body", locals)
|
2014-07-01 09:12:28 -04:00
|
|
|
|
2018-05-22 10:40:57 -04:00
|
|
|
include ./editor/history/toolbarV2.pug
|
|
|
|
|
2018-04-16 06:33:53 -04:00
|
|
|
main#ide-body(
|
2016-02-23 10:21:22 -05:00
|
|
|
ng-cloak,
|
2018-04-16 06:33:53 -04:00
|
|
|
role="main",
|
2018-12-17 04:53:20 -05:00
|
|
|
ng-class="{ 'ide-history-open' : (ui.view == 'history' && history.isV2) }",
|
2016-02-23 10:21:22 -05:00
|
|
|
layout="main",
|
|
|
|
ng-hide="state.loading",
|
2021-09-03 05:08:35 -04:00
|
|
|
resize-on="layout:chat:resize,history:toggle,layout:flat-screen:toggle",
|
2016-02-23 10:21:22 -05:00
|
|
|
minimum-restore-size-west="130"
|
2018-10-19 05:34:07 -04:00
|
|
|
custom-toggler-pane=hasFeature('custom-togglers') ? "west" : false
|
|
|
|
custom-toggler-msg-when-open=hasFeature('custom-togglers') ? translate("tooltip_hide_filetree") : false
|
|
|
|
custom-toggler-msg-when-closed=hasFeature('custom-togglers') ? translate("tooltip_show_filetree") : false
|
2021-09-14 04:54:47 -04:00
|
|
|
ng-keydown="handleKeyDown($event)"
|
|
|
|
tabindex="0"
|
2016-02-23 10:21:22 -05:00
|
|
|
)
|
2014-07-02 08:23:04 -04:00
|
|
|
.ui-layout-west
|
2021-04-29 05:11:00 -04:00
|
|
|
include ./editor/file-tree-react
|
|
|
|
include ./editor/file-tree-history
|
2018-05-30 09:21:01 -04:00
|
|
|
include ./editor/history/fileTreeV2
|
2014-07-02 08:23:04 -04:00
|
|
|
|
|
|
|
.ui-layout-center
|
|
|
|
include ./editor/editor
|
2021-04-28 07:41:20 -04:00
|
|
|
|
2021-09-14 06:44:07 -04:00
|
|
|
include ./editor/file-view
|
|
|
|
|
2016-10-05 06:04:39 -04:00
|
|
|
include ./editor/history
|
2014-07-02 08:23:04 -04:00
|
|
|
|
2020-07-24 04:55:40 -04:00
|
|
|
if !isRestrictedTokenMember
|
|
|
|
.ui-layout-east
|
2021-01-21 04:48:12 -05:00
|
|
|
aside.chat(
|
|
|
|
ng-controller="ReactChatController"
|
|
|
|
)
|
2021-02-23 05:17:41 -05:00
|
|
|
chat()
|
2019-09-10 05:52:53 -04:00
|
|
|
|
2014-07-02 12:04:29 -04:00
|
|
|
script(type="text/ng-template", id="genericMessageModalTemplate")
|
|
|
|
.modal-header
|
|
|
|
button.close(
|
|
|
|
type="button"
|
|
|
|
data-dismiss="modal"
|
|
|
|
ng-click="done()"
|
2020-01-27 08:53:27 -05:00
|
|
|
aria-label="Close"
|
|
|
|
)
|
|
|
|
span(aria-hidden="true") ×
|
2014-07-02 12:04:29 -04:00
|
|
|
h3 {{ title }}
|
2015-12-04 03:43:34 -05:00
|
|
|
.modal-body(ng-bind-html="message")
|
2014-07-02 12:04:29 -04:00
|
|
|
.modal-footer
|
2014-07-31 12:07:43 -04:00
|
|
|
button.btn.btn-info(ng-click="done()") #{translate("ok")}
|
2014-06-21 17:20:37 -04:00
|
|
|
|
2020-05-01 09:59:55 -04:00
|
|
|
script(type="text/ng-template", id="outOfSyncModalTemplate")
|
|
|
|
.modal-header
|
|
|
|
button.close(
|
|
|
|
type="button"
|
|
|
|
data-dismiss="modal"
|
|
|
|
ng-click="done()"
|
|
|
|
aria-label="Close"
|
|
|
|
)
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
h3 {{ title }}
|
|
|
|
.modal-body(ng-bind-html="message")
|
|
|
|
|
|
|
|
.modal-body
|
|
|
|
button.btn.btn-info(
|
|
|
|
ng-init="showFileContents = false"
|
|
|
|
ng-click="showFileContents = !showFileContents"
|
|
|
|
)
|
|
|
|
| {{showFileContents ? "Hide" : "Show"}} Local File Contents
|
|
|
|
.text-preview(ng-show="showFileContents")
|
2021-03-30 11:40:26 -04:00
|
|
|
textarea.scroll-container(readonly="readonly" rows="{{editorContentRows}}")
|
2020-05-01 09:59:55 -04:00
|
|
|
| {{editorContent}}
|
|
|
|
|
|
|
|
.modal-footer
|
2021-01-12 06:24:10 -05:00
|
|
|
button.btn.btn-info(ng-click="done()") #{translate("reload_editor")}
|
2020-05-01 09:59:55 -04:00
|
|
|
|
2016-11-02 12:59:57 -04:00
|
|
|
script(type="text/ng-template", id="lockEditorModalTemplate")
|
|
|
|
.modal-header
|
|
|
|
h3 {{ title }}
|
|
|
|
.modal-body(ng-bind-html="message")
|
|
|
|
|
2021-04-09 04:36:11 -04:00
|
|
|
block append meta
|
|
|
|
meta(name="ol-useV2History" data-type="boolean" content=useV2History)
|
|
|
|
meta(name="ol-project_id" content=project_id)
|
|
|
|
meta(name="ol-userSettings" data-type="json" content=userSettings)
|
|
|
|
meta(name="ol-user" data-type="json" content=user)
|
|
|
|
meta(name="ol-anonymous" data-type="boolean" content=anonymous)
|
|
|
|
meta(name="ol-brandVariation" data-type="json" content=brandVariation)
|
|
|
|
meta(name="ol-anonymousAccessToken" content=anonymousAccessToken)
|
|
|
|
meta(name="ol-isTokenMember" data-type="boolean" content=isTokenMember)
|
|
|
|
meta(name="ol-isRestrictedTokenMember" data-type="boolean" content=isRestrictedTokenMember)
|
|
|
|
meta(name="ol-maxDocLength" data-type="json" content=maxDocLength)
|
|
|
|
meta(name="ol-wikiEnabled" data-type="boolean" content=!!(settings.apis.wiki && settings.apis.wiki.url))
|
|
|
|
meta(name="ol-gitBridgePublicBaseUrl" content=gitBridgePublicBaseUrl)
|
|
|
|
//- Set base path for Ace scripts loaded on demand/workers and don't use cdn
|
|
|
|
meta(name="ol-aceBasePath" content="/js/" + lib('ace'))
|
|
|
|
//- Set path for PDFjs CMaps
|
|
|
|
meta(name="ol-pdfCMapsPath" content="/js/cmaps/")
|
|
|
|
//- enable doc hash checking for all projects
|
|
|
|
//- used in public/js/libs/sharejs.js
|
|
|
|
meta(name="ol-useShareJsHash" data-type="boolean" content=true)
|
|
|
|
meta(name="ol-wsRetryHandshake" data-type="json" content=settings.wsRetryHandshake)
|
|
|
|
meta(name="ol-showNewLogsUI" data-type="boolean" content=showNewLogsUI)
|
|
|
|
meta(name="ol-logsUISubvariant" content=logsUISubvariant)
|
2021-05-12 06:27:47 -04:00
|
|
|
meta(name="ol-showSymbolPalette" data-type="boolean" content=showSymbolPalette)
|
2021-05-17 05:38:18 -04:00
|
|
|
meta(name="ol-enablePdfCaching" data-type="boolean" content=enablePdfCaching)
|
2021-05-21 07:32:07 -04:00
|
|
|
meta(name="ol-trackPdfDownload" data-type="boolean" content=trackPdfDownload)
|
2021-06-16 04:14:32 -04:00
|
|
|
meta(name="ol-resetServiceWorker" data-type="boolean" content=resetServiceWorker)
|
2021-04-09 04:36:11 -04:00
|
|
|
|
|
|
|
- var fileActionI18n = ['edited', 'renamed', 'created', 'deleted'].reduce((acc, i) => {acc[i] = translate('file_action_' + i); return acc}, {})
|
|
|
|
meta(name="ol-fileActionI18n" data-type="json" content=fileActionI18n)
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2021-03-24 06:09:43 -04:00
|
|
|
if (settings.overleaf != null)
|
2021-04-09 04:36:11 -04:00
|
|
|
meta(name="ol-overallThemes" data-type="json" content=overallThemes)
|
2018-08-28 09:12:00 -04:00
|
|
|
|
2019-10-16 06:10:54 -04:00
|
|
|
block foot-scripts
|
2021-03-25 10:02:21 -04:00
|
|
|
script(type="text/javascript", nonce=scriptNonce, src=(wsUrl || '/socket.io') + '/socket.io.js')
|
|
|
|
script(type="text/javascript", nonce=scriptNonce, src=mathJaxPath)
|
2021-09-08 04:24:14 -04:00
|
|
|
each file in entrypointScripts("ide")
|
|
|
|
script(type="text/javascript", nonce=scriptNonce, src=file)
|