forked from aztech-digital/angular-thumbnails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular-thumbnails.js
155 lines (146 loc) · 5.87 KB
/
angular-thumbnails.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
(function() {
"use strict";
function PaginationStatus(currentPage, totalPages) {
var _currentPage = parseInt(currentPage, 10), _totalPages = parseInt(totalPages, 10);
this.currentPage = function() {
return _currentPage;
};
this.nextPage = function() {
if (_currentPage >= _totalPages) {
return;
}
_currentPage += 1;
};
this.previousPage = function() {
if (_currentPage === 1) {
return;
}
_currentPage -= 1;
};
return this;
}
function RenderViewport(height, width, scale, rotation) {
var _height = height, _width = width, _scale = scale || 1, _rotation = rotation || 0;
this.adjustCanvasDimensions = function(height, width, canvas) {
var ratio = width / height;
if (height > _height) {
height = _height;
width = height * ratio;
}
if (width > _width) {
width = _width;
height = width / ratio;
}
canvas.height = height;
canvas.width = width;
};
this.rotateClockwise = function() {
_rotation += 90;
};
this.rotateCounterClockwise = function() {
_rotation -= 90;
};
this.getRotation = function() {
return _rotation;
};
return this;
}
function PdfRenderer(scope, canvas) {
var pdfDoc = null, renderPage = function(pagination) {
pdfDoc.getPage(pagination.currentPage()).then(function(page) {
var viewport = page.getViewport(parseInt(scope.scale, 10) || 1, 0), renderContext = {}, targetViewport = new RenderViewport(scope.maxHeight || viewport.height, scope.maxWidth || viewport.width);
targetViewport.adjustCanvasDimensions(viewport.height, viewport.width, canvas);
page.render({
canvasContext: canvas.getContext("2d"),
viewport: page.getViewport(canvas.height / viewport.height, targetViewport.getRotation())
});
});
};
this.render = function() {
if (!scope.source) {
return;
}
PDFJS.disableWorker = true;
PDFJS.getDocument(scope.source, null, null, scope.onProgress).then(function(_pdfDoc) {
pdfDoc = _pdfDoc;
scope.$apply(function() {
renderPage(new PaginationStatus(scope.pageNum || 1, pdfDoc.numPages));
});
}, function(error) {
console.log(error);
});
};
return this;
}
function VideoRenderer(scope, container, canvas) {
this.render = function() {
var video = document.createElement("video");
video.setAttribute("style", "display: none");
video.addEventListener("canplay", function() {
new RenderViewport(scope.maxHeight || video.videoHeight, scope.maxWidth || video.videoWidth).adjustCanvasDimensions(video.videoHeight, video.videoWidth, canvas);
scope.$apply(function() {
canvas.getContext("2d").drawImage(video, 0, 0, video.videoWidth, video.videoHeight, 0, 0, canvas.width, canvas.height);
});
});
container.append(video);
video.src = scope.source;
};
return this;
}
function ImgRenderer(scope, canvas) {
this.render = function() {
var img = new Image();
img.addEventListener("load", function() {
scope.$apply(function() {
new RenderViewport(scope.maxHeight || img.height, scope.maxWidth || img.width).adjustCanvasDimensions(img.height, img.width, canvas);
canvas.getContext("2d").drawImage(img, 0, 0, img.width, img.height, 0, 0, canvas.width, canvas.height);
});
}, false);
img.src=scope.source;
console.log("scope.source: " + scope.source);
// 'http://localhost:8100/'/img/bg_cover_01.png'
var length=img.src.length;
var sublength=scope.source.length;
var diff=length-sublength;
var val = img.src.substring(length-sublength+1, length-1);
var pre = img.src.substring(0, length-sublength-1);
console.log("val: " + val);
//img.src=pre+val;
img.src=val;
console.log("img.src: " + img.src);
};
return this;
}
angular.module("angular-thumbnails", []).directive("thumbnail", function($window) {
return {
restrict: "E",
scope: {
source: "=",
scale: "=",
fileType: "@",
maxHeight: "@",
maxWidth: "@"
},
link: function(scope, element, attrs) {
var canvas = document.createElement("canvas"), renderer = null, renderFunc = function() {
if (renderer) {
renderer.render();
}
};
element.append(canvas);
if (scope.fileType === "pdf") {
renderer = new PdfRenderer(scope, canvas);
} else if (scope.fileType === "image") {
renderer = new ImgRenderer(scope, canvas);
} else if (scope.fileType === "video") {
renderer = new VideoRenderer(scope, element, canvas);
}
scope.$watch("source + fileType + scale + maxHeight + maxWidth", renderFunc);
attrs.$observe('source', function(value) {
console.log('value is: ' + value);
scope.source=value;
});
}
};
});
})();