mirror of https://github.com/rancher/dashboard.git
186 lines
3.7 KiB
Vue
186 lines
3.7 KiB
Vue
<script>
|
|
import { CERTMANAGER, DESCRIPTION } from '@/config/labels-annotations';
|
|
import { DOCKER_JSON, TLS } from '@/models/secret';
|
|
import DetailTop from '@/components/DetailTop';
|
|
import SortableTable from '@/components/SortableTable';
|
|
import { KEY, VALUE } from '@/config/table-headers';
|
|
import { base64Decode } from '@/utils/crypto';
|
|
import CreateEditView from '@/mixins/create-edit-view';
|
|
import ResourceTabs from '@/components/form/ResourceTabs';
|
|
import KeyValue from '@/components/form/KeyValue';
|
|
|
|
export default {
|
|
components: {
|
|
DetailTop,
|
|
SortableTable,
|
|
ResourceTabs,
|
|
KeyValue
|
|
},
|
|
mixins: [CreateEditView],
|
|
props: {
|
|
value: {
|
|
type: Object,
|
|
default: () => {
|
|
return {};
|
|
}
|
|
}
|
|
},
|
|
data() {
|
|
return { relatedServices: [] };
|
|
},
|
|
computed: {
|
|
|
|
isCertificate() {
|
|
return this.value._type === TLS;
|
|
},
|
|
|
|
isRegistry() {
|
|
return this.value._type === DOCKER_JSON;
|
|
},
|
|
dockerJSON() {
|
|
return DOCKER_JSON;
|
|
},
|
|
|
|
dockerRows() {
|
|
const auths = JSON.parse(this.dataRows[0].value).auths;
|
|
const rows = [];
|
|
|
|
for (const address in auths) {
|
|
rows.push({
|
|
address,
|
|
username: auths[address].username,
|
|
password: auths[address].password
|
|
});
|
|
}
|
|
|
|
return rows;
|
|
},
|
|
|
|
dockerHeaders() {
|
|
const headers = [
|
|
{
|
|
name: 'address',
|
|
label: 'Address',
|
|
value: 'address',
|
|
},
|
|
{
|
|
name: 'username',
|
|
label: 'Username',
|
|
value: 'username',
|
|
}
|
|
];
|
|
|
|
return headers;
|
|
},
|
|
|
|
issuer() {
|
|
const { metadata:{ annotations = {} } } = this.value;
|
|
|
|
return annotations[CERTMANAGER.ISSUER];
|
|
},
|
|
|
|
description() {
|
|
const { metadata:{ annotations = {} } } = this.value;
|
|
|
|
return annotations[DESCRIPTION];
|
|
},
|
|
|
|
detailTopColumns() {
|
|
const columns = [
|
|
{
|
|
title: 'Type',
|
|
content: this.value.typeDisplay
|
|
}
|
|
];
|
|
|
|
if (this.issuer) {
|
|
columns.push({
|
|
title: 'Issuer',
|
|
content: this.issuer
|
|
});
|
|
}
|
|
|
|
return columns;
|
|
},
|
|
|
|
dataRows() {
|
|
const rows = [];
|
|
const { data = {} } = this.value;
|
|
|
|
Object.keys(data).forEach((key) => {
|
|
const value = base64Decode(data[key]);
|
|
|
|
rows.push({
|
|
key,
|
|
value
|
|
});
|
|
});
|
|
|
|
return rows;
|
|
},
|
|
|
|
dataHeaders() {
|
|
return [KEY, VALUE];
|
|
},
|
|
|
|
certRows() {
|
|
let { 'tls.key':key, 'tls.crt': crt } = this.value.data;
|
|
|
|
key = base64Decode(key);
|
|
crt = base64Decode(crt);
|
|
|
|
return [{ key, crt }];
|
|
},
|
|
|
|
certHeaders() {
|
|
return [
|
|
{
|
|
name: 'privateKey',
|
|
label: 'Private Key',
|
|
value: 'key'
|
|
},
|
|
{
|
|
name: 'cert',
|
|
label: 'CA Certificate',
|
|
value: 'crt'
|
|
}
|
|
];
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<DetailTop :columns="detailTopColumns" />
|
|
<template v-if="isRegistry">
|
|
<SortableTable
|
|
class="mt-20"
|
|
key-field="address"
|
|
:rows="dockerRows"
|
|
:headers="dockerHeaders"
|
|
:search="false"
|
|
:table-actions="false"
|
|
:row-actions="false"
|
|
/>
|
|
</template>
|
|
<template v-else-if="isCertificate">
|
|
<SortableTable
|
|
class="mt-20"
|
|
key-field="value"
|
|
:rows="certRows"
|
|
:headers="certHeaders"
|
|
:search="false"
|
|
:table-actions="false"
|
|
:row-actions="false"
|
|
/>
|
|
</template>
|
|
<template v-else>
|
|
<div class="mt-20 mb-20">
|
|
<KeyValue title="Data" :value="value.data" mode="view" />
|
|
</div>
|
|
</template>
|
|
<ResourceTabs v-model="value" :mode="mode" />
|
|
</div>
|
|
</template>
|