123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- MWF.xApplication.portal.PageDesigner.Module.Application = MWF.PCApplication = new Class({
- Extends: MWF.FC$Element,
- Implements: [Options, Events],
- options: {
- "style": "default",
- "propertyPath": "../x_component_portal_PageDesigner/Module/Application/application.html",
- },
-
- initialize: function(form, options){
- this.setOptions(options);
-
- this.path = "../x_component_portal_PageDesigner/Module/Application/";
- this.cssPath = "../x_component_portal_PageDesigner/Module/Application/"+this.options.style+"/css.wcss";
- this._loadCss();
- this.moduleType = "component";
- this.moduleName = "application";
-
- this.Node = null;
- this.form = form;
- this.page = form;
- },
- load : function(json, node, parent){
- this.json = json;
- this.node= node;
- this.node.store("module", this);
- //this.node.empty();
- this.node.setStyles(this.css.moduleNode);
- //this._loadNodeStyles();
- this._initModule();
- this.loadApplication();
- this._loadTreeNode(parent);
- this.setCustomStyles();
- this.parentContainer = this.treeNode.parentNode.module;
- this._setEditStyle_custom("id");
- this.parseModules();
- this.json.moduleName = this.moduleName;
- // this.node.addEvent("click", function(){
- // this.refreshApplication();
- // }.bind(this));
- // this.node.addEvent("dblclick", function(e){
- // this.openApplication(e);
- // }.bind(this));
- },
- _initModule: function(){
- if (!this.json.isSaved) this.setStyleTemplate();
- //this._resetModuleDomNode();
- this.setPropertiesOrStyles("styles");
- this.setPropertiesOrStyles("properties");
- this._setNodeProperty();
- if (!this.form.isWidget) this._createIconAction();
- this._setNodeEvent();
- this.json.isSaved = true;
- this.queryGetPageDataFun = this.queryGetPageData.bind(this);
- this.postGetPageDataFun = this.postGetPageData.bind(this);
- this.page.addEvent("queryGetPageData", this.queryGetPageDataFun);
- this.page.addEvent("postGetPageData", this.postGetPageDataFun);
- },
- _createMoveNode: function(){
- this.moveNode = new Element("div", {
- "MWFType": "application",
- "id": this.json.id,
- "styles": this.css.moduleNodeMove,
- "events": {
- "selectstart": function(){
- return false;
- }
- }
- }).inject(this.page.container);
- },
- _getDroppableNodes: function(){
- var nodes = [this.form.node].concat(this.form.moduleElementNodeList, this.form.moduleContainerNodeList, this.form.moduleComponentNodeList);
- this.form.moduleList.each( function(module){
- //不能往数据模板里拖
- if( module.moduleName === "datatemplate" ){
- var subDoms = this.form.getModuleNodes(module.node);
- nodes.erase( module.node );
- subDoms.each(function (dom) {
- nodes.erase( dom );
- })
- }
- }.bind(this));
- return nodes;
- },
- _createNode: function(){
- this.node = this.moveNode.clone(true, true);
- this.node.setStyles(this.css.moduleNode);
- this.node.set("id", this.json.id);
- this.node.addEvent("selectstart", function(){
- return false;
- });
- // debugger;
- // if (this.json.applicationSelected && this.json.applicationSelected!="none" && this.json.applicationType!=="script"){
- // this.redoSelectedApplication(this.json.applicationSelected, $(this.property.data.pid+"selectApplication").getElement("select"), "");
- // }else{
- this.loadIcon();
- // }
- // this.node.addEvent("click", function(){
- // this.refreshApplication();
- // }.bind(this));
- //
- // debugger;
- // this.node.addEvent("dblclick", function(e){
- // this.openApplication(e);
- // }.bind(this));
- },
- postGetPageData: function(node){
- if ((!node || node.contains(this.node)) && this.show) this.show();
- },
- queryGetPageData: function(node){
- if ((!node || node.contains(this.node)) && this.hide) this.hide();
- },
- hide: function(){
- this.clean();
- this.node.empty();
- },
- show: function(){
- this.loadApplication()
- },
- "delete": function(e){
- var module = this;
- this.page.designer.shortcut = false;
- this.page.designer.confirm("warn", module.node, MWF.APPPOD.LP.notice.deleteElementTitle, MWF.APPPOD.LP.notice.deleteElement, 300, 120, function(){
- if (module.queryGetPageDataFun) module.page.removeEvent("queryGetPageData", module.queryGetPageDataFun);
- if (module.postGetPageDataFun) module.page.removeEvent("postGetPageData", module.postGetPageDataFun);
- module.page.selected();
- module.page.designer.shortcut = true;
- module.destroy();
- this.close();
- }, function(){
- module.page.designer.shortcut = true;
- this.close();
- }, null);
- },
- refreshApplication: function(){
- this.loadApplication()
- },
- loadIcon: function(){
- this.iconNode = new Element("div", {
- "styles": this.css.iconNode
- }).inject(this.node);
- new Element("div", {
- "styles": this.css.iconNodeIcon
- }).inject(this.iconNode);
- new Element("div", {
- "styles": this.css.iconNodeText,
- "text": "Application"
- }).inject(this.iconNode);
- },
- _loadNodeStyles: function(){
- this.iconNode = this.node.getElement("div").setStyles(this.css.iconNode);
- this.iconNode.getFirst("div").setStyles(this.css.iconNodeIcon);
- this.iconNode.getLast("div").setStyles(this.css.iconNodeText);
- },
- _setEditStyle_custom: function(name, input, oldValue){
- if (name==="componentSelected"){
- if (this.json.componentSelected!==oldValue){
- this.loadApplication();
- }
- }
- if (name==="componentType"){
- if (this.json.componentType!==oldValue){
- this.loadApplication();
- }
- }
- },
- openApplication: function(e){
- if (this.json.componentSelected && this.json.componentSelected!=="none" && this.json.componentType!=="script"){
- layout.desktop.openApplication(e, this.json.componentSelected);
- }
- },
- clean: function(){
- if(this.application){
- try{
- this.application.close();
- }catch (e) {}
- this.application = null;
- }
- if( this.iframe ){
- this.iframe.destroy();
- this.iframe = null;
- }
- this.destroyMask();
- },
- loadApplication: function ( ) {
- if(this.node)this.node.empty();
- this.clean();
- var status = this.json.statusType === "map" ? this.json.statusMapList : {};
- var options = this.json.optionsType === "map" ? this.json.optionsMapList : {};
- if (this.json.componentSelected && this.json.componentSelected!=="none" && this.json.componentType!=="script"){
- var componentPath = this.json.componentSelected;
- if( componentPath.indexOf("@url:") === 0 ){
- this._loadIframe( componentPath.substring(5, componentPath.length ) );
- }else{
- this._loadApplication( componentPath, status, options );
- }
- }else{
- this.loadIcon();
- }
- },
- _loadIframe: function( src ){
- var attr = {
- "src": src,
- "width": "100%",
- "height": "100%",
- "frameborder": "0px",
- "scrolling": "auto",
- "seamless": "seamless"
- };
- this.iframe = new Element("iframe", attr).inject( this.node );
- this.loadMask();
- },
- _loadApplication: function ( app, status, options ) {
- var clazz = MWF.xApplication;
- app.split(".").each(function (a) {
- clazz[a] = clazz[a] || {};
- clazz = clazz[a];
- });
- clazz.options = clazz.options || {};
- var _load = function () {
- if( clazz.Main ){
- var opt = options || {};
- opt.embededParent = new Element("div").inject(this.node);
- this.application = new clazz.Main(this.form.designer.desktop, opt);
- this.application.status = status;
- this.application.load();
- this.application.setEventTarget(this.form.designer);
- this.loadMask();
- }else{
- this.form.designer.notice(this.form.designer.lp.applicationNotFound+":"+app, "error");
- }
- }.bind(this);
- try{
- MWF.xDesktop.requireApp(app, "lp."+o2.language, null, false);
- MWF.xDesktop.requireApp(app, "Main", null, false);
- if (clazz.loading && clazz.loading.then){
- clazz.loading.then(function(){
- _load();
- });
- }else{
- _load();
- }
- }catch (e) {
- this.form.designer.notice( e.message, "error" );
- }
- },
- loadMask: function(){
- this.destroyMask();
- this.maskIframeNode = new Element("iframe.maskNode", {styles : this.css.maskIframeNode}).inject( this.node );
- this.maskNode = new Element("div.maskNode", {styles : this.css.maskNode}).inject( this.node );
- },
- destroyMask: function(){
- if(this.maskIframeNode){
- this.maskIframeNode.destroy();
- this.maskIframeNode = null;
- }
- if(this.maskNode){
- this.maskNode.destroy();
- this.maskNode = null;
- }
- },
- destroy: function(){
- this.form.moduleList.erase(this);
- this.form.moduleNodeList.erase(this.node);
- this.form.moduleElementNodeList.erase(this.node);
- if (this.form.scriptDesigner){
- this.form.scriptDesigner.removeModule(this.json);
- }
- if (this.property) this.property.destroy();
- this.node.destroy();
- this.actionArea.destroy();
- delete this.form.json.moduleList[this.json.id];
- this.json = null;
- delete this.json;
- this.treeNode.destroy();
- this.clean();
- o2.release(this);
- }
- });
|