Add toolbar with button to toggle rich text

This commit is contained in:
Alasdair Smith 2018-01-19 16:28:56 +00:00
parent 7783e18a50
commit b9327cb2d4
3 changed files with 24 additions and 1 deletions

View file

@ -30,9 +30,12 @@ div.full-size(
i.fa.fa-arrow-left
|   #{translate("open_a_file_on_the_left")}
.toolbar.toolbar-editor(ng-controller="EditorToolbarController")
button(ng-click="toggleRichText()") Rich Text
#editor(
ace-editor="editor",
ng-show="!!editor.sharejs_doc && !editor.opening"
ng-if="!!editor.sharejs_doc && !editor.opening && !editor.richText"
theme="settings.theme",
keybindings="settings.mode",
font-size="settings.fontSize",
@ -63,6 +66,12 @@ div.full-size(
renderer-data="reviewPanel.rendererData"
)
#editor-rich-text(
cm-editor
ng-if="!editor.opening && editor.richText"
sharejs-doc="editor.sharejs_doc"
)
include ./review-panel
.ui-layout-east

View file

@ -1,7 +1,9 @@
define [
"ide/editor/Document"
"ide/editor/directives/aceEditor"
"ide/editor/directives/cmEditor"
"ide/editor/controllers/SavingNotificationController"
"ide/editor/controllers/EditorToolbarController"
], (Document) ->
class EditorManager
constructor: (@ide, @$scope) ->
@ -12,6 +14,7 @@ define [
opening: true
trackChanges: false
wantTrackChanges: false
richText: false
}
@$scope.$on "entity:selected", (event, entity) =>
@ -186,3 +189,7 @@ define [
@$scope.editor.trackChanges = want
else
@_syncTimeout = setTimeout tryToggle, 100
toggleRichText: () ->
@$scope.editor.richText = !@$scope.editor.richText

View file

@ -0,0 +1,7 @@
define [
"base"
"ide/editor/Document"
], (App, Document) ->
App.controller "EditorToolbarController", ($scope, ide) ->
$scope.toggleRichText = () ->
ide.editorManager.toggleRichText()