Display level as colored chip
This commit is contained in:
parent
09e732f78e
commit
11fbc22af5
26
src/components/Grid/Main/ErrLevelRenderer.js
Normal file
26
src/components/Grid/Main/ErrLevelRenderer.js
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import { VChip } from 'vuetify/components/VChip'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
template: `<v-chip
|
||||||
|
class="ma-2"
|
||||||
|
:color="color"
|
||||||
|
text-color="white"
|
||||||
|
>
|
||||||
|
{{ displayValue }}
|
||||||
|
</v-chip>`,
|
||||||
|
components: {
|
||||||
|
VChip
|
||||||
|
},
|
||||||
|
setup(props) {
|
||||||
|
let displayValue = props.params.value
|
||||||
|
let colors = {
|
||||||
|
'error': 'red',
|
||||||
|
'info': 'orange',
|
||||||
|
}
|
||||||
|
let color = colors[displayValue]
|
||||||
|
return {
|
||||||
|
displayValue,
|
||||||
|
color
|
||||||
|
};
|
||||||
|
},
|
||||||
|
};
|
@ -53,6 +53,7 @@ const config = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
field: 'level',
|
field: 'level',
|
||||||
|
cellRenderer: 'ErrLevelRenderer',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,7 @@ import "ag-grid-community/styles//ag-theme-material.css";
|
|||||||
import { VBtn } from 'vuetify/components/VBtn'
|
import { VBtn } from 'vuetify/components/VBtn'
|
||||||
import ExamineLogModal from "./Modal/ExamineLogModal.vue";
|
import ExamineLogModal from "./Modal/ExamineLogModal.vue";
|
||||||
import ComboboxFilter from "./Filter/ComboboxFilter.js";
|
import ComboboxFilter from "./Filter/ComboboxFilter.js";
|
||||||
|
import ErrLevelRenderer from "./Grid/Main/ErrLevelRenderer";
|
||||||
import flattenObj from "../helpers/flattenObj";
|
import flattenObj from "../helpers/flattenObj";
|
||||||
import parseEventData from "../helpers/parseEventData";
|
import parseEventData from "../helpers/parseEventData";
|
||||||
import {mapActions, mapGetters} from 'vuex';
|
import {mapActions, mapGetters} from 'vuex';
|
||||||
@ -44,6 +45,7 @@ export default {
|
|||||||
ExamineLogModal,
|
ExamineLogModal,
|
||||||
AgGridVue,
|
AgGridVue,
|
||||||
ComboboxFilter,
|
ComboboxFilter,
|
||||||
|
ErrLevelRenderer,
|
||||||
VBtn
|
VBtn
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
|
Loading…
Reference in New Issue
Block a user