2019-09-10 12:40:05 +00:00
|
|
|
<template>
|
|
|
|
<q-card flat bordered v-bind:class="['panel-service-details', {'panel-service-details-dense':isDense}]">
|
|
|
|
<q-scroll-area :thumb-style="appThumbStyle" style="height:100%;">
|
|
|
|
<q-card-section>
|
|
|
|
<div class="row items-start no-wrap">
|
|
|
|
<div class="col">
|
|
|
|
<div class="text-subtitle2">TYPE</div>
|
|
|
|
<q-chip
|
|
|
|
dense
|
|
|
|
class="app-chip app-chip-entry-points">
|
|
|
|
{{ data.type }}
|
|
|
|
</q-chip>
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<div class="text-subtitle2">PROVIDER</div>
|
|
|
|
<div class="block-right-text">
|
|
|
|
<q-avatar class="provider-logo">
|
|
|
|
<q-icon :name="`img:statics/providers/${data.provider}.svg`" />
|
|
|
|
</q-avatar>
|
|
|
|
<div class="block-right-text-label">{{data.provider}}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</q-card-section>
|
|
|
|
<q-card-section>
|
|
|
|
<div class="row items-start no-wrap">
|
|
|
|
<div class="col">
|
|
|
|
<div class="text-subtitle2">STATUS</div>
|
|
|
|
<div class="block-right-text">
|
|
|
|
<avatar-state :state="data.status | status "/>
|
|
|
|
<div v-bind:class="['block-right-text-label', `block-right-text-label-${data.status}`]">{{data.status | statusLabel}}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</q-card-section>
|
2019-09-13 06:24:04 +00:00
|
|
|
<q-card-section v-if="data.mirroring">
|
2019-09-10 12:40:05 +00:00
|
|
|
<div class="row items-start no-wrap">
|
2019-09-13 06:24:04 +00:00
|
|
|
<div class="col">
|
2019-09-10 12:40:05 +00:00
|
|
|
<div class="text-subtitle2">Main Service</div>
|
|
|
|
<q-chip
|
|
|
|
dense
|
|
|
|
class="app-chip app-chip-name">
|
|
|
|
{{ data.mirroring.service }}
|
|
|
|
</q-chip>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</q-card-section>
|
2019-09-13 06:24:04 +00:00
|
|
|
<q-card-section v-if="data.loadBalancer">
|
2019-09-10 12:40:05 +00:00
|
|
|
<div class="row items-start no-wrap">
|
2019-09-13 06:24:04 +00:00
|
|
|
<div class="col">
|
2019-09-10 12:40:05 +00:00
|
|
|
<div class="text-subtitle2">Pass Host Header</div>
|
2019-09-13 06:24:04 +00:00
|
|
|
<boolean-state :value="data.loadBalancer.passHostHeader"/>
|
2019-09-10 12:40:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</q-card-section>
|
|
|
|
|
|
|
|
<q-separator v-if="data.weighted && data.weighted.sticky" />
|
|
|
|
<q-card-section v-if="data.weighted && data.weighted.sticky" >
|
|
|
|
<div class="row items-start no-wrap">
|
|
|
|
<div class="text-subtitle1">Sticky: Cookie</div>
|
|
|
|
</div>
|
|
|
|
</q-card-section>
|
|
|
|
<q-card-section v-if="data.weighted && data.weighted.sticky" >
|
|
|
|
<div class="row items-start no-wrap">
|
|
|
|
<div class="col" v-if="data.weighted.sticky.cookie && data.weighted.sticky.cookie.name">
|
|
|
|
<div class="text-subtitle2">NAME</div>
|
|
|
|
<q-chip
|
|
|
|
dense
|
|
|
|
class="app-chip app-chip-entry-points">
|
|
|
|
{{ data.weighted.sticky.cookie.name }}
|
|
|
|
</q-chip>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</q-card-section>
|
|
|
|
<q-card-section v-if="data.weighted && data.weighted.sticky" >
|
|
|
|
<div class="row items-start no-wrap">
|
|
|
|
<div class="col">
|
|
|
|
<div class="text-subtitle2">SECURE</div>
|
|
|
|
<boolean-state :value="data.weighted.sticky.cookie.secure"/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col">
|
|
|
|
<div class="text-subtitle2">HTTP Only</div>
|
|
|
|
<boolean-state :value="data.weighted.sticky.cookie.httpOnly"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</q-card-section>
|
|
|
|
</q-scroll-area>
|
|
|
|
</q-card>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import AvatarState from './AvatarState'
|
|
|
|
import BooleanState from './BooleanState'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'PanelServiceDetails',
|
|
|
|
props: ['data', 'dense'],
|
|
|
|
components: {
|
|
|
|
BooleanState,
|
|
|
|
AvatarState
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
isDense () {
|
|
|
|
return this.dense !== undefined
|
|
|
|
}
|
|
|
|
},
|
|
|
|
filters: {
|
|
|
|
status (value) {
|
|
|
|
if (value === 'enabled') {
|
|
|
|
return 'positive'
|
|
|
|
}
|
|
|
|
if (value === 'disabled') {
|
|
|
|
return 'negative'
|
|
|
|
}
|
|
|
|
return value || 'negative'
|
|
|
|
},
|
|
|
|
statusLabel (value) {
|
|
|
|
if (value === 'enabled') {
|
|
|
|
return 'success'
|
|
|
|
}
|
|
|
|
if (value === 'disabled') {
|
|
|
|
return 'error'
|
|
|
|
}
|
|
|
|
return value || 'error'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
@import "../../css/sass/variables";
|
|
|
|
|
|
|
|
.panel-service-details {
|
|
|
|
height: 600px;
|
|
|
|
&-dense{
|
|
|
|
height: 400px;
|
|
|
|
}
|
|
|
|
.q-card__section {
|
|
|
|
padding: 24px;
|
|
|
|
+ .q-card__section {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.block-right-text{
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
.q-avatar{
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
&-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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.provider-logo {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|