diff --git a/lib/editor/atto/tests/behat/disablecontrol.feature b/lib/editor/atto/tests/behat/disablecontrol.feature new file mode 100644 index 00000000000..491e6e10362 --- /dev/null +++ b/lib/editor/atto/tests/behat/disablecontrol.feature @@ -0,0 +1,45 @@ +@editor @editor_atto @atto @editor_moodleform +Feature: Atto with enable/disable function. + In order to test enable/disable function + I create a sample page to test this feature. + As a user + I need to enable/disable all buttons/plugins and content of editor if "enable/disable" feature enabled. + + Background: + Given the following "courses" exist: + | fullname | shortname | format | + | Course 1 | C1 | topics | + And the following "activities" exist: + | activity | name | intro | course | idnumber | + | label | L1 | Control Enable/Disable Atto | C1 | label1 | + And I log in as "admin" + And I am on "Course 1" course homepage + And I follow "Control Enable/Disable Atto" + + @javascript + Scenario: Check disable Atto editor. + When I set the field "mycontrol" to "Disable" + Then the "disabled" attribute of "button.atto_collapse_button" "css_element" should contain "disabled" + And the "disabled" attribute of "button.atto_title_button" "css_element" should contain "disabled" + And the "disabled" attribute of "button.atto_bold_button_bold" "css_element" should contain "disabled" + And the "disabled" attribute of "button.atto_italic_button_italic" "css_element" should contain "disabled" + And the "disabled" attribute of "button.atto_unorderedlist_button_insertUnorderedList" "css_element" should contain "disabled" + And the "disabled" attribute of "button.atto_orderedlist_button_insertOrderedList" "css_element" should contain "disabled" + And the "disabled" attribute of "button.atto_link_button" "css_element" should contain "disabled" + And the "disabled" attribute of "button.atto_link_button_unlink" "css_element" should contain "disabled" + And the "disabled" attribute of "button.atto_image_button" "css_element" should contain "disabled" + And the "contenteditable" attribute of "div#id_myeditoreditable" "css_element" should contain "false" + + @javascript + Scenario: Check enable Atto editor. + When I set the field "mycontrol" to "Enable" + Then "button.atto_collapse_button[disabled]" "css_element" should not exist + And "button.atto_title_button[disabled]" "css_element" should not exist + And "button.atto_bold_button_bold[disabled]" "css_element" should not exist + And "button.atto_italic_button_italic[disabled]" "css_element" should not exist + And "button.atto_unorderedlist_button_insertUnorderedList[disabled]" "css_element" should not exist + And "button.atto_orderedlist_button_insertOrderedList[disabled]" "css_element" should not exist + And "button.atto_link_button[disabled]" "css_element" should not exist + And "button.atto_link_button_unlink[disabled]" "css_element" should not exist + And "button.atto_image_button[disabled]" "css_element" should not exist + And the "contenteditable" attribute of "div#id_myeditoreditable" "css_element" should contain "true" diff --git a/lib/editor/atto/yui/build/moodle-editor_atto-editor/moodle-editor_atto-editor-debug.js b/lib/editor/atto/yui/build/moodle-editor_atto-editor/moodle-editor_atto-editor-debug.js index 90e0996d255..9fce41e80d3 100644 --- a/lib/editor/atto/yui/build/moodle-editor_atto-editor/moodle-editor_atto-editor-debug.js +++ b/lib/editor/atto/yui/build/moodle-editor_atto-editor/moodle-editor_atto-editor-debug.js @@ -227,6 +227,12 @@ Y.extend(Editor, Y.Base, { // Hide the old textarea. this.textarea.hide(); + // Set up custom event for editor updated. + Y.mix(Y.Node.DOM_EVENTS, {'form:editorUpdated': true}); + this.textarea.on('form:editorUpdated', function() { + this.updateEditorState(); + }, this); + // Copy the text to the contenteditable div. this.updateFromTextArea(); @@ -389,6 +395,20 @@ Y.extend(Editor, Y.Base, { } }, + /** + * Update the state of the editor. + */ + updateEditorState: function() { + var disabled = this.textarea.hasAttribute('readonly'), + editorfield = Y.one('#' + this.get('elementid') + 'editable'); + // Enable/Disable all plugins. + this._setPluginState(!disabled); + // Enable/Disable content of editor. + if (editorfield) { + editorfield.setAttribute('contenteditable', !disabled); + } + }, + /** * Register an event handle for disposal in the destructor. * diff --git a/lib/editor/atto/yui/build/moodle-editor_atto-editor/moodle-editor_atto-editor-min.js b/lib/editor/atto/yui/build/moodle-editor_atto-editor/moodle-editor_atto-editor-min.js index 22df82bad35..0bb143473a1 100644 --- a/lib/editor/atto/yui/build/moodle-editor_atto-editor/moodle-editor_atto-editor-min.js +++ b/lib/editor/atto/yui/build/moodle-editor_atto-editor/moodle-editor_atto-editor-min.js @@ -1,4 +1,4 @@ -YUI.add("moodle-editor_atto-editor",function(e,t){function s(){s.superclass.constructor.apply(this,arguments)}function f(){}function l(){}function d(){}function m(){m.superclass.constructor.apply(this,arguments),this._submitEvents={},this._queue=[],this._throttle=null}function g(){}function y(){}function b(){}function w(){}function E(){}function S(){}function x(){}function T(){}var n="moodle-editor_atto-editor",r={CONTENT:"editor_atto_content",CONTENTWRAPPER:"editor_atto_content_wrap",TOOLBAR:"editor_atto_toolbar",WRAPPER:"editor_atto",HIGHLIGHT:"highlight"},i=window.rangy;e.extend(s,e.Base,{BLOCK_TAGS:["address","article","aside","audio","blockquote","canvas","dd","div","dl","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","hr","noscript","ol","output","p","pre","section","table","tfoot","ul","video"],PLACEHOLDER_CLASS:"atto-tmp-class",ALL_NODES_SELECTOR:"[style],font[face]",FONT_FAMILY:"fontFamily",_wrapper:null,editor:null,textarea:null,textareaLabel:null,plugins:null,_eventHandles:null,initializer:function(){var t;this.textarea=e.one(document.getElementById(this.get("elementid")));if(!this.textarea)return;var n=this.textarea.getAttribute("class");this._eventHandles=[],this._wrapper=e.Node.create('
'),t=e.Handlebars.compile('"),this.editor=e.Node.create(t({elementid:this.get("elementid"),CSS:r})),this.textareaLabel=e.one('[for="'+this.get("elementid")+'"]'),this.textareaLabel&&(this.textareaLabel.generateID(),this.editor.setAttribute("aria-labelledby",this.textareaLabel.get("id"))),this.setupToolbar();var i=e.Node.create('');i.appendChild(this.editor),this._wrapper.appendChild(i),this.editor.setStyle("minHeight",20*this.textarea.getAttribute("rows")+8+"px"),e.UA.ie===0&&this.editor.setStyle("height",20*this.textarea.getAttribute("rows")+8+"px"),this.disableCssStyling(),document.queryCommandSupported("DefaultParagraphSeparator")&&document.execCommand("DefaultParagraphSeparator",!1,"p"),this.textarea.get("parentNode").insert(this._wrapper,this.textarea).setAttribute("class","editor_atto_wrap"),this.textarea.hide(),this.updateFromTextArea(),this.publishEvents(),this.setupSelectionWatchers(),this.setupAutomaticPolling(),this.setupPlugins(),this.setupAutosave(),this.setupNotifications()},focus:function(){return this.editor.focus(),this},publishEvents:function(){return this.publish("change",{broadcast:!0,preventable:!0}),this.publish("pluginsloaded",{fireOnce:!0}),this.publish("atto:selectionchanged",{prefix:"atto"}),this},setupAutomaticPolling:function(){return this._registerEventHandle(this.editor.on(["keyup","cut"],this.updateOriginal,this)),this._registerEventHandle(this.editor.on("paste",this.pasteCleanup,this)),this._registerEventHandle(this.editor.on("drop",this.updateOriginalDelayed,this)),this},updateOriginalDelayed:function(){return e.soon(e.bind(this.updateOriginal,this)),this},setupPlugins:function(){this.plugins={};var t=this.get("plugins"),n,r,i,s,o;for(n in t){r=t[n];if(!r.plugins)continue;for(i in r.plugins){s=r.plugins[i],o=e.mix({name:s.name,group:r.group,editor:this.editor,toolbar:this.toolbar,host:this},s);if(typeof e.M["atto_"+s.name]=="undefined")continue;this.plugins[s.name]=new e.M["atto_"+s.name].Button(o)}}return this.fire("pluginsloaded"),this},enablePlugins:function(e){this._setPluginState(!0,e)},disablePlugins:function(e){this._setPluginState(!1,e)},_setPluginState:function(t,n){var r="disableButtons";t&&(r="enableButtons"),n?this.plugins[n][r]():e.Object.each(this.plugins,function(e){e[r]()},this)},_registerEventHandle:function(e){this._eventHandles.push(e)}},{NS:"editor_atto",ATTRS:{elementid:{value:null,writeOnce:!0},contextid:{value:null,writeOnce:!0},plugins:{value:{},writeOnce:!0}}}),e.augment(s,e.EventTarget),e.namespace("M.editor_atto").Editor=s,e.namespace("M.editor_atto.Editor").init=function(t){return new e.M.editor_atto.Editor(t)};var o="moodle-editor_atto-editor-notify",u="info",a="warning";f.ATTRS={},f.prototype={messageOverlay:null,hideTimer:null,setupNotifications:function(){var e=new Image,t=new Image;return e.src=M.util.image_url("i/warning","moodle"),t.src=M.util.image_url("i/info","moodle"),this},showMessage:function(t,n,r){var i="",s,o;return this.messageOverlay===null&&(this.messageOverlay=e.Node.create(''),this.messageOverlay.hide(!0),this.textarea.get("parentNode").append(this.messageOverlay),this.messageOverlay.on("click",function(){this.messageOverlay.hide(!0)},this)),this.hideTimer!==null&&this.hideTimer.cancel(),n===a?i='"||e.result==="