mirror of https://github.com/Lissy93/dashy.git
feat: stylings
This commit is contained in:
parent
6f937fbe00
commit
e8845d90e3
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="example-wrapper">
|
<div>
|
||||||
<template v-if="monitors">
|
<template v-if="monitors">
|
||||||
<div v-for="(monitor, index) in monitors" :key="index" class="">
|
<div v-for="(monitor, index) in monitors" :key="index" class="">
|
||||||
<div class="title-title"><span class="text">{{ monitor.name }}</span></div>
|
<div class="title-title"><span class="text">{{ monitor.name }}</span></div>
|
||||||
|
@ -13,13 +13,19 @@
|
||||||
<div class="status-container">
|
<div class="status-container">
|
||||||
<span class="status-pill">{{ monitor.responseTime }}ms</span>
|
<span class="status-pill">{{ monitor.responseTime }}ms</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="status-container">
|
<div class="status-container" v-if="monitor.certValid !== undefined">
|
||||||
<span class="status-pill" :class="{ up: monitor.certValid == 1, down: monitor.certValid != 1 }">{{
|
<span class="status-pill" :class="{ up: monitor.certValid == 1, down: monitor.certValid != 1 }">{{
|
||||||
monitor.certValid }}</span>
|
monitor.certValid }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<template v-if="errorMessage">
|
||||||
|
<div class="error-message">
|
||||||
|
<span class="text">{{ errorMessage }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -36,9 +42,15 @@ export default {
|
||||||
components: {},
|
components: {},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
monitors: null, // Will store our results from the API
|
monitors: null,
|
||||||
|
errorMessage: null,
|
||||||
|
errorMessageConstants: {
|
||||||
|
missingApiKey: 'No API key set',
|
||||||
|
missingUrl: 'No URL set'
|
||||||
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.fetchData();
|
this.fetchData();
|
||||||
},
|
},
|
||||||
|
@ -49,7 +61,10 @@ export default {
|
||||||
apiKey() {
|
apiKey() {
|
||||||
const { apiKey } = this.options;
|
const { apiKey } = this.options;
|
||||||
|
|
||||||
if (!apiKey) throw new Error('No API key set');
|
if (!apiKey) {
|
||||||
|
this.errorMessage = this.errorMessageConstants.missingApiKey;
|
||||||
|
throw new Error(this.errorMessageConstants.missingApiKey);
|
||||||
|
}
|
||||||
|
|
||||||
return apiKey;
|
return apiKey;
|
||||||
},
|
},
|
||||||
|
@ -57,7 +72,10 @@ export default {
|
||||||
url() {
|
url() {
|
||||||
const { url } = this.options;
|
const { url } = this.options;
|
||||||
|
|
||||||
if (!url) throw new Error('No URL set');
|
if (!url) {
|
||||||
|
this.errorMessage = this.errorMessageConstants.missingUrl;
|
||||||
|
throw new Error(this.errorMessageConstants.missingUrl);
|
||||||
|
}
|
||||||
|
|
||||||
return url;
|
return url;
|
||||||
},
|
},
|
||||||
|
@ -84,30 +102,40 @@ export default {
|
||||||
},
|
},
|
||||||
/* Convert API response data into a format to be consumed by the UI */
|
/* Convert API response data into a format to be consumed by the UI */
|
||||||
processData(response) {
|
processData(response) {
|
||||||
const rows = response.split('\n').filter(row => row.startsWith('monitor_'));
|
const monitorRows = this.getMonitorRows(response);
|
||||||
|
|
||||||
const monitors = new Map();
|
const monitors = new Map();
|
||||||
|
|
||||||
const regex = /monitor_name='([^']+)'/;
|
for (let index = 0; index < monitorRows.length; index++) {
|
||||||
|
const row = monitorRows[index];
|
||||||
const getValue = (row) => row.match(/\b\d+\b$/)[0];
|
this.processRow(row, monitors);
|
||||||
|
|
||||||
for (let index = 0; index < rows.length; index++) {
|
|
||||||
const row = rows[x];
|
|
||||||
|
|
||||||
const key = row.match(/^(.*?)\{/)[1];
|
|
||||||
const monitorName = row.match(regex)[1];
|
|
||||||
|
|
||||||
if (!monitors.has(monitorName)) {
|
|
||||||
monitors.set(monitorName, { name: monitorName });
|
|
||||||
}
|
|
||||||
|
|
||||||
const monitor = monitors.get(monitorName);
|
|
||||||
const value = getValue(row);
|
|
||||||
|
|
||||||
this.setMonitorValue(key, monitor, value);
|
|
||||||
this.monitors = Array.from(monitors.values());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.monitors = Array.from(monitors.values());
|
||||||
|
},
|
||||||
|
getMonitorRows(response) {
|
||||||
|
return response.split('\n').filter(row => row.startsWith('monitor_'));
|
||||||
|
},
|
||||||
|
processRow(row, monitors) {
|
||||||
|
console.log(monitors);
|
||||||
|
const dataType = this.getRowDataType(row);
|
||||||
|
const monitorName = this.getRowMonitorName(row);
|
||||||
|
|
||||||
|
if (!monitors.has(monitorName)) {
|
||||||
|
monitors.set(monitorName, { name: monitorName });
|
||||||
|
}
|
||||||
|
|
||||||
|
const monitor = monitors.get(monitorName);
|
||||||
|
console.log('monitor', monitor);
|
||||||
|
const value = this.getRowValue(row);
|
||||||
|
|
||||||
|
console.log('monitorname', monitorName);
|
||||||
|
console.log('datatype', dataType);
|
||||||
|
console.log('value', value);
|
||||||
|
console.log('row', row);
|
||||||
|
|
||||||
|
this.setMonitorValue(dataType, monitor, value);
|
||||||
|
monitors.set(monitorName, monitor);
|
||||||
},
|
},
|
||||||
setMonitorValue(key, monitor, value) {
|
setMonitorValue(key, monitor, value) {
|
||||||
switch (key) {
|
switch (key) {
|
||||||
|
@ -131,6 +159,28 @@ export default {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
getRowValue(row) {
|
||||||
|
return this.getValueWithRegex(row, /\b\d+\b$/);
|
||||||
|
},
|
||||||
|
getRowMonitorName(row) {
|
||||||
|
return this.getValueWithRegex(row, /monitor_name="([^"]+)"/);
|
||||||
|
},
|
||||||
|
getRowDataType(row) {
|
||||||
|
return this.getValueWithRegex(row, /^(.*?)\{/);
|
||||||
|
},
|
||||||
|
getValueWithRegex(string, regex) {
|
||||||
|
const result = string.match(regex);
|
||||||
|
|
||||||
|
const isArray = Array.isArray(result);
|
||||||
|
|
||||||
|
console.log(isArray, result);
|
||||||
|
|
||||||
|
if (!isArray) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
return result.length > 1 ? result[1] : result[0];
|
||||||
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -147,6 +197,7 @@ export default {
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
padding: .35em .65em;
|
padding: .35em .65em;
|
||||||
margin: 1em 0.5em;
|
margin: 1em 0.5em;
|
||||||
|
min-width: 64px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.up {
|
.up {
|
||||||
|
@ -160,6 +211,6 @@ export default {
|
||||||
.monitors-container {
|
.monitors-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue