You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
3.9 KiB
144 lines
3.9 KiB
define([ |
|
"dojo", |
|
"dijit", |
|
"dojox", |
|
"dijit/_editor/_Plugin", |
|
"dijit/form/Button", |
|
"dojo/_base/connect", |
|
"dojo/_base/declare", |
|
"dojo/i18n", |
|
"dojo/i18n!dojox/editor/plugins/nls/Save" |
|
], function(dojo, dijit, dojox, _Plugin) { |
|
|
|
var Save = dojo.declare("dojox.editor.plugins.Save", _Plugin, { |
|
// summary: |
|
// This plugin provides Save capability to the editor. When |
|
// clicked, the document in the editor frame will be posted to the URL |
|
// provided, or none, if none provided. Users who desire a different save |
|
// function can extend this plugin (via dojo.extend) and over-ride the |
|
// save method while save is in process, the save button is disabled. |
|
|
|
// iconClassPrefix: [const] String |
|
// The CSS class name for the button node is formed from `iconClassPrefix` |
|
// and `command` |
|
iconClassPrefix: "dijitAdditionalEditorIcon", |
|
|
|
// url: [public] String |
|
// The URL to POST the content back to. Used by the save function. |
|
url: "", |
|
|
|
// logResults: [public] boolean |
|
// Boolean flag to indicate that the default action for save and |
|
// error handlers is to just log to console. Default is true. |
|
logResults: true, |
|
|
|
_initButton: function(){ |
|
// summary: |
|
// Over-ride for creation of the save button. |
|
var strings = dojo.i18n.getLocalization("dojox.editor.plugins", "Save"); |
|
this.button = new dijit.form.Button({ |
|
label: strings["save"], |
|
showLabel: false, |
|
iconClass: this.iconClassPrefix + " " + this.iconClassPrefix + "Save", |
|
tabIndex: "-1", |
|
onClick: dojo.hitch(this, "_save") |
|
}); |
|
}, |
|
|
|
updateState: function(){ |
|
// summary: |
|
// Over-ride for button state control for disabled to work. |
|
this.button.set("disabled", this.get("disabled")); |
|
}, |
|
|
|
setEditor: function(editor){ |
|
// summary: |
|
// Over-ride for the setting of the editor. |
|
// editor: Object |
|
// The editor to configure for this plugin to use. |
|
this.editor = editor; |
|
this._initButton(); |
|
}, |
|
|
|
_save: function(){ |
|
// summary: |
|
// Function to trigger saving of the editor document |
|
// tags: |
|
// private |
|
var content = this.editor.get("value"); |
|
this.save(content); |
|
}, |
|
|
|
save: function(content){ |
|
// summary: |
|
// User over-ridable save function for the editor content. |
|
// Please note that the service URL provided should do content |
|
// filtering of the posted content to avoid XSS injection via |
|
// the data from the editor. |
|
// tags: |
|
// public |
|
|
|
// Set the default header to post as a body of text/html. |
|
var headers = { |
|
"Content-Type": "text/html" |
|
}; |
|
if(this.url){ |
|
var postArgs = { |
|
url: this.url, |
|
postData: content, |
|
headers: headers, |
|
handleAs: "text" |
|
}; |
|
this.button.set("disabled", true); |
|
var deferred = dojo.xhrPost(postArgs); |
|
deferred.addCallback(dojo.hitch(this, this.onSuccess)); |
|
deferred.addErrback(dojo.hitch(this, this.onError)); |
|
}else{ |
|
console.log("No URL provided, no post-back of content: " + content); |
|
} |
|
}, |
|
|
|
onSuccess: function(resp, ioargs){ |
|
// summary: |
|
// User over-ridable save success function for editor content. |
|
// Be sure to call this.inherited(arguments) if over-riding this method. |
|
// resp: |
|
// The response from the server, if any, in text format. |
|
// tags: |
|
// public |
|
this.button.set("disabled", false); |
|
if(this.logResults){ |
|
console.log(resp); |
|
} |
|
}, |
|
|
|
onError: function(error, ioargs){ |
|
// summary: |
|
// User over-ridable save success function for editor content. |
|
// Be sure to call this.inherited(arguments) if over-riding this method. |
|
// resp: |
|
// The response from the server, if any, in text format. |
|
// tags: |
|
// public |
|
this.button.set("disabled", false); |
|
if(this.logResults){ |
|
console.log(error); |
|
} |
|
} |
|
}); |
|
|
|
// Register this plugin. |
|
dojo.subscribe(dijit._scopeName + ".Editor.getPlugin",null,function(o){ |
|
if(o.plugin){ return; } |
|
var name = o.args.name.toLowerCase(); |
|
if(name === "save"){ |
|
o.plugin = new Save({ |
|
url: ("url" in o.args)?o.args.url:"", |
|
logResults: ("logResults" in o.args)?o.args.logResults:true |
|
}); |
|
} |
|
}); |
|
|
|
return Save; |
|
|
|
});
|
|
|