| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <template>
- <div>
- <a-button v-if="!isTemplate" @click="handleRefresh" class="action-btn">
- <icon type="refresh" />
- </a-button>
- <loading-block v-if="loading && !isTemplate" />
- <!-- <detail
- v-else
- :data="data"
- :base-info="baseInfo"
- :on-manager="onManager"
- :showDesc="false"
- :hiddenKeys="['id', 'name', 'status', 'project_domain', 'tenant', 'created_at', 'updated_at']" /> -->
- <template v-else>
- <a-row :gutter="16">
- <a-col :span="isTemplate ? 8 : undefined" :md="isTemplate ? undefined : 12" :xl="isTemplate ? undefined : 8" :xxl="isTemplate ? undefined : 6" v-for="obj in baseInfo" :key="obj.field">
- <usage-quota :title="obj.title" :value="obj.value()" :is-template="isTemplate" />
- </a-col>
- </a-row>
- <a-row :gutter="16">
- <a-col :span="isTemplate ? 12 : undefined" :md="isTemplate ? undefined : 12" :xl="isTemplate ? undefined : 8" :xxl="isTemplate ? undefined : 6" v-for="obj in ringInfo" :key="obj.field">
- <usage-ring :title="obj.title" :field="obj.field" :options="obj.options" :is-template="isTemplate" />
- </a-col>
- </a-row>
- </template>
- </div>
- </template>
- <script>
- import * as R from 'ramda'
- import { USAGE_CONFIG_MAP, USAGE_RING_DATAS } from './constants'
- import UsageQuota from './components/UsageQuota'
- import UsageRing from './components/UsageRing'
- export default {
- name: 'CloudenvUsageSidepage',
- components: {
- UsageQuota,
- UsageRing,
- },
- props: {
- // 作为模板中的组件使用
- isTemplate: {
- type: Boolean,
- default: false,
- },
- scopeParams: {
- type: Object,
- default: () => ({}),
- },
- onManager: {
- type: Function,
- required: true,
- },
- resId: {
- type: String,
- required: true,
- },
- resource: {
- type: String,
- required: true,
- },
- },
- data () {
- return {
- data: {},
- loading: false,
- baseInfo: [],
- ringInfo: [],
- }
- },
- created () {
- this.fetchData()
- },
- methods: {
- initBaseInfo () {
- const isAdminMode = this.isTemplate ? this.scopeParams.scope === 'system' && !this.scopeParams.project_id && !this.scopeParams.domain_id : this.$store.getters.isAdminMode
- const isDomainMode = this.isTemplate ? this.scopeParams.scope === 'domain' && !this.scopeParams.project_id : this.$store.getters.isDomainMode
- const baseInfo = []
- Object.keys(USAGE_CONFIG_MAP).forEach((key) => {
- const item = USAGE_CONFIG_MAP[key] || {}
- if (!item.noPerfix) {
- if (isAdminMode) key = `all.${key}`
- if (isDomainMode) key = `domain.${key}`
- }
- baseInfo.push({
- field: key,
- title: item.zh_cn || key,
- value: () => {
- return R.is(Function, item.formatter) ? item.formatter(this.data[key]) : `${this.data[key] || 0} ${item.unit || ''}`
- },
- })
- })
- return baseInfo
- },
- initRingInfo () {
- const isAdminMode = this.isTemplate ? this.scopeParams.scope === 'system' && !this.scopeParams.project_id && !this.scopeParams.domain_id : this.$store.getters.isAdminMode
- const isDomainMode = this.isTemplate ? this.scopeParams.scope === 'domain' && !this.scopeParams.project_id : this.$store.getters.isDomainMode
- const ringInfo = []
- const getUnuse = (sum = 0, use = 0) => {
- return sum - use
- }
- USAGE_RING_DATAS.forEach((obj) => {
- let key = ''
- if (!obj.noPerfix) {
- if (isAdminMode) key = 'all'
- if (isDomainMode) key = 'domain'
- }
- const sum = key ? `${key}.${obj.sum}` : obj.sum
- const use = key ? `${key}.${obj.use}` : obj.use
- ringInfo.push({
- field: sum,
- title: obj.name,
- options: {
- label: {
- sum: obj.sum_label || this.$t('common_234'),
- use: obj.use_label,
- unuse: obj.unuse_label,
- },
- value: {
- sum: this.data[sum],
- use: this.data[use],
- unuse: getUnuse(this.data[sum], this.data[use]),
- },
- },
- })
- })
- return ringInfo
- },
- async fetchData () {
- try {
- this.loading = true
- const params = { scope: this.$store.getters.scope }
- if (this.isTemplate) {
- const { data } = await new this.$Manager('rpc', 'v2').get({
- resource: 'rpc',
- id: 'usages/general-usage',
- params: this.scopeParams,
- })
- this.data = data
- } else {
- const { data } = await new this.$Manager('usages', 'v2').getSpecific({
- id: this.resource,
- spec: this.resId,
- params,
- })
- this.data = data
- }
- this.baseInfo = this.initBaseInfo()
- this.ringInfo = this.initRingInfo()
- this.loading = false
- } catch (error) {
- this.loading = false
- }
- },
- handleRefresh () {
- this.fetchData()
- },
- },
- }
- </script>
- <style lang="less" scoped>
- ::v-deep .detail-item {
- .detail-item-title {
- width: 220px !important;
- }
- .detail-item-value {
- margin-left: 220px;
- }
- }
- .action-btn {
- margin-bottom: 10px;
- color: rgba(0, 0, 0, 0.65);
- &:hover {
- color: #40a9ff;
- }
- }
- </style>
|