forked from web-platform-tests/wpt.fyi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay-logo.js
124 lines (113 loc) · 2.92 KB
/
display-logo.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
/**
* Copyright 2018 The WPT Dashboard Project. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/*
`<test-run>` is a stateless component for displaying the details of a TestRun.
The schema for the testRun property is as follows:
{
"browser_name": "",
"browser_version": "",
"os_name": "",
"os_version": "",
"revision": "", // the first 10 characters of the SHA
"created_at": "", // the date the TestRun was uploaded
}
See models.go for more details.
*/
import '../node_modules/@polymer/paper-tooltip/paper-tooltip.js';
import '../node_modules/@polymer/polymer/lib/elements/dom-if.js';
import { html, PolymerElement } from '../node_modules/@polymer/polymer/polymer-element.js';
import { ProductInfo, Sources } from './product-info.js';
class DisplayLogo extends ProductInfo(PolymerElement) {
static get template() {
return html`
<style>
.icon {
/*Avoid (unwanted) space between images.*/
font-size: 0;
padding: 2px 2px 6px;
}
img.browser {
height: 32px;
width: 32px;
}
img.source {
height: 16px;
width: 16px;
margin-left: -12px;
margin-bottom: -4px;
}
.small img.browser {
width: 24px;
height: 24px;
}
.small img.source {
width: 12px;
height: 12px;
margin-left: -8px;
margin-bottom: -4px;
}
</style>
<div class\$="icon [[containerClass(small)]]">
<img class="browser" src="[[displayLogo(product.browser_name, product.labels)]]">
<template is="dom-if" if="[[source]]">
<img class="source" src="/static/[[source]].svg">
</template>
</div>
`;
}
static get is() {
return 'display-logo';
}
static get properties() {
return {
small: {
type: Boolean,
value: false,
},
product: {
type: Object, /* {
browser_name: String,
labels: Array|Set,
}*/
value: {}
},
showSource: {
type: Boolean,
value: false
},
source: {
computed: 'computeSource(product, showSource)',
},
};
}
containerClass(small) {
return small ? 'small' : '';
}
displayLogo(name, labels) {
if (!name) {
return;
}
if (labels) {
labels = new Set(labels);
if (labels.has('experimental') || labels.has('dev')) {
// Legacy run distinction had name suffix -experimental
name.replace(/-experimental$/, '');
name += '-dev';
} else if (labels.has('beta')) {
name += '-beta';
}
}
return `/static/${name}_64x64.png`;
}
computeSource(product, showSource) {
if (!showSource || !product.labels) {
return '';
}
return product.labels.find(s => Sources.has(s));
}
}
window.customElements.define(DisplayLogo.is, DisplayLogo);
export { DisplayLogo };