-
Notifications
You must be signed in to change notification settings - Fork 0
/
oreasmenu-prototype.js
299 lines (277 loc) · 9.22 KB
/
oreasmenu-prototype.js
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/**
* Gerador de menus javascript - prototype version.
*
* @author Sergio
*/
/**
* @base MenuItem
*
* Construir o item de menu na tela
* @returns void
*/
MenuItem.prototype.buildItem = function () {
if (!this.divMenuItem) {
var nivel = this.getNivel();
var div = new Element("div", {style: "margin: 0px;"});
div.setStyle(this.getDimensions());
if (this.toolTip) {
div.title = this.toolTip;
}
if (this.imagem) {
var estilo = "margin-right: 5px; float:left; ";
div.appendChild(new Element("div", {style: estilo}).update(this.getImageLink()));
}
var adicionarSeta = nivel.imagemSeta && this.hasChildNodes();
/**
* @type HTMLDivElement
*/
var divLinkTitulo = this.getDivLinkTitulo();
if (adicionarSeta) {
var estiloLink = new Hash();
estiloLink.set("float", "left");
if (this.imagem) {
estiloLink.set("width", "70%");
}
divLinkTitulo.setStyle(estiloLink.toObject());
div.appendChild(divLinkTitulo);
} else {
div.appendChild(divLinkTitulo);
}
if (adicionarSeta) {
div.appendChild(new Element("div", {style: "margin-left:auto; width: 4px; width: 10%;"}).update(
new Element("img", {
src: nivel.imagemSeta,
style: "vertical-align:middle; margin-top:5px; margin-bottom:5px;"
})
));
}
div.addClassName(nivel.estilo);
this.divMenuItem = div;
this.adicionarEventosCustom();
if (this.align) {
div.setStyle({textAlign: this.align});
}
var novaDiv = null;
var estiloDiv = "";
if (this.isHorizontal()) {
estiloDiv = "float: left;";
}
if (this.elementoInicial) {
novaDiv = new Element("div", {className: this.menuGroup + "-cmMenuBorder", style: estiloDiv}).update(div);
this.insertNivelZeroMenu(novaDiv);
} else if (this.parentMenuItem) {
div.setStyle({clear: "both"});
novaDiv = new Element("div", {style: "margin:1px;" + estiloDiv}).update(div);
this.parentMenuItem.addChildDiv(novaDiv);
}
novaDiv.setStyle(this.getClipDimensions());
novaDiv.setStyle({
overflow: "hidden",
zIndex: nivel.indiceNivelVisual
});
var cor = this.divMenuItem.getStyle("color");
novaDiv.select("a").each(function (a) {
a.setStyle({
color: cor
});
});
}
};
/**
* Inserir o nível zero do menu de acordo com as posição solicitada
* @param {HTMLDivElement} div
*/
MenuItem.prototype.insertNivelZeroMenu = function (div) {
var ins = new Object();
ins[this.insertPosition] = div;
this.elementoInicial.insert(ins);
};
/**
* Adicionar eventos customizados desse botão, que pode se definido no XML
* @private
* @returns void
*/
MenuItem.prototype.adicionarEventosCustom = function () {
if (this.onClick) {
Event.observe(this.divMenuItem, "click", this.onClick);
}
if (this.onMouseOut) {
Event.observe(this.divMenuItem, "mouseout", this.onMouseOut);
}
if (this.onMouseOver) {
Event.observe(this.divMenuItem, "mouseover", this.onMouseOver);
}
};
/**
* Retornar a imagem com o link se houver
* @returns o elemento imagem
* @type Element
*/
MenuItem.prototype.getImageLink = function () {
var img = new Element("img", {src: this.imagem, alt: this.titulo, style: "vertical-align: middle; border:none;"});
if (!this.pagina) {
return img;
}
return new Element("a", {href: this.pagina, target: this.getTarget()}).update(img);
};
/**
* Retorna a div contendo o link ou somente o título do item.
* @returns {HTMLDivElement}
*/
MenuItem.prototype.getDivLinkTitulo = function () {
/**
* @type HTMLAnchorElement|String
*/
var linkOuTexto = this.getLinkTitulo();
/**
* @type HTMLDivElement
*/
var divRetorno = new Element("div");
if (this.hint) {
if (Object.isString(linkOuTexto)) {
divRetorno.title = this.hint;
} else {
linkOuTexto.title = this.hint;
}
}
return divRetorno.update(linkOuTexto);
};
/**
* Retornar o título com o link se houver
* @see HTMLAnchorElement
* @returns o link de título do ítem
* @type Object
*/
MenuItem.prototype.getLinkTitulo = function () {
if (!this.pagina) {
return this.titulo;
}
var estiloLink = "text-decoration:none; ";
if (this.imagem) {
estiloLink = estiloLink.concat("width: 70%; float:left;");
}
return new Element("a", {href: this.pagina, style: estiloLink, target: this.getTarget()}).update(this.titulo);
};
/**
* Construir a área de submenus, que deverá estar inicialmente oculta
*/
MenuItem.prototype.buildChildArea = function () {
if (!this.childArea) {
var indiceNivelVisual = this.getNivel().indiceNivelVisual;
var div = new Element("div", {className: this.menuGroup + "-cmItemBorder" + this.getNivel().indiceNivel});
this.childArea = div;
if (this.getNivel().expandirSubNiveis) {
this.divMenuItem.appendChild(div);
} else {
div.hide();
div.setStyle({position: "absolute", zIndex: indiceNivelVisual});
document.body.appendChild(div);
}
}
};
/**
* Adicionar uma div como filho na área
* @param {HTMLDivElement} div
* @returns void
*/
MenuItem.prototype.addChildDiv = function (div) {
this.buildChildArea();
this.childArea.appendChild(div);
};
/**
* Ajustar posição da área de submenus para que fique perto do ítem
* associado a ela
*/
MenuItem.prototype.ajustarPosicao = function () {
var divMenuIr = this.divMenuItem;
if (this.childArea) {
var xCoord = null;
var yCoord = null;
//se for o primeiro nível
if (this.elementoInicial || this.isHorizontal()) {
xCoord = divMenuIr.cumulativeOffset().left;
yCoord = divMenuIr.cumulativeOffset().top + divMenuIr.getHeight() + this.getNivel().ajusteDistanciaMenu;
} else {
xCoord = divMenuIr.cumulativeOffset().left + divMenuIr.getWidth() + this.getNivel().ajusteDistanciaMenu;
yCoord = divMenuIr.cumulativeOffset().top;
}
if (this.nivel.alinharCoordenadaXMenuPai) {
this.childArea.setStyle({
left: xCoord + "px"
});
}
this.childArea.setStyle({
top: yCoord + "px"
});
}
};
/**
* Trocar estilo do botão e exibir a área de submenus associada
* a esse menuItem
*
* @returns
*/
MenuItem.prototype.mouseOver = function () {
var nivel = this.getNivel();
if (nivel.estiloHover !== nivel.estilo) {
this.divMenuItem.addClassName(nivel.estiloHover);
this.divMenuItem.removeClassName(nivel.estilo);
}
if (this.hasChildNodes()) {
this.showDivArea();
}
};
/**
* Voltar o estilo original do menuItem e esconder a área de submenus
* associada a ele
* @returns
*/
MenuItem.prototype.mouseOut = function () {
var nivel = this.getNivel();
if (nivel.estiloHover !== nivel.estilo) {
this.divMenuItem.addClassName(nivel.estilo);
this.divMenuItem.removeClassName(nivel.estiloHover);
}
if (this.hasChildNodes() && !nivel.expandirSubNiveis) {
this.hideDivArea();
}
};
/**
* Atribuir o elemento onde o menu será criado.
*/
FactoryMenu.prototype.lookupParentElement = function () {
this.parentElement = $(this.parentElement);
};
/**
* Clonar o último nível
* @returns Nivel
*/
FactoryMenu.prototype.clonarUltimoNivel = function () {
return Object.clone(this.niveis.last());
};
/**
* Registrar os eventos de funcionalidade do menu.
* @param {MenuItem} menuItem
* @param {Number} indiceNivel
*/
FactoryMenu.prototype.registrarEventosDefault = function (menuItem, indiceNivel) {
Event.observe(window, "resize", menuItem.ajustarPosicao.bind(menuItem));
var tipoEvento = menuItem.nivel.eventoMostraArea;
if ("ONMOUSEOVER" === tipoEvento) {
Event.observe(menuItem.divMenuItem, "mouseover", this.mouseOver.bind(this, menuItem, indiceNivel));
Event.observe(menuItem.divMenuItem, "mouseover", this.registrarMouseOver.bind(this));
Event.observe(menuItem.divMenuItem, "mouseout", this.registrarMouseOut.bind(this));
if (menuItem.childArea) {
Event.observe(menuItem.childArea, "mouseover", this.registrarMouseOver.bind(this));
Event.observe(menuItem.childArea, "mouseout", this.registrarMouseOut.bind(this));
}
} else if ("ONCLICK" === tipoEvento) {
Event.observe(menuItem.divMenuItem, "click", this.mouseOver.bind(this, menuItem, indiceNivel));
}
};
/**
* Callback mouseout
*/
FactoryMenu.prototype.abstractCallbackMouseOut = function () {
return this.verificarMouseSobreMenu.bind(this);
};