blob: 0734e72a4779ec23c2bf259b3d98a74265ac1243 [file] [log] [blame]
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<template>
<div class="__container_app_detail">
<a-flex>
<a-card-grid>
<a-row :gutter="10">
<a-col :span="12">
<a-card class="_detail">
<a-descriptions class="description-column" :column="1">
<a-descriptions-item
v-for="(v, key, idx) in detailMap.left"
v-show="!!v"
:labelStyle="{ fontWeight: 'bold', width: '100px' }"
:label="$t('applicationDomain.' + key)"
>
{{ v[0] }}
</a-descriptions-item>
</a-descriptions>
</a-card>
</a-col>
<a-col :span="12">
<a-card class="_detail">
<a-descriptions class="description-column" :column="1">
<a-descriptions-item
v-for="(v, key, idx) in detailMap.right"
v-show="!!v"
:labelStyle="{ fontWeight: 'bold', width: '100px' }"
:label="$t('applicationDomain.' + key)"
>
{{ v[0] }}
</a-descriptions-item>
</a-descriptions>
</a-card>
</a-col>
</a-row>
<a-card style="margin-top: 10px" class="_detail">
<a-descriptions class="description-column" :column="1">
<a-descriptions-item
v-for="(v, key, idx) in detailMap.bottom"
v-show="!!v"
:labelStyle="{ fontWeight: 'bold' }"
:label="$t('applicationDomain.' + key)"
>
<template v-if="v?.length < 3">
<p v-for="item in v" class="description-item-content no-card">
{{ item }}
</p>
</template>
<a-card class="description-item-card" v-else>
<p
v-for="item in v"
@click="copyIt(item)"
class="description-item-content with-card"
>
{{ item }} <CopyOutlined />
</p>
</a-card>
</a-descriptions-item>
</a-descriptions>
</a-card>
</a-card-grid>
</a-flex>
</div>
</template>
<script setup lang="ts">
import { PRIMARY_COLOR, PRIMARY_COLOR_T } from '@/base/constants'
import { getApplicationDetail } from '@/api/service/app'
import { computed, onMounted, reactive, getCurrentInstance } from 'vue'
import { CopyOutlined } from '@ant-design/icons-vue'
import useClipboard from 'vue-clipboard3'
import { message } from 'ant-design-vue'
import type { ComponentInternalInstance } from 'vue'
const apiData: any = reactive({})
const {
appContext: {
config: { globalProperties }
}
} = <ComponentInternalInstance>getCurrentInstance()
let __ = PRIMARY_COLOR
let PRIMARY_COLOR_20 = PRIMARY_COLOR_T('20')
let detailMap = reactive({
left: {},
right: {},
bottom: {}
})
onMounted(async () => {
apiData.detail = await getApplicationDetail({})
let {
appName,
rpcProtocols,
dubboVersions,
dubboPorts,
serialProtocols,
appTypes,
images,
workloads,
deployCluster,
registerCluster,
registerMode
} = apiData.detail.data
detailMap.left = {
appName,
appTypes,
serialProtocols
}
detailMap.right = {
rpcProtocols,
dubboPorts,
dubboVersions
}
detailMap.bottom = {
images,
workloads,
deployCluster,
registerCluster,
registerMode
}
console.log(appName)
})
const toClipboard = useClipboard().toClipboard
function copyIt(v: string) {
message.success(globalProperties.$t('messageDomain.success.copy'))
toClipboard(v)
}
</script>
<style lang="less" scoped>
.__container_app_detail {
._detail {
box-shadow: 8px 8px 4px rgba(162, 162, 162, 0.19);
}
.description-item-content {
&.no-card {
padding-left: 20px;
}
&.with-card:hover {
color: v-bind('PRIMARY_COLOR');
}
}
.description-item-card {
:deep(.ant-card-body) {
padding: 10px;
}
width: 80%;
margin-left: 20px;
border: 1px dashed rgba(162, 162, 162, 0.19);
}
}
</style>