-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelo.ts
137 lines (115 loc) · 4.97 KB
/
pelo.ts
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
//Sim, isso é uma gambiarra de gente preguiçosa.
//Não me julge.
namespace Seletor {
export interface ISize {
width: number;
height: number;
}
export interface IImagemPelo extends HTMLImageElement {
pelo: Pelo;
}
export function base64Encode(str) {
var CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
var out = "", i = 0, len = str.length, c1, c2, c3;
while (i < len) {
c1 = str.charCodeAt(i++) & 0xff;
if (i == len) {
out += CHARS.charAt(c1 >> 2);
out += CHARS.charAt((c1 & 0x3) << 4);
out += "==";
break;
}
c2 = str.charCodeAt(i++);
if (i == len) {
out += CHARS.charAt(c1 >> 2);
out += CHARS.charAt(((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4));
out += CHARS.charAt((c2 & 0xF) << 2);
out += "=";
break;
}
c3 = str.charCodeAt(i++);
out += CHARS.charAt(c1 >> 2);
out += CHARS.charAt(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4));
out += CHARS.charAt(((c2 & 0xF) << 2) | ((c3 & 0xC0) >> 6));
out += CHARS.charAt(c3 & 0x3F);
}
return out;
}
export class PeloLoader {
public url: string;
public constructor(imagem: string, oncomplete: Function) {
jQuery.ajax({
url: imagem,
dataType: 'text',
mimeType: "text/plain; charset=x-user-defined",
crossDomain: true,
success: function(data: string, status, xhr) {
oncomplete(null, data, xhr.getResponseHeader("content-type"));
},
error: function(xhr, textStatus, errorThrow) {
oncomplete(errorThrow, null);
}
});
}
}
export class Pelo {
private imagem: IImagemPelo;
public imagemDesenho: HTMLImageElement;
public elem: HTMLDivElement;
public tamanho: ISize = new Object() as ISize;
public static CORS_ANONYMOUS: string = "Anonymous";
public static CORS_NONE: string = "";
public constructor(url: string) {
let self: Pelo = this;
this.elem = document.createElement('div');
this.elem.className = 'pelo';
new PeloLoader(url, function(erro: string, data: string, tipo: string) {
self.imagem = new Image() as IImagemPelo;
self.imagem.className = 'img-pelo';
self.imagem.onload = function(e: Event) {
self.imagemCarregada();
};
self.imagem.onerror = function(e: Event) {
self.erroCarregamento(e);
}
if (data) {
self.imagem.src = 'data:' + tipo + ';base64,' + base64Encode(data);
} else {
self.imagem.crossOrigin = "Anonymous";
self.imagem.src = url;
}
});
}
public carregar(url: string, crossOrigin: string = "") {
}
public erroCarregamento(e: Event) {
console.log('cors: ' + (e.target as HTMLImageElement).crossOrigin);
if ((e.target as HTMLImageElement).crossOrigin == Pelo.CORS_ANONYMOUS) {
this.carregar((e.target as HTMLImageElement).src, Pelo.CORS_NONE);
} else {
this.elem.innerHTML = '<span style="display: block; font-size: 18px; color: coral; text-align: center; word-wrap: break-word">Error</span>';
this.elem.style.visibility = "visible";
this.elem.style.opacity = "1";
}
}
public imagemCarregada() {
let self: Pelo = this;
Seletor.pelosCarregados++;
document.getElementById('listaPelos').getElementsByTagName('t2')[0].innerHTML = (navigator.language.indexOf("pt") == 0 ? Seletor.pelosCarregados + " pelos carregados de " + Seletor.quantPelos : "Loaded " + Seletor.pelosCarregados + " of " + Seletor.quantPelos + " furs");
this.tamanho.height = this.imagem.height;
this.tamanho.width = this.imagem.width;
this.imagemDesenho = new Image();
this.imagemDesenho.className = 'img-desenho';
this.imagemDesenho.src = this.imagem.src;
this.elem.appendChild(this.imagemDesenho);
this.imagem.pelo = this;
this.elem.appendChild(this.imagem);
this.elem.style.cursor = "hand";
this.elem.style.visibility = "visible";
this.elem.style.opacity = "1";
this.elem.onclick = function() {
Seletor.desenharNoCanvas(self.imagemDesenho);
}
}
}
}