-
Notifications
You must be signed in to change notification settings - Fork 0
/
vo-buildinfo.js
96 lines (86 loc) · 2.25 KB
/
vo-buildinfo.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
import {LitElement, html} from "./node_modules/vodomg-litelement/@polymer/lit-element/lit-element.js";
import './vo-buildversie.js';
/**
* `vo-buildinfo`
* Visualiseert de build informatie van de applicatie.
*
* @customElement
* @polymer
*/
class VoBuildinfo extends LitElement {
static get properties() {
return {
/**
* URL waar de build informatie staat | `{'admin/info'}`.
*/
url: String,
/**
* Build versie.
*/
_versie: String,
/**
* Build tijdstip.
*/
_tijdstip: String
};
}
constructor() {
super();
this.url = this.url || '/admin/info';
}
/**
* Rendert het element.
*
* @return {TemplateResult}
*/
render() {
return html`
<vo-buildversie versie=${this._versie ? this._versie : ''} tijdstip=${this._tijdstip ? this._tijdstip : ''}></vo-buildversie>
`;
}
updated(changedProperties) {
if (changedProperties.has('url')) {
this._computeBuildinfo();
}
}
/**
* Zet de build `_versie` en build `_tijdstip` attributen op undefined.
*/
_clearInfo() {
this._setInfo(undefined, undefined);
}
/**
* Zet de build `_versie` en build `_tijdstip` attributen.
*/
_setInfo(versie, tijdstip) {
this._versie = versie;
this._tijdstip = tijdstip;
}
/**
* Haalt de build informatie op.
*/
static async _fetchInfo(url) {
if (url) {
var response = await fetch(url);
if (response && response.json) {
var json = await response.json();
return {
versie: json.build.version,
tijdstip: json.build.time
};
}
}
}
/**
* Haalt de build informatie op en zet de build `_versie` en build `_tijdstip` attributen.
*/
async _computeBuildinfo() {
const info = await VoBuildinfo._fetchInfo(this.url);
if (info) {
this._setInfo(info.versie, info.tijdstip);
} else {
this._clearInfo();
}
}
}
customElements.define('vo-buildinfo', VoBuildinfo);