2014-06-28 07:07:18 -04:00
|
|
|
div.full-size(
|
|
|
|
ng-show="ui.view == 'editor'"
|
|
|
|
layout="pdf"
|
2014-07-22 08:33:01 -04:00
|
|
|
layout-disabled="ui.pdfLayout != 'sideBySide'"
|
2014-07-31 07:42:06 -04:00
|
|
|
mask-iframes-on-resize="true"
|
2014-06-28 07:07:18 -04:00
|
|
|
resize-on="layout:main:resize"
|
2014-07-02 08:23:04 -04:00
|
|
|
resize-proportionally="true"
|
|
|
|
initial-size-east="'50%'"
|
2016-02-23 10:21:22 -05:00
|
|
|
minimum-restore-size-east="300"
|
2016-11-15 05:34:19 -05:00
|
|
|
allow-overflow-on="'center'"
|
2018-10-19 05:34:07 -04:00
|
|
|
custom-toggler-pane=hasFeature('custom-togglers') ? "east" : false
|
|
|
|
custom-toggler-msg-when-open=hasFeature('custom-togglers') ? translate("tooltip_hide_pdf") : false
|
|
|
|
custom-toggler-msg-when-closed=hasFeature('custom-togglers') ? translate("tooltip_show_pdf") : false
|
2014-06-28 07:07:18 -04:00
|
|
|
)
|
2016-11-17 09:29:35 -05:00
|
|
|
.ui-layout-center(
|
|
|
|
ng-controller="ReviewPanelController",
|
|
|
|
ng-class="{\
|
2018-07-11 07:11:05 -04:00
|
|
|
'rp-unsupported': editor.showRichText,\
|
2016-11-17 09:29:35 -05:00
|
|
|
'rp-state-current-file': (reviewPanel.subView === SubViews.CUR_FILE),\
|
|
|
|
'rp-state-current-file-expanded': (reviewPanel.subView === SubViews.CUR_FILE && ui.reviewPanelOpen),\
|
|
|
|
'rp-state-current-file-mini': (reviewPanel.subView === SubViews.CUR_FILE && !ui.reviewPanelOpen),\
|
|
|
|
'rp-state-overview': (reviewPanel.subView === SubViews.OVERVIEW),\
|
2017-05-11 05:17:25 -04:00
|
|
|
'rp-size-mini': ui.miniReviewPanelVisible,\
|
2017-01-12 12:06:08 -05:00
|
|
|
'rp-size-expanded': ui.reviewPanelOpen,\
|
2017-01-17 10:55:18 -05:00
|
|
|
'rp-layout-left': reviewPanel.layoutToLeft,\
|
2017-03-20 09:56:36 -04:00
|
|
|
'rp-loading-threads': reviewPanel.loadingThreads,\
|
2016-11-17 09:29:35 -05:00
|
|
|
}"
|
|
|
|
)
|
2018-07-12 06:18:09 -04:00
|
|
|
.loading-panel(
|
|
|
|
ng-show="!editor.sharejs_doc || editor.opening",
|
|
|
|
style=showRichText ? "top: 32px" : "",
|
|
|
|
)
|
2016-10-12 12:27:20 -04:00
|
|
|
span(ng-show="editor.open_doc_id")
|
|
|
|
i.fa.fa-spin.fa-refresh
|
2020-04-22 05:35:33 -04:00
|
|
|
| #{translate("loading")}…
|
2016-10-12 12:27:20 -04:00
|
|
|
span(ng-show="!editor.open_doc_id")
|
|
|
|
i.fa.fa-arrow-left
|
|
|
|
| #{translate("open_a_file_on_the_left")}
|
2016-10-11 09:24:01 -04:00
|
|
|
|
2020-07-30 04:22:51 -04:00
|
|
|
if moduleIncludesAvailable('editor:main')
|
|
|
|
!= moduleIncludes('editor:main', locals)
|
|
|
|
else
|
|
|
|
.toolbar.toolbar-editor
|
2018-03-28 05:13:23 -04:00
|
|
|
|
2019-12-16 05:55:45 -05:00
|
|
|
.multi-selection-ongoing(
|
|
|
|
ng-show="multiSelectedCount > 0"
|
|
|
|
)
|
|
|
|
.multi-selection-message
|
|
|
|
h4 {{ multiSelectedCount }} #{translate('files_selected')}
|
|
|
|
|
2016-10-13 09:22:23 -04:00
|
|
|
#editor(
|
2016-10-12 12:27:20 -04:00
|
|
|
ace-editor="editor",
|
2018-05-25 08:48:35 -04:00
|
|
|
ng-if="!editor.showRichText",
|
2019-12-16 05:55:45 -05:00
|
|
|
ng-show="!!editor.sharejs_doc && !editor.opening && multiSelectedCount === 0",
|
2018-08-27 10:25:00 -04:00
|
|
|
theme="settings.editorTheme",
|
2016-10-12 12:27:20 -04:00
|
|
|
keybindings="settings.mode",
|
|
|
|
font-size="settings.fontSize",
|
|
|
|
auto-complete="settings.autoComplete",
|
2017-07-06 06:06:51 -04:00
|
|
|
auto-pair-delimiters="settings.autoPairDelimiters",
|
2016-11-04 11:44:30 -04:00
|
|
|
spell-check="!anonymous",
|
2017-06-13 09:06:00 -04:00
|
|
|
spell-check-language="project.spellCheckLanguage"
|
2016-10-12 12:27:20 -04:00
|
|
|
highlights="onlineUserCursorHighlights[editor.open_doc_id]"
|
|
|
|
show-print-margin="false",
|
|
|
|
sharejs-doc="editor.sharejs_doc",
|
|
|
|
last-updated="editor.last_updated",
|
|
|
|
cursor-position="editor.cursorPosition",
|
|
|
|
goto-line="editor.gotoLine",
|
2019-05-10 04:46:39 -04:00
|
|
|
resize-on="layout:main:resize,layout:pdf:resize,layout:review:resize,review-panel:toggle,layout:flat-screen:toggle",
|
2016-10-12 12:27:20 -04:00
|
|
|
annotations="pdf.logEntryAnnotations[editor.open_doc_id]",
|
|
|
|
read-only="!permissions.write",
|
2016-10-20 11:03:19 -04:00
|
|
|
file-name="editor.open_doc_name",
|
2016-10-12 12:27:20 -04:00
|
|
|
on-ctrl-enter="recompileViaKey",
|
2018-05-03 07:20:53 -04:00
|
|
|
on-save="recompileViaKey",
|
2017-05-18 06:02:50 -04:00
|
|
|
on-ctrl-j="toggleReviewPanel",
|
2017-05-19 10:28:49 -04:00
|
|
|
on-ctrl-shift-c="addNewCommentFromKbdShortcut",
|
|
|
|
on-ctrl-shift-a="toggleTrackChangesFromKbdShortcut",
|
2016-10-12 12:27:20 -04:00
|
|
|
syntax-validation="settings.syntaxValidation",
|
|
|
|
review-panel="reviewPanel",
|
2016-11-17 05:40:08 -05:00
|
|
|
events-bridge="reviewPanelEventsBridge"
|
2016-12-08 09:10:30 -05:00
|
|
|
track-changes= "editor.trackChanges",
|
2016-11-16 08:51:30 -05:00
|
|
|
doc-id="editor.open_doc_id"
|
2017-01-13 08:52:08 -05:00
|
|
|
renderer-data="reviewPanel.rendererData"
|
2020-03-24 09:05:55 -04:00
|
|
|
font-family="settings.fontFamily"
|
|
|
|
line-height="settings.lineHeight"
|
2016-10-12 12:27:20 -04:00
|
|
|
)
|
2017-01-17 12:20:51 -05:00
|
|
|
|
2019-10-31 06:21:00 -04:00
|
|
|
if !isRestrictedTokenMember
|
|
|
|
include ./review-panel
|
2014-06-28 07:07:18 -04:00
|
|
|
|
|
|
|
.ui-layout-east
|
2014-07-22 08:33:01 -04:00
|
|
|
div(ng-if="ui.pdfLayout == 'sideBySide'")
|
|
|
|
include ./pdf
|
2014-06-30 13:35:01 -04:00
|
|
|
|
|
|
|
.ui-layout-resizer-controls.synctex-controls(
|
2014-07-21 07:30:34 -04:00
|
|
|
ng-show="!!pdf.url && settings.pdfViewer == 'pdfjs'"
|
2014-06-30 13:35:01 -04:00
|
|
|
ng-controller="PdfSynctexController"
|
|
|
|
)
|
2017-12-11 11:55:50 -05:00
|
|
|
a.btn.btn-default.btn-xs.synctex-control.synctex-control-goto-pdf(
|
2017-01-31 09:57:22 -05:00
|
|
|
tooltip=translate('go_to_code_location_in_pdf')
|
2014-06-30 13:35:01 -04:00
|
|
|
tooltip-placement="right"
|
|
|
|
tooltip-append-to-body="true"
|
|
|
|
ng-click="syncToPdf()"
|
2020-08-18 09:08:49 -04:00
|
|
|
ng-disabled="syncToPdfInFlight"
|
2014-06-30 13:35:01 -04:00
|
|
|
)
|
2020-08-18 09:08:49 -04:00
|
|
|
i.synctex-control-icon(ng-show="!syncToPdfInFlight")
|
|
|
|
i.synctex-spin-icon.fa.fa-refresh.fa-spin(ng-show="syncToPdfInFlight")
|
2017-12-11 11:55:50 -05:00
|
|
|
a.btn.btn-default.btn-xs.synctex-control.synctex-control-goto-code(
|
2017-07-28 12:31:28 -04:00
|
|
|
tooltip-html="'"+translate('go_to_pdf_location_in_code', {}, true)+"'"
|
2014-06-30 13:35:01 -04:00
|
|
|
tooltip-placement="right"
|
|
|
|
tooltip-append-to-body="true"
|
|
|
|
ng-click="syncToCode()"
|
2020-08-18 09:08:49 -04:00
|
|
|
ng-disabled="syncToCodeInFlight"
|
2014-06-30 13:35:01 -04:00
|
|
|
)
|
2020-08-18 09:08:49 -04:00
|
|
|
i.synctex-control-icon(ng-show="!syncToCodeInFlight")
|
|
|
|
i.synctex-spin-icon.fa.fa-refresh.fa-spin(ng-show="syncToCodeInFlight")
|
2018-10-19 05:34:07 -04:00
|
|
|
|
2014-07-22 08:33:01 -04:00
|
|
|
div.full-size(
|
|
|
|
ng-if="ui.pdfLayout == 'flat'"
|
|
|
|
ng-show="ui.view == 'pdf'"
|
|
|
|
)
|
|
|
|
include ./pdf
|
2019-12-16 05:55:45 -05:00
|
|
|
|
|
|
|
// fallback, shown when no file/view is selected
|
|
|
|
div.full-size.no-file-selection(
|
|
|
|
ng-if="!ui.view"
|
|
|
|
)
|
|
|
|
.no-file-selection-message(
|
|
|
|
ng-if="rootFolder.children && rootFolder.children.length > 0"
|
|
|
|
)
|
|
|
|
h3
|
|
|
|
| #{translate('no_selection_select_file')}
|
|
|
|
.no-file-selection-message(
|
|
|
|
ng-if="rootFolder.children && rootFolder.children.length === 0"
|
|
|
|
)
|
|
|
|
h3
|
|
|
|
| #{translate('no_selection_create_new_file')}
|
|
|
|
div(
|
|
|
|
ng-controller="FileTreeController"
|
|
|
|
)
|
|
|
|
button.btn.btn-primary(
|
|
|
|
ng-click="openNewDocModal()"
|
|
|
|
)
|
|
|
|
| #{translate('new_file')}
|
|
|
|
|