forked from web-platform-tests/wpt.fyi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath-part.js
97 lines (87 loc) · 2.26 KB
/
path-part.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
/**
* 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.
*/
/*
`<path-part>` is a stateless component for displaying part of a test path.
*/
import '../node_modules/@polymer/paper-styles/color.js';
import { html, PolymerElement } from '../node_modules/@polymer/polymer/polymer-element.js';
class PathPart extends PolymerElement {
static get template() {
return html`
<style>
a {
text-decoration: none;
color: var(--paper-blue-500);
font-family: monospace;
}
a:hover {
cursor: pointer;
color: var(--paper-blue-700);
}
.dir-path {
font-weight: bold;
}
</style>
<a class\$="{{ styleClass }}" href="{{ href }}" onclick="{{ navigate }}">
{{ relativePath }}
</a>
`;
}
static get is() {
return 'path-part';
}
static get properties() {
return {
path: {
type: String
},
query: {
type: String
},
// Domain path-prefix, e.g. '/interop/'
prefix: {
type: String,
default: '/'
},
isDir: {
type: Boolean
},
navigate: {
type: Function
},
relativePath: {
type: String,
computed: 'computedDisplayableRelativePath(path)'
},
href: {
type: String,
computed: 'computeHref(prefix, path, query)'
},
styleClass: {
type: String,
computed: 'computePathClass(isDir)'
}
};
}
computeHref(prefix, path, query) {
let parts = path.split('/');
parts.push(encodeURIComponent(parts.pop()));
return `${prefix || ''}${parts.join('/')}${query || ''}`;
}
computedDisplayableRelativePath(path) {
if (!this.isDir) {
return path.substr(path.lastIndexOf('/') + 1);
}
const windowPath = window.location.pathname.replace(`${this.prefix || ''}`, '');
const pathPrefix = new RegExp(`^${windowPath}${windowPath.endsWith('/') ? '' : '/'}`);
return `${path.replace(pathPrefix, '')}${this.isDir ? '/' : ''}`;
}
computePathClass(isDir) {
return isDir ? 'dir-path' : 'file-path';
}
}
window.customElements.define(PathPart.is, PathPart);
export { PathPart };