-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
113 lines (104 loc) · 2.25 KB
/
scripts.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
window.addEventListener('load', function () {
var images = [
{
name: 'JPG',
format: '.jpg',
},
{
name: 'PNG',
format: '.png',
},
{
name: 'GIF',
format: '.gif',
},
{
name: 'SVG',
format: '.svg',
},
{
name: 'ICO',
format: '.ico',
},
{
name: 'WEBP',
format: '.webp',
},
{
name: 'APNG',
format: '.apng',
},
{
name: 'TIFF',
format: '.tiff',
},
{
name: 'BMP',
format: '.bmp',
},
{
name: 'XBM',
format: '.xbm',
},
{
name: 'EMF',
format: '.emf',
},
{
name: 'WMF',
format: '.wmf',
},
{
name: 'AVIF',
format: '.avif',
},
{
name: 'PDF',
format: '.pdf',
},
]
var counter = 0
images.forEach(function (image) {
processImage(image, function (isSupported) {
image.isSupported = isSupported
counter++
if (counter === images.length) {
renderList(images)
}
})
})
})
function processImage(image, callback) {
var ImageNode = new Image()
ImageNode.src = 'images/1px' + image.format
ImageNode.onload = function () {
callback(!!ImageNode.height)
}
ImageNode.onerror = function () {
callback(false)
}
}
function renderList(images) {
var Loader = document.getElementById('loader')
Loader.remove()
if ('content' in document.createElement('template')) {
var AppNode = document.querySelector('#app')
var ImageTemplate = AppNode.querySelector('#template-image')
images.forEach(function (image) {
var ImageItem = ImageTemplate.content.cloneNode(true)
var ImageIcon = ImageItem.querySelector('.image-icon')
var ImageName = ImageItem.querySelector('.image-name')
var ImageLabel = ImageItem.querySelector('.image-label')
ImageIcon.textContent = image.format
if (!!image.isSupported) {
ImageIcon.classList.add('supported')
}
ImageName.textContent = image.name
ImageLabel.textContent = !!image.isSupported ? 'is' : 'is not'
ImageLabel.textContent += ' supported by your browser'
AppNode.appendChild(ImageItem)
})
} else {
// TODO: Add support for wooden browsers. (no)
}
}