| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544 |
- <template>
- <div class="h-100 position-relative">
- <div class="dashboard-card-wrap">
- <div class="dashboard-card-header">
- <div class="dashboard-card-header-left">
- {{ form.fd.name || $t('dashboard.text_6') }}<a-icon class="ml-2" type="loading" v-if="loading" />
- <span v-if="isResDeny" class="ml-2"><a-icon class="warning-color mr-1" type="warning" />{{ $t('common.permission.403') }}</span>
- <span v-if="isUsageKeyDeny" class="ml-2">
- <a-tooltip class="mr-2"><template slot="title">{{ $t('dashboard.usage_key_deny_tips') }}</template><icon type="help" /></a-tooltip>
- <a-icon class="warning-color mr-1" type="warning" />
- {{ $t('dashboard.usage_key_deny_tips_2') }}
- </span>
- </div>
- <div class="dashboard-card-header-right">
- <slot name="actions" :handle-edit="handleEdit" />
- </div>
- </div>
- <div class="dashboard-card-body align-items-center">
- <a-progress v-if="isRing" type="circle" :percent="percent" :strokeWidth="12" :status="status" :strokeColor="percentColor">
- <template v-slot:format><span class="percent-tips" :style="{ color: '#000' }">{{ percentTips }}</span></template>
- </a-progress>
- <liquid-fill v-else :value="decimalPercent" />
- <div class="flex-fill ml-4">
- <div class="d-flex bottomborder-box align-items-end">
- <div :class="`label-unit ${jumpParams.usedPath ? 'label-jump' : ''}`" @click="goJump('used')">{{ useLabel }}</div>
- <div class="flex-number mr-2 ml-1 text-right">{{isResDeny ? '-' : usage.usage}}</div>
- <div class="label-unit">{{ usage.unit }}</div>
- </div>
- <div class="d-flex bottomborder-box align-items-end">
- <div :class="`label-unit ${jumpParams.reservedPath ? 'label-jump' : ''}`" @click="goJump('reserved')">{{ unUseLabel }}</div>
- <div class="flex-number mr-2 ml-1 text-right">{{isResDeny ? '-' : displayUnUsage.usage}}</div>
- <div class="label-unit">{{displayUnUsage.unit}}</div>
- </div>
- <div class="d-flex bottomborder-box align-items-end">
- <div :class="`label-unit ${jumpParams.allPath ? 'label-jump' : ''}`" @click="goJump('all')">{{ $t('dashboard.text_44') }}</div>
- <div class="flex-number mr-2 ml-1 text-right">{{isResDeny ? '-' : allUsage.usage}}</div>
- <div class="label-unit">{{allUsage.unit}}</div>
- </div>
- </div>
- </div>
- </div>
- <base-drawer class="ring-drawer-wrapper" @update:visible="updateVisible" :visible="visible" :title="$t('dashboard.text_5')" @ok="handleSubmit">
- <slot />
- <a-form
- hideRequiredMark
- :form="form.fc"
- v-bind="formItemLayout">
- <a-form-item :label="$t('dashboard.text_6')">
- <a-input v-decorator="decorators.name" />
- </a-form-item>
- <k8s-config :fc="form.fc" :fd="form.fd" :decorators="decorators" />
- <a-form-item :label="$t('dashboard.chart_type')">
- <a-radio-group v-decorator="decorators.chart_type" @change="chartTypeChange">
- <a-radio-button value="ring">{{ $t('dashboard.ring') }}</a-radio-button>
- <a-radio-button value="liquidfill">{{ $t('dashboard.liquidfill') }}</a-radio-button>
- </a-radio-group>
- </a-form-item>
- <a-form-item v-if="isRing" :label="colorLabel || $t('dashboard.color.scheme')" class="mb-0">
- <a-select
- @change="colorChange"
- v-decorator="decorators.color">
- <a-select-option v-for="item in ringColors" :key="item.key" :value="item.key">
- <div>
- <a-progress :show-info="false" :stroke-color="{ '60%': item.percent60, '80%': item.percent80, '100%': item.percent100}" :percent="100" />
- </div>
- <div class="text-color-help">{{ item.label }}</div>
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-form>
- </base-drawer>
- </div>
- </template>
- <script>
- import _ from 'lodash'
- import { mapGetters } from 'vuex'
- import BaseDrawer from '@Dashboard/components/BaseDrawer'
- import { K8S_USAGE_CONFIG, getTargetRangeUsageKey } from '@Dashboard/constants'
- import { load } from '@Dashboard/utils/cache'
- import { getRequestT } from '@/utils/utils'
- import K8sConfig from '@Dashboard/sections/K8sConfig'
- import { numerify } from '@/filters'
- import { chartColors } from '@/constants'
- import { hasPermission } from '@/utils/auth'
- import mixin from './mixin'
- export default {
- name: 'RingK8s',
- components: {
- BaseDrawer,
- K8sConfig,
- },
- mixins: [mixin],
- props: {
- dataRangeParams: {
- type: Object,
- },
- },
- data () {
- const initialNameValue = ((this.params && this.params.type === 'k8s') && this.params.name) || this.$t('dashboard.text_45')
- const initialAllUsageKeyValue = ((this.params && this.params.type === 'k8s') && this.params.all_usage_key) || 'all.cluster.node.memory.capacity'
- const initialUsageKeyValue = ((this.params && this.params.type === 'k8s') && this.params.usage_key) || 'all.cluster.node.memory.request'
- const initialColorValue = ((this.params && this.params.type !== 'k8s') && this.params.color) || 'default'
- const initialUsageLabelValue = ((this.params && this.params.type !== 'k8s') && this.params.usage_label && this.params.usage_label.length > 0) ? this.params.usage_label : this.$t('dashboard.text_33')
- const initialUnUsageLabelValue = ((this.params && this.params.type !== 'k8s') && this.params.un_usage_label && this.params.un_usage_label.length > 0) ? this.params.un_usage_label : this.$t('dashboard.text_34')
- const initialChartTypeValue = ((this.params && this.params.type !== 'k8s') && this.params.chart_type) || 'ring'
- return {
- data: {},
- loading: false,
- form: {
- fc: this.$form.createForm(this, { onValuesChange: this.onValuesChange }),
- fd: {
- name: initialNameValue,
- all_usage_key: initialAllUsageKeyValue,
- usage_key: initialUsageKeyValue,
- usage_label: initialUsageLabelValue,
- un_usage_label: initialUnUsageLabelValue,
- color: initialColorValue,
- chart_type: initialChartTypeValue,
- },
- },
- decorators: {
- name: [
- 'name',
- {
- initialValue: initialNameValue,
- rules: [
- { required: true, message: this.$t('dashboard.text_8') },
- ],
- },
- ],
- all_usage_key: [
- 'all_usage_key',
- {
- initialValue: initialAllUsageKeyValue,
- rules: [
- { required: true, message: this.$t('dashboard.text_22') },
- ],
- },
- ],
- usage_key: [
- 'usage_key',
- {
- initialValue: initialUsageKeyValue,
- rules: [
- { required: true, message: this.$t('dashboard.text_22') },
- ],
- },
- ],
- color: [
- 'color',
- {
- initialValue: initialColorValue,
- },
- ],
- usage_label: [
- 'usage_label',
- {
- initialValue: initialUsageLabelValue,
- rules: [
- { required: true, message: this.$t('dashboard.usage_label_title') },
- ],
- },
- ],
- un_usage_label: [
- 'un_usage_label',
- {
- initialValue: initialUnUsageLabelValue,
- rules: [
- { required: true, message: this.$t('dashboard.un_usage_label_title') },
- ],
- },
- ],
- chart_type: [
- 'chart_type',
- {
- initialValue: initialChartTypeValue,
- },
- ],
- },
- }
- },
- computed: {
- ...mapGetters(['userInfo', 'scope', 'isAdminMode', 'isDomainMode']),
- isUsageKeyDeny () {
- const usageConfig = getTargetRangeUsageKey(this.form.fd.usage_key, this.scope, this.dataRangeParams?.scope, K8S_USAGE_CONFIG)
- const allUsageConfig = getTargetRangeUsageKey(this.form.fd.all_usage_key, this.scope, this.dataRangeParams?.scope, K8S_USAGE_CONFIG)
- if (usageConfig.error || usageConfig.usageKey === 'null' || !usageConfig.usageKey || allUsageConfig.error || allUsageConfig.usageKey === 'null' || !allUsageConfig.usageKey) {
- return true
- }
- return false
- },
- isRing () {
- return this.form.fd.chart_type === 'ring'
- },
- allUsageNumber () {
- const usageKey = getTargetRangeUsageKey(this.form.fd.all_usage_key, this.scope, this.dataRangeParams?.scope, K8S_USAGE_CONFIG).usageKey
- if (!usageKey || usageKey === 'null') {
- return 0
- }
- return (this.data && _.get(this.data, usageKey)) || 0
- },
- usageNumber () {
- const usageKey = getTargetRangeUsageKey(this.form.fd.usage_key, this.scope, this.dataRangeParams?.scope, K8S_USAGE_CONFIG).usageKey
- if (!usageKey || usageKey === 'null') {
- return 0
- }
- return (this.data && _.get(this.data, usageKey)) || 0
- },
- allUsageConfig () {
- return K8S_USAGE_CONFIG[this.form.fd.all_usage_key]
- },
- usageConfig () {
- return K8S_USAGE_CONFIG[this.form.fd.usage_key]
- },
- allUsage () {
- let ret = this.allUsageNumber
- if (this.allUsageConfig && this.allUsageConfig.formatter) {
- ret = this.allUsageConfig.formatter(ret)
- }
- if (this.allUsageConfig && this.allUsageConfig.unit) {
- ret = `${ret} ${this.allUsageConfig.unit}`
- }
- return {
- usage: ret.toString().split(' ')[0],
- unit: ret.toString().split(' ')[1] || '',
- }
- },
- usage () {
- let ret = this.usageNumber
- if (this.usageConfig && this.usageConfig.formatter) {
- ret = this.usageConfig.formatter(ret)
- }
- if (this.usageConfig && this.usageConfig.unit) {
- ret = `${ret} ${this.usageConfig.unit}`
- }
- return {
- usage: ret.toString().split(' ')[0],
- unit: ret.toString().split(' ')[1] || '',
- }
- },
- unUsage () {
- const ret = this.allUsageNumber - this.usageNumber
- return ret < 0 ? 0 : ret
- },
- displayUnUsage () {
- let ret = this.unUsage
- if (
- (this.allUsageConfig && this.allUsageConfig.formatter) &&
- (this.usageConfig && this.usageConfig.formatter)
- ) {
- ret = this.usageConfig.formatter(this.unUsage)
- }
- if (
- (this.allUsageConfig && this.allUsageConfig.unit) &&
- (this.usageConfig && this.usageConfig.unit)
- ) {
- ret = `${ret} ${this.usageConfig.unit}`
- }
- return {
- usage: ret.toString().split(' ')[0],
- unit: ret.toString().split(' ')[1] || this.usage.unit,
- }
- },
- decimalPercent () {
- if (this.usageNumber === 0 || this.allUsageNumber === 0) return '0'
- const percent = this.usageNumber / this.allUsageNumber
- if (percent > 0 && percent < 0.01) {
- return '0.004'
- }
- return numerify(this.usageNumber / this.allUsageNumber, '0.00')
- },
- percent () {
- const data = parseFloat(this.decimalPercent)
- if (data > 0 && data < 0.01) {
- return 0.4
- }
- return numerify(data * 100, 0.0)
- },
- percentTips () {
- if (this.percent < 1) {
- return '< 1%'
- }
- return `${this.percent} %`
- },
- colorConfig () {
- return (this.params && this.params.color) || 'blue'
- },
- percentColor () {
- switch (this.colorConfig) {
- case 'default':
- if (this.percent < 60) {
- return chartColors[3]
- }
- if (this.percent < 80) {
- return chartColors[1]
- }
- return chartColors[2]
- case 'reverse':
- if (this.percent < 60) {
- return chartColors[2]
- }
- if (this.percent < 80) {
- return chartColors[1]
- }
- return chartColors[3]
- default:
- return chartColors[0]
- }
- },
- status () {
- let ret = 'normal'
- if (this.percent > 100) {
- ret = 'exception'
- }
- return ret
- },
- useLabel () {
- if (this.params) {
- return this.params.usage_label || this.$t('dashboard.text_43')
- }
- return this.$t('dashboard.text_43')
- },
- unUseLabel () {
- if (this.params) {
- return this.params.un_usage_label || this.$t('dashboard.text_34')
- }
- return this.$t('dashboard.text_34')
- },
- jumpParams () {
- const params = this.parseUsageKey(this.form.fd.all_usage_key || '', this.form.fd.usage_key || '')
- return params
- },
- isResDeny () {
- return !hasPermission({ key: 'k8s_usages_get' })
- },
- },
- watch: {
- 'form.fd' (val) {
- this.fetchUsage()
- for (const key in this.decorators) {
- let config = this.decorators[key][1] || {}
- config = {
- ...config,
- initialValue: val[key],
- }
- this.decorators[key][1] = config
- }
- },
- 'dataRangeParams.scope': {
- handler (val) {
- this.fetchUsage()
- },
- immediate: true,
- },
- 'dataRangeParams.domain': {
- handler (val) {
- this.fetchUsage()
- },
- immediate: true,
- },
- 'dataRangeParams.project': {
- handler (val) {
- this.fetchUsage()
- },
- immediate: true,
- },
- },
- created () {
- if (this.params && this.params.type === 'k8s') {
- this.form.fd = { chart_type: 'ring', ...this.params }
- }
- this.$emit('update', this.options.i, this.form.fd)
- },
- methods: {
- onValuesChange (props, values) {
- Object.keys(values).forEach((key) => {
- this.form.fd[key] = values[key]
- })
- },
- colorChange (color) {
- this.$emit('update:color', color)
- },
- chartTypeChange (type) {
- this.$emit('update:chart_type', type)
- },
- refresh () {
- return this.fetchUsage()
- },
- parseUsageKey (allKey, usageKey) {
- const str = allKey.replace(/^(all\.)|(domain\.)|(project\.)/, '')
- const list = str.split('.')
- const allFilterKey = list[1]
- const allFilterValue = list[2]
- const usageStr = usageKey.replace(/^(all\.)|(domain\.)|(project\.)/, '')
- const usageList = usageStr.split('.')
- // const usageResource = usageList[0]
- // const usageFilterKey = usageList[1]
- const usageFilterValue = usageList[2]
- // const usageFilterValue = usageList[2]
- let allPath = ''
- let usedPath = ''
- let reservedPath = ''
- const allParams = {}
- const usedParams = {}
- const reservedParams = {}
- switch (list[0]) {
- case 'cluster':
- if (allFilterKey === 'count') {
- allPath = '/k8s-cluster'
- usedPath = '/k8s-cluster'
- if (usageKey.startsWith('domain.')) {
- usedParams.domain = this.userInfo.projectDomain || ''
- }
- } else if (allFilterKey === 'node' && allFilterValue === 'count') {
- allPath = '/k8s-node'
- usedPath = '/k8s-node'
- reservedPath = '/k8s-node'
- if (usageFilterValue === 'ready_count') {
- usedParams.status = 'Ready'
- reservedParams.status = 'NotReady'
- } else if (usageFilterValue === 'not_ready_count') {
- usedParams.status = 'NotReady'
- reservedParams.status = 'Ready'
- }
- if (usageKey.startsWith('domain.')) {
- usedParams.domain = this.userInfo.projectDomain || ''
- }
- if (allKey.startsWith('domain.')) {
- allParams.domain = this.userInfo.projectDomain || ''
- }
- }
- }
- return {
- allPath,
- allParams,
- usedPath,
- usedParams,
- reservedPath,
- reservedParams,
- }
- },
- goJump (type) {
- this.$router.push({
- path: this.jumpParams[`${type}Path`],
- query: this.jumpParams[`${type}Params`],
- })
- },
- genUsageParams () {
- const params = {
- scope: this.$store.getters.scope,
- $t: getRequestT(),
- ignoreErrorStatusCode: [403],
- }
- if (this.isAdminMode) {
- if (this.dataRangeParams?.scope === 'domain' && this.dataRangeParams?.domain) {
- params.scope = 'domain'
- params.domain_id = this.dataRangeParams?.domain
- }
- if (this.dataRangeParams?.scope === 'project' && this.dataRangeParams?.project) {
- params.scope = 'project'
- params.project_id = this.dataRangeParams?.project
- }
- }
- if (this.isDomainMode) {
- if (this.dataRangeParams?.scope === 'project' && this.dataRangeParams?.project) {
- params.scope = 'project'
- params.project_id = this.dataRangeParams?.project
- }
- }
- return params
- },
- async fetchUsage () {
- this.loading = true
- try {
- const params = this.genUsageParams()
- const data = await load({
- res: 'usages',
- actionArgs: {
- url: '/v2/rpc/usages/k8s-usage',
- method: 'GET',
- params,
- },
- useManager: false,
- resPath: 'data',
- })
- this.data = data
- } finally {
- this.loading = false
- }
- },
- handleEdit () {
- this.updateVisible(true)
- },
- updateVisible (val) {
- this.$emit('update:visible', val)
- },
- async handleSubmit () {
- try {
- const values = await this.form.fc.validateFields()
- this.form.fd = values
- this.$emit('update', this.options.i, { type: 'k8s', ...values })
- this.updateVisible(false)
- } catch (error) {
- throw error
- }
- },
- },
- }
- </script>
- <style lang="less" scoped>
- .flex-number{
- font-size: 18px;
- line-height: 19px;
- flex: 1 1 auto;
- color: #000;
- font-weight: bold;
- }
- .label-unit{
- color: #837F89;
- }
- .label-jump{
- color: var(--antd-wave-shadow-color);
- cursor: pointer;
- }
- .percent-tips {
- font-size: 22px;
- font-weight: bold;
- }
- .ring-drawer-wrapper {
- &::v-deep.ant-drawer.ant-drawer-open .ant-drawer-mask {
- animation: none;
- }
- }
- .bottomborder-box{
- border-bottom: 1px solid #F2F2F2;
- margin: 10px 0;
- padding: 5px 0;
- }
- </style>
|