2025-08-20 12:09:24 +08:00
|
|
|
<template>
|
|
|
|
<div class="go-top-alarms">
|
|
|
|
<div class="header">
|
|
|
|
<div class="title">
|
2025-08-20 18:36:43 +08:00
|
|
|
<div class="title-prefix">
|
|
|
|
<svg-icon icon-class="rocket" class="title-icon" :style="{ color: option.iconColor }"></svg-icon>
|
|
|
|
</div>
|
|
|
|
<div class="title-text">
|
|
|
|
<span :style="{ color: option.titleColor, fontSize: option.titleSize + 'px' }">{{ option.title }}</span>
|
|
|
|
</div>
|
2025-08-20 12:09:24 +08:00
|
|
|
</div>
|
|
|
|
<n-dropdown trigger="hover" :options="dropdownOptions" @select="handleSelect">
|
2025-08-20 18:36:43 +08:00
|
|
|
<div class="dropdown-button">
|
2025-08-20 12:09:24 +08:00
|
|
|
{{ selectedOption }}
|
2025-08-20 18:36:43 +08:00
|
|
|
<svg-icon icon-class="arrow-down" class="arrow-down-icon" />
|
|
|
|
</div>
|
2025-08-20 12:09:24 +08:00
|
|
|
</n-dropdown>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<ul>
|
|
|
|
<li v-for="(item, index) in option.dataset" :key="index" class="alarm-item">
|
|
|
|
<div class="item-info">
|
|
|
|
<span class="rank" :style="{ color: option.rankColor }">
|
2025-08-20 18:36:43 +08:00
|
|
|
<span class="rank-icon"></span>
|
2025-08-20 12:09:24 +08:00
|
|
|
{{ item.rank }}
|
|
|
|
</span>
|
|
|
|
<span class="name" :style="{ color: option.nameColor }">{{ item.name }}</span>
|
|
|
|
</div>
|
|
|
|
<div class="item-value">
|
|
|
|
<span class="value" :style="{ color: option.valueColor }">{{ item.value }}</span>
|
|
|
|
</div>
|
2025-08-20 18:36:43 +08:00
|
|
|
<div class="progress-bar-wrapper">
|
|
|
|
<div class="progress-bar">
|
|
|
|
<div
|
|
|
|
class="progress"
|
|
|
|
:style="{
|
|
|
|
width: calculateWidth(item.value),
|
|
|
|
background: `linear-gradient(to right, ${option.barColorStart}, ${option.barColorEnd})`
|
|
|
|
}"
|
|
|
|
></div>
|
|
|
|
</div>
|
2025-08-20 12:09:24 +08:00
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { ref, computed, PropType } from 'vue'
|
|
|
|
import { option as configOption } from './config'
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
chartConfig: {
|
|
|
|
type: Object as PropType<{ option: typeof configOption }>,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const option = computed(() => props.chartConfig.option)
|
|
|
|
|
|
|
|
const selectedOption = ref(props.chartConfig.option.dropdownDefault)
|
|
|
|
|
|
|
|
const dropdownOptions = computed(() => {
|
|
|
|
return props.chartConfig.option.dropdownOptions.map(opt => ({
|
|
|
|
label: opt,
|
|
|
|
key: opt
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
|
|
|
|
const maxValue = computed(() => {
|
2025-08-20 18:36:43 +08:00
|
|
|
const values = props.chartConfig.option.dataset.map(item => item.value)
|
|
|
|
return Math.max(...values, 1) // Avoid division by zero
|
2025-08-20 12:09:24 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
const calculateWidth = (value: number) => {
|
|
|
|
if (maxValue.value === 0) return '0%'
|
2025-08-20 18:36:43 +08:00
|
|
|
return `${(value / maxValue.value) * 80}%` // Max width 80% to leave space for value
|
2025-08-20 12:09:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const handleSelect = (key: string) => {
|
|
|
|
selectedOption.value = key
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.go-top-alarms {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2025-08-20 18:36:43 +08:00
|
|
|
background-color: #0a162b;
|
2025-08-20 12:09:24 +08:00
|
|
|
padding: 15px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2025-08-20 18:36:43 +08:00
|
|
|
color: #fff;
|
2025-08-20 12:09:24 +08:00
|
|
|
|
|
|
|
.header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
.title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2025-08-20 18:36:43 +08:00
|
|
|
.title-prefix {
|
|
|
|
width: 40px;
|
|
|
|
height: 35px;
|
|
|
|
background-image: linear-gradient(to bottom, #2e69e0, #1e55a7);
|
|
|
|
clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
.title-icon {
|
|
|
|
font-size: 22px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.title-text {
|
|
|
|
height: 35px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
background-image: linear-gradient(to bottom, #17325f, #0e2142);
|
|
|
|
padding: 0 20px 0 20px;
|
|
|
|
margin-left: -10px;
|
|
|
|
clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-button {
|
|
|
|
height: 30px;
|
|
|
|
padding: 0 15px;
|
|
|
|
background-color: #034a4b;
|
|
|
|
border: 1px solid #00e5ff;
|
|
|
|
border-radius: 15px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #fff;
|
|
|
|
.arrow-down-icon {
|
|
|
|
margin-left: 8px;
|
|
|
|
font-size: 14px;
|
2025-08-20 12:09:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
flex: 1;
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2025-08-20 18:36:43 +08:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-around;
|
2025-08-20 12:09:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.alarm-item {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr auto;
|
|
|
|
grid-template-rows: auto auto;
|
|
|
|
grid-template-areas:
|
2025-08-20 18:36:43 +08:00
|
|
|
'info value'
|
|
|
|
'bar bar';
|
|
|
|
align-items: center;
|
2025-08-20 12:09:24 +08:00
|
|
|
gap: 5px 15px;
|
|
|
|
|
|
|
|
.item-info {
|
|
|
|
grid-area: info;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
.rank {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-right: 10px;
|
2025-08-20 18:36:43 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2025-08-20 12:09:24 +08:00
|
|
|
.rank-icon {
|
2025-08-20 18:36:43 +08:00
|
|
|
display: inline-block;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: #00e5ff;
|
|
|
|
margin-right: 8px;
|
|
|
|
box-shadow: 0 0 5px #00e5ff;
|
2025-08-20 12:09:24 +08:00
|
|
|
}
|
|
|
|
}
|
2025-08-20 18:36:43 +08:00
|
|
|
.name {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2025-08-20 12:09:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.item-value {
|
|
|
|
grid-area: value;
|
|
|
|
text-align: right;
|
2025-08-20 18:36:43 +08:00
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
2025-08-20 12:09:24 +08:00
|
|
|
}
|
|
|
|
|
2025-08-20 18:36:43 +08:00
|
|
|
.progress-bar-wrapper {
|
2025-08-20 12:09:24 +08:00
|
|
|
grid-area: bar;
|
2025-08-20 18:36:43 +08:00
|
|
|
width: calc(100% - 60px); /* Adjust width to not overlap value */
|
|
|
|
position: relative;
|
|
|
|
left: 60px; /* Align with name */
|
|
|
|
}
|
|
|
|
|
|
|
|
.progress-bar {
|
2025-08-20 12:09:24 +08:00
|
|
|
width: 100%;
|
2025-08-20 18:36:43 +08:00
|
|
|
height: 5px;
|
|
|
|
background-color: rgba(42, 58, 91, 0.5);
|
2025-08-20 12:09:24 +08:00
|
|
|
border-radius: 3px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.progress {
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-08-20 18:36:43 +08:00
|
|
|
</style>
|