rs.tipspanel.js
5.65 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/**
* rs_tipspanel - Runsa Plugin
*
* Dependencies:
* rs_load
*/
(function($) {
var tipspanelId="gen_rs_tipspanel";
function warpPanel(container) {
var opts = $.data(container, 'rs_tipspanel');
var cc = $(container);
cc.addClass('rs-tipspanel');
var ghost=$('<div id="'+getGhostId(opts)+'" class="rs-tipspanel-ghost"></div>').appendTo(document.body);
var body=$('<div class="tipspanel-body"></div>').appendTo(ghost);
if(opts.cls){
ghost.addClass(opts.cls);
}
$.data(ghost[0], 'rs_tipspanel',container);
if(opts.arrow){
var arrow=$('<div class="arrow"></div>').appendTo(ghost);
if(opts.arrowCls){
arrow.addClass(opts.arrowCls);
}
}
setSize(container);
opts.onWrap.call(container,ghost[0]);
}
function initEvent(container){
var opts = $.data(container, 'rs_tipspanel');
var ghostId=getGhostId(opts);
var ghost=$("#"+ghostId);
// ghost.unbind(".rs_tipspanel").bind("click.rs_tipspanel",function(){
// opts.onClick.call(container);
// });
$(document).bind('mousedown.'+ghostId+' mousewheel.'+ghostId,function(e){
var target=$(e.target);
var p=target.closest(".rs-tipspanel-ghost,.rs-tipspanel");
if (p.length==0){
var ghost=$('#'+e.handleObj.namespace);
if(ghost.is(":visible")){
ghost.hide();
opts.onHide.call();
}
}
});
}
function setSize(container){
var opts = $.data(container, 'rs_tipspanel');
var ghost=$("#"+getGhostId(opts));
var body=ghost.children(".tipspanel-body");
var arrow = ghost.children('.arrow');
if (opts.width && opts.width > 0) {
body.width(opts.width);
}
if (opts.height && opts.height > 0) {
body.height(opts.height);
body.attr("data-options",opts.height);
}
arrow.css({top : 5,left:5});
}
function setPosition(container) {
var opts = $.data(container, 'rs_tipspanel');
var cc=$(container);
var ghost=$("#"+getGhostId(opts));
var top=getTop();
var left=getLeft();
var offset={left:left,top:top};
opts.onOffset.call(container,offset);
ghost.css(offset);
function getLeft(){
var left = cc.offset().left;
var width=$(window).width()|| document.body.clientWidth;
if (left + ghost.outerWidth() > width + $(document).scrollLeft()){
left = width + $(document).scrollLeft() - ghost.outerWidth();
}
if (left < 0){
left = 0;
}
return left;
}
function getTop(){
var top = cc.offset().top + cc.outerHeight();
var height=$(window).height()||document.body.clientHeight;
if (top+ ghost.outerHeight() > height + $(document).scrollTop()){
top = cc.offset().top - ghost.outerHeight();
}
if (top < $(document).scrollTop()){
top = cc.offset().top + cc.outerHeight();
}
return top;
}
}
function show(container){
var opts = $.data(container, 'rs_tipspanel');
var ghost=$("#"+getGhostId(opts));
if(ghost.is(":visible")){
ghost.hide();
opts.onHide.call();
}
else{
setPosition(container);
ghost.show();
opts.onShow.call();
}
}
function hide(container){
var ghost=$("#"+getGhostId(container));
if(ghost.is(":visible")){
ghost.hide();
}
}
function visible(container){
var opts = $.data(container, 'rs_tipspanel');
var ghost=$("#"+getGhostId(opts));
return ghost.is(":visible");
}
function destroy(container){
var opts = $.data(container, 'rs_tipspanel');
var cc=$(container);
var ghostId=getGhostId(opts);
var ghost=$("#"+ghostId);
if(ghost.is(".rs-load")){
ghost.rs_load("destroy");
}
ghost.unbind(".rs_tipspanel");
ghost.remove();
$(document).unbind('.'+ghostId);
$.removeData(container, 'rs_tipspanel');
cc.removeClass("rs-tipspanel");
}
function instance(container){
var ghost=$("#"+getGhostId(container));
return ghost.children(".tipspanel-body");
}
function getGhostId(container){
var opts;
if(container.constructor==Object){
opts=container;
}else{
opts = $.data(container, 'rs_tipspanel');
}
return tipspanelId+opts.idSeed;
}
function loading(container){
var ghost=$("#"+getGhostId(container));
if(!ghost.is(":visible")){
show(container);
}
if(!ghost.is(".rs-load")){
ghost.rs_load();
}
ghost.rs_load("show");
}
function loaded(container){
var ghost=$("#"+getGhostId(container));
if(ghost.is(".rs-load")){
ghost.rs_load("hide");
}
}
$.fn.rs_tipspanel = function(options, param) {
if (typeof options == 'string') {
return $.fn.rs_tipspanel.methods[options](this, param);
}
options = options || {};
return this.each(function() {
var state = $.data(this, 'rs_tipspanel');
if (state) {
$.extend(state, options);
} else {
var opts = $.extend({},$.fn.rs_tipspanel.defaults,options);
$.data(this, 'rs_tipspanel', opts);
}
warpPanel(this);
initEvent(this);
$.fn.rs_tipspanel.defaults.idSeed++;
});
};
$.fn.rs_tipspanel.methods = {
loading : function(jq){
return jq.each(function() {
loading(this);
});
},
loaded : function(jq){
return jq.each(function() {
loaded(this);
});
},
inst : function(jq){
return instance(jq[0]);
},
ghostId:function(jq){
return getGhostId(jq[0]);
},
position: function(jq) {
return jq.each(function() {
setPosition(this);
});
},
show : function(jq) {
return jq.each(function() {
show(this);
});
},
hide : function(jq) {
return jq.each(function() {
hide(this);
});
},
visible : function(jq) {
return visible(jq[0]);
},
destroy : function(jq) {
return jq.each(function() {
destroy(this);
});
}
};
$.fn.rs_tipspanel.defaults = {
width : null,
height : null,
arrow:true,
arrowCls:null,
cls:null,
idSeed:1,
onOffset:function(offset){},
onWrap:function(ghost){},
// onClick:function(){},
onShow:function(){},
onHide:function(){}
};
})(jQuery);