ueditor.yoho.js
5.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
UE.registerUI('yohoLink',function(editor,uiName){
//注册按钮执行时的command命令,使用命令默认就会带有回退操作
editor.registerCommand(uiName,{
execCommand:function(value){
editor.insert(value);
console.log("exeCommand", uiName, "value", value);
}
});
//创建dialog
var dialog = new UE.ui.Dialog({
//指定弹出层中页面的路径,这里只能支持页面,因为跟addCustomizeDialog.js相同目录,所以无需加路径
iframeUrl: UEDITOR_CONFIG.UEDITOR_HOME_URL + 'dialogs/yohoLink/yohoLink.html?v=1',
//需要指定当前的编辑器实例
editor:editor,
//指定dialog的名字
name:uiName,
//dialog的标题
title:"yohoLink",
//指定dialog的外围样式
cssRules:"width:525px;height:200px;",
//如果给出了buttons就代表dialog有确定和取消
buttons:[
{
className:'edui-okbutton',
label:'确定',
onclick:function () {
editor.execCommand(uiName);
dialog.close(true);
editor.execCommand(uiName);
}
},
{
className:'edui-cancelbutton',
label:'取消',
onclick:function () {
dialog.close(false);
}
}
]});
var btn = new UE.ui.Button({
name:'dialogbutton' + uiName,
title:'dialogbutton' + uiName,
//需要添加的额外样式,指定icon图标,这里默认使用一个重复的icon
cssRules :'background-position: -500px 0;',
onclick:function () {
//渲染dialog
dialog.render();
dialog.open();
}
});
//当点到编辑内容上时,按钮要做的状态反射
editor.addListener('selectionchange', function () {
var start = editor.selection.getStart();
var text = editor.selection.getText();
// 选中文字或者图片
// if (start.tagName == 'IMG' || text.length > 0) {
// btn.setDisabled(false);
// } else {
// btn.setDisabled(true);
// }
});
return btn;
}/*index 指定添加到工具栏上的那个位置,默认时追加到最后,editorId 指定这个UI是那个编辑器实例上的,默认是页面上所有的编辑器都会添加这个按钮*/);
UE.registerUI('yohoProduct',function(editor,uiName){
//注册按钮执行时的command命令,使用命令默认就会带有回退操作
editor.registerCommand(uiName,{
execCommand:function(value){
editor.insert(value);
console.log("exeCommand", uiName, "value", value);
}
});
//创建dialog
var dialog = new UE.ui.Dialog({
//指定弹出层中页面的路径,这里只能支持页面,因为跟addCustomizeDialog.js相同目录,所以无需加路径
iframeUrl: UEDITOR_CONFIG.UEDITOR_HOME_URL + 'dialogs/yohoproduct/yohoProduct.html?v=1',
//需要指定当前的编辑器实例
editor:editor,
//指定dialog的名字
name:uiName,
//dialog的标题
title:"yohoProduct",
//指定dialog的外围样式
cssRules:"width:825px;height:400px;",
//如果给出了buttons就代表dialog有确定和取消
buttons:[
{
className:'edui-okbutton',
label:'确定',
onclick:function () {
editor.execCommand(uiName);
dialog.close(true);
editor.execCommand(uiName);
}
},
{
className:'edui-cancelbutton',
label:'取消',
onclick:function () {
dialog.close(false);
}
}
]});
var btn = new UE.ui.Button({
name:'dialogbutton' + uiName,
title: uiName,
//需要添加的额外样式,指定icon图标,这里默认使用一个重复的icon
cssRules :'background-position: -422px -20px;',
onclick:function () {
//渲染dialog
dialog.render();
dialog.open();
}
});
//当点到编辑内容上时,按钮要做的状态反射
editor.addListener('selectionchange', function () {
var start = editor.selection.getStart();
var text = editor.selection.getText();
// 选中文字或者图片
// if (start.tagName == 'IMG' || text.length > 0) {
// btn.setDisabled(false);
// } else {
// btn.setDisabled(true);
// }
});
//整个商品删除
editor.addListener('delkeydown',function(type,evt){
debugger
var rng = this.selection.getRange();
var start = rng.startContainer;
var tar = start.parentNode;
while (true) {
if (tar === editor.body) {
tar = null;
break;
}
if (tar.className === 'yhproduct') break;
tar = tar.parentNode;
}
if (tar) tar.parentNode.removeChild(tar);
});
return btn;
});