-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
188 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
<template> | ||
<input v-model="filter" id="filter" placeholder="filter keyboards" /> | ||
<h5>Loaded in {{ loadTime }} seconds</h5> | ||
<BuildList :list="failingKeyboards" :filter="filter" @show-error-pane="showErrors"> | ||
Builds Failing | ||
</BuildList> | ||
<BuildList :list="warningKeyboards" :filter="filter" @show-error-pane="showErrors"> | ||
Builds Warning | ||
</BuildList> | ||
<BuildList :list="passingKeyboards" :filter="filter" @show-error-pane="showErrors"> | ||
Builds Passing | ||
</BuildList> | ||
<ErrorPane | ||
:visible="showErrorPane" | ||
:error-log="errorLog" | ||
:loading="errorLogLoading" | ||
@backdrop-clicked="hideErrors" | ||
/> | ||
</template> | ||
|
||
<script setup> | ||
import { ref } from 'vue' | ||
import axios from 'axios' | ||
import reduce from 'lodash/reduce' | ||
import BuildList from '@/components/BuildList.vue' | ||
import ErrorPane from '@/components/ErrorPane.vue' | ||
const emit = defineEmits(['progress']) | ||
let buildLog = {} | ||
const loadTime = ref('') | ||
const filter = ref('') | ||
const passingKeyboards = ref([]) | ||
const warningKeyboards = ref([]) | ||
const failingKeyboards = ref([]) | ||
const errorLog = ref('') | ||
const errorLogLoading = ref(false) | ||
const showErrorPane = ref(false) | ||
await loadBuildSummary() | ||
async function loadBuildSummary() { | ||
const start = performance.now() | ||
try { | ||
const { status, data } = await axios.get( | ||
`${import.meta.env.VITE_QMK_API_BASEURL}/v1/keyboards/build_summary`, | ||
{ | ||
onDownloadProgress: (e) => { | ||
emit('progress', Math.floor((e.loaded / e.total) * 100)) | ||
} | ||
} | ||
) | ||
if (status === 200) { | ||
buildLog = data | ||
binKeyboards() | ||
} | ||
} catch (e) { | ||
console.log(e.message) | ||
} | ||
loadTime.value = ((performance.now() - start) / 1000).toFixed(2) | ||
} | ||
async function loadBuildLog(keyboard) { | ||
errorLogLoading.value = true | ||
try { | ||
const { status, statusText, data } = await axios.get( | ||
`${import.meta.env.VITE_QMK_API_BASEURL}/v1/keyboards/${keyboard}/build_log` | ||
) | ||
if (status === 200) { | ||
buildLog[keyboard].message = data.message | ||
errorLog.value = data.message | ||
} else { | ||
buildLog[keyboard].message = `ERROR ${status}: ${statusText}` | ||
} | ||
} catch (e) { | ||
buildLog[keyboard].message = `ERROR: ${e.message}` | ||
} | ||
errorLogLoading.value = false | ||
errorLog.value = buildLog[keyboard].message | ||
} | ||
function showErrors(key) { | ||
if (!('message' in buildLog[key])) { | ||
loadBuildLog(key) | ||
} else { | ||
errorLog.value = buildLog[key].message | ||
} | ||
showErrorPane.value = true | ||
} | ||
function hideErrors() { | ||
showErrorPane.value = false | ||
} | ||
function compareKeyboardNames(k1, k2) { | ||
return k1.key < k2.key ? -1 : k1.key > k2.key ? 1 : 0 | ||
} | ||
function binKeyboards() { | ||
let obj = reduce( | ||
buildLog, | ||
(acc, value, key) => { | ||
let item = { | ||
passed: value.works, | ||
warnings: value.warnings, | ||
key: key, | ||
lastTested: new Date(value.last_tested * 1000) | ||
} | ||
if (item.passed) { | ||
if (item.warnings) { | ||
acc.warn.push(item) | ||
} else { | ||
acc.good.push(item) | ||
} | ||
} else { | ||
acc.bad.push(item) | ||
} | ||
return acc | ||
}, | ||
{ good: [], warn: [], bad: [] } | ||
) | ||
obj.good.sort(compareKeyboardNames) | ||
obj.warn.sort(compareKeyboardNames) | ||
obj.bad.sort(compareKeyboardNames) | ||
passingKeyboards.value = obj.good | ||
warningKeyboards.value = obj.warn | ||
failingKeyboards.value = obj.bad | ||
} | ||
</script> | ||
<style scoped> | ||
#filter { | ||
padding: 12px; | ||
width: 20%; | ||
font-size: 1.1rem; | ||
color: #2c3e50; | ||
background: #eee; | ||
border: none; | ||
border-radius: 8px; | ||
} | ||
#filter:hover { | ||
background: #ddd; | ||
} | ||
#filter:focus { | ||
outline: none; | ||
background: #d0d0d0; | ||
} | ||
@media (max-width: 640px) { | ||
#filter { | ||
width: 80%; | ||
} | ||
} | ||
@media (prefers-color-scheme: dark) { | ||
#filter { | ||
background: #1c1c1c; | ||
color: #ced9e4; | ||
} | ||
#filter:hover { | ||
background: #2c2c2c; | ||
} | ||
#filter:focus { | ||
background: #303030; | ||
} | ||
} | ||
</style> |