-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdom-helpers.js
219 lines (184 loc) · 5.57 KB
/
dom-helpers.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
/**
* A shorter console.log helper.
* @param {object} one or more objects.
*/
var l = console.log.bind(console);
/**
* Gets an element by its id attribute.
* @param {string} The id of the target element.
*/
var byId = function byId(id) {
return document.getElementById(id);
};
var byTagName = function byTagName(tagName, start) {
start = start || document;
return start.getElementsByTagName(tagName);
};
var createNode = function createNode(tagName) {
return document.createElement(tagName);
};
var createText = function createText(str) {
return document.createTextNode(str);
};
/**
* Prepara dados para envio por ajax.
*
* @param {mixed} data Um Objeto ou Array que será serializado.
* @return {string} Uma string com os dados serializados, prontos para o envio por ajax.
*/
function serialize( data ) {
var arr = [];
if ( data.constructor == Array ) {
for ( var z = 0; z < data.length; ++z ) {
// Assume que são campos de formulário.
arr.push( data[ z ].name + '=' + encodeURIComponent( data[ k ].value ) );
}
}
else {
for ( var key in data ) {
arr.push( key + '=' + encodeURIComponent( data[ key ] ) );
}
}
return arr.join('&');
}
/**
* NO MOMENTO ESSA FUNÇÃO SÓ FUNCIONA PARA RETORNO TEXTO / HTML (não suporta xml ainda).
*/
function ajax( options ) {
/**
* Seta os parâmetors que o usuário passou o coloca
* valores default.
*/
var args = {
'type': options.type || 'POST',
'url': options.url || '',
'data': options.data || '',
'hasFiles': options.hasFiles || false,
'time': options.timeout || 60000,
'onSuccess': options.onSuccess || function(){}
};
// Variável para controltar o tempo que o request será considerado "expirado".
var requestTimeOut = false;
// Daqui args.time milisegundos vamos considerar o request expirado.
setTimeout( function() {
requestTimeOut = true;
}, args.time);
/**
* Verifica se está tudo OK.
*/
function checkRequestStatus() {
return xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304) && ! requestTimeOut;
}
if ( window.XMLHttpRequest ) {
var xhr = new XMLHttpRequest();
if ( args.type === 'GET' ) {
args.url += '?' + serialize( args.data );
}
xhr.open(args.type, args.url, true);
// O handler do onreadystatechange deve ser realmente definido/chamado
// antes do .send().
xhr.onreadystatechange = function() {
if ( checkRequestStatus() ) {
// TODO: Nem sempre será texto. Melhorar isso.
args.onSuccess( xhr.responseText );
}
}
/**
* Se estamos enviando arquivos, assumimos que estamos usando XHR2,
* o que no caso não se define headers nem nada.
*/
if ( ! args.hasFiles ) {
// Seta o header necessário.
xhr.setRequestHeader( 'Content-Type', 'application/x-www-form-urlencoded' );
}
if ( args.hasFiles ) {
//out( 'Making a _POST_ request and sending file(s)...' );
xhr.send( args.data );
}
else if ( args.type === 'GET' ) {
//out( 'Making a _GET_ request...' );
// Com GET os dados vão na url.
xhr.send(null);
}
else {
//out( 'Making a _POST_ request...' );
// Com POST os dados vão como parâmetro do .send().
xhr.send( serialize( args.data ) );
}
}
else {
alert('O seu navegador é muito antigo.');
}
}
/**
* Finds the position X left of an element in relation to the whole page.
* Uses recursion.
*/
function pageX(elem) {
//
// While we can find an offsetParent, add it to what we
// already have.
//
if (elem.offsetParent) {
return elem.offsetLeft + pageX(elem.offsetParent);
}
return elem.offsetLeft;
}
/**
* Finds the position Y top of an element in relation to the whole page.
* Uses recursion.
*/
function pageY(elem) {
//
// While we can still find an offsetParent, add it to
// the offset we already have.
//
if (elem.offsetParent) {
l(elem.offsetParent);
return elem.offsetTop + pageY(elem.offsetParent);
}
return elem.offsetTop;
}
function getStyle(elem, name) {
if (elem.style[name]) {
l('elem.style[name]');
return elem.style[name];
}
else if (document.defaultView && document.defaultView.getComputedStyle) {
l('defaultView.getComputedStyle');
name = name.replace(/([A-Z])/g, '-$1');
name = name.toLowerCase();
var style = document.defaultView.getComputedStyle(elem, '');
return style && style.getPropertyValue(name);
}
// IE.
else if (elem.currentStyle) {
l('elem.currentStyle');
return elem.currentStyle[name]
}
l('null');
return null;
}
/**
* Loads one of more css files.
* @param {mixed} either a string or an array.
*/
var loadCss = function loadCss(paths) {
//
// In this case, we can't handle the argument. Bailing out.
//
if (arguments.length !== 1) return false;
//
// Make it an array in case it is not yet.
//
if (paths.constructor !== Array) {
paths = [paths];
}
paths.forEach(function(strHref) {
var e = createNode('link');
e.href= strHref + '?' + new Date().getTime();
e.type = 'text/css';
e.rel = 'stylesheet';
byTagName('head')[0].appendChild(e);
});
};