扩展一下FCK HtmlEditor 增加图片上传、代码插入功能

  Ext自己带了一个HtmlEditor,具备基本的编辑功能,而且使用起来非常方便,在web应用起来感觉还不错,但是他缺少了上传功能,这样使得编辑文字的时候不能图文并茂,写一个小工程个人认为不需要集成FCK或者其他的编辑器,使用这个足矣,所以在闲暇之余给HtmlEditor写了一个扩展代码,使得htmlEditor具备图片上传功能,并及时给图片插入到文字中间,代码如下:

Js代码 复制代码
  1. HTMLEditor=Ext.extend(Ext.form.HtmlEditor,{   
  2.      codeStyle:'<br/><pre style="border-right: #999999 1px dotted; padding-right: 5px; border-top: #999999 1px dotted; padding-left: 5px; font-size: 12px; padding-bottom: 5px; margin-left: 10px; border-left: #999999 1px dotted; margin-right: 10px; padding-top: 5px; border-bottom: #999999 1px dotted; background-color: #eeeeee">{0}</pre><br/>',   
  3.      onRender : function(ct, position){        
  4.          HTMLEditor.superclass.onRender.call(this, ct, position);   
  5.          if(this.keys){   
  6.             if(!this.keys.length){   
  7.             this.keyMap = new Ext.KeyMap(this.getEditorBody(), this.keys);   
  8.             }   
  9.             else{                  
  10.                 this.keyMap = new Ext.KeyMap(this.getEditorBody(),this.keys[0]);   
  11.                 for(var i=1;i<this.keys.length;i++)this.keyMap.addBinding(this.keys[i]);   
  12.             }   
  13.             this.keyMap.stopEvent=true;   
  14.          }   
  15.      },   
  16.        addImage:function(){   
  17.         function insertImage(){   
  18.             var editor=this;   
  19.             //editor.insertAtCursor("<br/><img src='upload/IMG_1198.JPG'/></br>");   
  20.             win.upload(function(ret){   
  21.                 if(ret){                       
  22.                     s="<br/><img src="+ret.path;   
  23.                     if(ret.width)s+=" width="+ret.width;   
  24.                     if(ret.height)s+=" height="+ret.height;   
  25.                     s+=" /><br/>";   
  26.                     editor.insertAtCursor(s);   
  27.                     win.close();   
  28.                 }                  
  29.                 });   
  30.         };   
  31.     var win=new UploadImageWindow({modal:false,iconCls:"icon-img",   
  32.         buttons:[{text:"确定",handler:insertImage,scope:this},{text:"取消",handler:function(){win.close();}}]});   
  33.         win.show();   
  34.     },   
  35.     addCode:function(){   
  36.         function insertCode(){   
  37.             var value=win.getComponent("codes").getValue();   
  38.             this.insertAtCursor(String.format(this.codeStyle,value));   
  39.             win.close();   
  40.         };   
  41.         var win=new Ext.Window({title:"添加代码",   
  42.                 width:500,   
  43.                 height:300,   
  44.                 modal:true,   
  45.                 iconCls:"icon-code",   
  46.                 layout:"fit",   
  47.                 items:{xtype:"textarea",id:"codes"},   
  48.                 buttons:[{text:"确定",handler:insertCode,scope:this},{text:"取消",handler:function(){win.close();}}]});   
  49.         win.show();   
  50.     },     
  51.     createToolbar:function(editor){   
  52.         HTMLEditor.superclass.createToolbar.call(this,editor);   
  53.         this.tb.insertButton(16,{cls:"x-btn-icon",   
  54.             icon:"resources/resources/images/default/dd/img.png",handler:this.addImage,scope:this});       
  55.         this.tb.insertButton(18,{cls:"x-btn-icon",   
  56.             icon:"resources/resources/images/default/dd/code.png",handler:this.addCode,scope:this});   
  57.                    
  58.     },   
  59.     validateValue : function(value){   
  60.          if(value.length > this.maxLength){   
  61.             var s=String.format(this.maxLengthText, this.maxLength);   
  62.             this.markInvalid(s);   
  63.             return false;   
  64.         }   
  65.          return true;   
  66.     }   
  67. });   
  68. UploadImageWindow=Ext.extend(Ext.Window,{   
  69.     title : '上传图片',        
  70.     width : 345,               
  71.     height : 210,      
  72.     defaults : {               
  73.         border : false  
  74.     },   
  75.     buttonAlign : 'center',    
  76.     createFormPanel :function() {   
  77.         return new Ext.form.FormPanel({            
  78.             defaultType : 'textfield',   
  79.             labelAlign : 'right',   
  80.             fileUpload:true,   
  81.             labelWidth : 75,               
  82.             frame : true,   
  83.             defaults : {               
  84.                 width : 220        
  85.             },   
  86.             items : [{                     
  87.                     name : 'pathFile',   
  88.                     fieldLabel : '选择图片',   
  89.                     inputType : 'file'  
  90.                     },   
  91.                     {                      
  92.                         name : 'title',   
  93.                         fieldLabel : '说明'  
  94.                     },   
  95.                     {                      
  96.                         name : 'path',   
  97.                         fieldLabel : 'URL'                 
  98.                     },   
  99.                     {   
  100.                         name : 'width',   
  101.                         fieldLabel : '宽度',   
  102.                         value:'240'                
  103.                     },   
  104.                     {   
  105.                         name : 'height',   
  106.                         fieldLabel : '高度',   
  107.                         value:'200'            
  108.                     }   
  109.                 ]   
  110.         });   
  111.     },                     
  112.     upload:function(fn) {   
  113.             this.fp.form.submit({   
  114.                     waitTitle:"Ժ",   
  115.                     waitMsg : '正在上传......',   
  116.                     method:"POST",   
  117.                     url : 'xxxx',//上传的action   
  118.                     success : function(form, action) {   
  119.                         this.fp.form.findField("path").setValue("/upload/"+action.result.data.path);   
  120.                         var obj={title:this.fp.form.findField("title").getValue(),   
  121.                            path:this.fp.form.findField("path").getValue(),   
  122.                            width:this.fp.form.findField("width").getValue(),   
  123.                            height:this.fp.form.findField("height").getValue()   
  124.                            }                   
  125.                         fn(obj);                           
  126.                     },   
  127.                     failure : function(form, action) {                         
  128.                         if (action.failureType == Ext.form.Action.SERVER_INVALID)   
  129.                             Ext.MessageBox.alert('', action.result.errors.msg);   
  130.                         fn(false);                 
  131.                     },   
  132.                     scope:this  
  133.                 });   
  134.         },   
  135.     initComponent : function(){   
  136.         UploadImageWindow.superclass.initComponent.call(this);          
  137.         this.fp=this.createFormPanel();   
  138.         this.add(this.fp);   
  139.      }     
  140.  });    
  141. //   
  142. Ext.reg('myhtmleditor',HTMLEditor);  
HTMLEditor=Ext.extend(Ext.form.HtmlEditor,{
	 codeStyle:'<br/><pre style="border-right: #999999 1px dotted; padding-right: 5px; border-top: #999999 1px dotted; padding-left: 5px; font-size: 12px; padding-bottom: 5px; margin-left: 10px; border-left: #999999 1px dotted; margin-right: 10px; padding-top: 5px; border-bottom: #999999 1px dotted; background-color: #eeeeee">{0}</pre><br/>',
	 onRender : function(ct, position){	 	
	 	 HTMLEditor.superclass.onRender.call(this, ct, position);
	 	 if(this.keys){
	 	 	if(!this.keys.length){
	 	 	this.keyMap = new Ext.KeyMap(this.getEditorBody(), this.keys);
	 	 	}
	 	 	else{	 	 		
	 	 		this.keyMap = new Ext.KeyMap(this.getEditorBody(),this.keys[0]);
	 	 		for(var i=1;i<this.keys.length;i++)this.keyMap.addBinding(this.keys[i]);
	 	 	}
	 	 	this.keyMap.stopEvent=true;
	 	 }
	 },
       addImage:function(){
		function insertImage(){
			var editor=this;
			//editor.insertAtCursor("<br/><img src='upload/IMG_1198.JPG'/></br>");
			win.upload(function(ret){
				if(ret){					
					s="<br/><img src="+ret.path;
					if(ret.width)s+=" width="+ret.width;
					if(ret.height)s+=" height="+ret.height;
					s+=" /><br/>";
					editor.insertAtCursor(s);
					win.close();
				}				
				});
		};
	var win=new UploadImageWindow({modal:false,iconCls:"icon-img",
		buttons:[{text:"确定",handler:insertImage,scope:this},{text:"取消",handler:function(){win.close();}}]});
		win.show();
	},
	addCode:function(){
		function insertCode(){
			var value=win.getComponent("codes").getValue();
			this.insertAtCursor(String.format(this.codeStyle,value));
			win.close();
		};
		var win=new Ext.Window({title:"添加代码",
				width:500,
				height:300,
				modal:true,
				iconCls:"icon-code",
				layout:"fit",
				items:{xtype:"textarea",id:"codes"},
				buttons:[{text:"确定",handler:insertCode,scope:this},{text:"取消",handler:function(){win.close();}}]});
		win.show();
	},	
	createToolbar:function(editor){
		HTMLEditor.superclass.createToolbar.call(this,editor);
		this.tb.insertButton(16,{cls:"x-btn-icon",
			icon:"resources/resources/images/default/dd/img.png",handler:this.addImage,scope:this});	
		this.tb.insertButton(18,{cls:"x-btn-icon",
			icon:"resources/resources/images/default/dd/code.png",handler:this.addCode,scope:this});
				
	},
	validateValue : function(value){
		 if(value.length > this.maxLength){
		 	var s=String.format(this.maxLengthText, this.maxLength);
            this.markInvalid(s);
            return false;
        }
		 return true;
	}
});
UploadImageWindow=Ext.extend(Ext.Window,{
 	title : '上传图片',		
	width : 345,			
	height : 210,	
	defaults : {			
		border : false
	},
	buttonAlign : 'center',	
	createFormPanel :function() {
		return new Ext.form.FormPanel({			
			defaultType : 'textfield',
			labelAlign : 'right',
			fileUpload:true,
			labelWidth : 75,			
			frame : true,
			defaults : {			
				width : 220		
			},
			items : [{					
					name : 'pathFile',
					fieldLabel : '选择图片',
					inputType : 'file'
					},
					{					
						name : 'title',
						fieldLabel : '说明'
					},
					{					
						name : 'path',
						fieldLabel : 'URL'				
					},
					{
						name : 'width',
						fieldLabel : '宽度',
						value:'240'				
					},
					{
						name : 'height',
						fieldLabel : '高度',
						value:'200'			
					}
				]
		});
	},					
	upload:function(fn) {
			this.fp.form.submit({
					waitTitle:"Ժ",
					waitMsg : '正在上传......',
					method:"POST",
					url : 'xxxx',//上传的action
					success : function(form, action) {
						this.fp.form.findField("path").setValue("/upload/"+action.result.data.path);
						var obj={title:this.fp.form.findField("title").getValue(),
						   path:this.fp.form.findField("path").getValue(),
						   width:this.fp.form.findField("width").getValue(),
						   height:this.fp.form.findField("height").getValue()
						   }				
						fn(obj);						
					},
					failure : function(form, action) {						
						if (action.failureType == Ext.form.Action.SERVER_INVALID)
							Ext.MessageBox.alert('', action.result.errors.msg);
						fn(false);				
					},
					scope:this
				});
		},
	initComponent : function(){
        UploadImageWindow.superclass.initComponent.call(this);       
        this.fp=this.createFormPanel();
        this.add(this.fp);
	 } 	
 }); 
//
Ext.reg('myhtmleditor',HTMLEditor);

 

 

 使用Ext.extends来扩展一下自定义的htmlEditor,在扩展中,首先建立一个窗口,在图片上传窗口中很简单,就是再次建立一个上传的FormPanel,获取这个表单上传的结果(结果为js数组或者json)。在最后在使用Ext.reg('myhtmleditor',HTMLEditor)注册一下自定义的htmlEditor名称为myhtmleditor,这样在代码中就可以使用myhtmleditor类型了,如下代码:

Java代码 复制代码
  1. {   
  2. xtype:"myhtmleditor",   
  3. name:"content",   
  4. value:"",   
  5. fieldLabel:"内容",   
  6. width:550,   
  7. height:400  
  8. }  
{
xtype:"myhtmleditor",
name:"content",
value:"",
fieldLabel:"内容",
width:550,
height:400
}

 运行结果如下:
 

整体截图



 图片上传图片窗口


 

代码插入窗口

其实扩展Ext的组件很简单,例如还需要继续扩展HtmlEditor,可以在插入图片创建的window中重新,自己可以任意定义图片插入的窗口,可以设定任何属性,然后给相应的值转化为相应的html代码插入到htmleditor中就可以了!插入代码的过程更加简单,就是向htmlEditor中插入相应的css代码,并给用户的代码嵌入到css中!

  • 大小: 11.2 KB

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值