178 lines
3.9 KiB
Vue
178 lines
3.9 KiB
Vue
<template>
|
|
<q-card
|
|
flat
|
|
bordered
|
|
:class="['panel-services', {'panel-services-dense':isDense}]"
|
|
>
|
|
<q-scroll-area
|
|
:thumb-style="appThumbStyle"
|
|
style="height:100%;"
|
|
>
|
|
<q-card-section>
|
|
<div class="row items-start no-wrap">
|
|
<div class="col-6">
|
|
<div class="text-subtitle2 text-table">
|
|
Name
|
|
</div>
|
|
</div>
|
|
<div class="col-3">
|
|
<div
|
|
class="text-subtitle2 text-table"
|
|
style="text-align: right"
|
|
>
|
|
Percent
|
|
</div>
|
|
</div>
|
|
<div class="col-3">
|
|
<div
|
|
class="text-subtitle2 text-table"
|
|
style="text-align: right"
|
|
>
|
|
Provider
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</q-card-section>
|
|
<q-separator />
|
|
<div
|
|
v-for="(service, index) in data.mirroring.mirrors"
|
|
:key="index"
|
|
>
|
|
<q-card-section>
|
|
<div class="row items-center no-wrap">
|
|
<div class="col-6">
|
|
<q-chip
|
|
dense
|
|
class="app-chip app-chip-rule app-chip-overflow"
|
|
>
|
|
{{ service.name }}
|
|
<q-tooltip>{{ service.name }}</q-tooltip>
|
|
</q-chip>
|
|
</div>
|
|
<div class="col-3 text-right">
|
|
{{ service.percent }}
|
|
</div>
|
|
<div class="col-3 text-right">
|
|
<q-avatar class="provider-logo">
|
|
<q-icon :name="`img:${getProviderLogoPath(service)}`" />
|
|
</q-avatar>
|
|
</div>
|
|
</div>
|
|
</q-card-section>
|
|
<q-separator />
|
|
</div>
|
|
</q-scroll-area>
|
|
</q-card>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'PanelMirroringServices',
|
|
props: {
|
|
data: { type: Object, default: undefined, required: false },
|
|
dense: { type: Boolean, default: undefined }
|
|
},
|
|
computed: {
|
|
isDense () {
|
|
return this.dense !== undefined
|
|
}
|
|
},
|
|
methods: {
|
|
getProvider (service) {
|
|
const words = service.name.split('@')
|
|
if (words.length === 2) {
|
|
return words[1]
|
|
}
|
|
|
|
return this.data.provider
|
|
},
|
|
getProviderLogoPath (service) {
|
|
const provider = this.getProvider(service)
|
|
const name = provider.toLowerCase()
|
|
|
|
if (name.startsWith('plugin-')) {
|
|
return 'providers/plugin.svg'
|
|
}
|
|
if (name.startsWith('consul-')) {
|
|
return 'providers/consul.svg'
|
|
}
|
|
if (name.startsWith('consulcatalog-')) {
|
|
return 'providers/consulcatalog.svg'
|
|
}
|
|
if (name.startsWith('nomad-')) {
|
|
return 'providers/nomad.svg'
|
|
}
|
|
|
|
return `providers/${name}.svg`
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "../../css/sass/variables";
|
|
|
|
.panel-services {
|
|
height: 600px;
|
|
&-dense{
|
|
height: 400px;
|
|
}
|
|
.q-card__section {
|
|
padding: 12px 24px;
|
|
+ .q-card__section {
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
.block-right-text{
|
|
height: 32px;
|
|
line-height: 32px;
|
|
&-label{
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: $app-text-grey;
|
|
float: left;
|
|
margin-left: 10px;
|
|
text-transform: capitalize;
|
|
&-enabled {
|
|
color: $positive;
|
|
}
|
|
&-disabled {
|
|
color: $negative;
|
|
}
|
|
&-warning {
|
|
color: $warning;
|
|
}
|
|
}
|
|
}
|
|
|
|
.text-subtitle2 {
|
|
font-size: 11px;
|
|
color: $app-text-grey;
|
|
line-height: 16px;
|
|
margin-bottom: 4px;
|
|
text-align: left;
|
|
letter-spacing: 2px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.text-table {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
letter-spacing: normal;
|
|
text-transform: none;
|
|
}
|
|
|
|
.provider-logo {
|
|
width: 32px;
|
|
height: 32px;
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
</style>
|