| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427 |
- <template>
- <div class="dmesg-container">
- <div class="dmesg-filter">
- <div class="d-flex align-items-center flex-wrap">
- <fixed-label-filter :label="$t('compute.ops_time')" class="mr-2 mb-2">
- <div class="d-flex align-items-center">
- <a-date-picker
- v-model="filterForm.startValue"
- :disabled-date="disabledStartDate"
- show-time
- format="YYYY-MM-DD HH:mm:ss"
- :placeholder="$t('compute.text_230')"
- :open="startOpen"
- @openChange="handleStartOpenChange"
- @change="handleTimeChange"
- style="width: 200px; margin-right: 5px;" />
- ~
- <a-date-picker
- v-model="filterForm.endValue"
- :disabled-date="disabledEndDate"
- show-time
- format="YYYY-MM-DD HH:mm:ss"
- :placeholder="$t('compute.text_231')"
- :open="endOpen"
- @openChange="handleEndOpenChange"
- @change="handleTimeChange"
- style="width: 200px;margin-left: 5px;" />
- </div>
- </fixed-label-filter>
- <fixed-label-filter :label="$t('compute.log_level')" class="mr-2 mb-2">
- <a-select
- v-model="filterForm.logLevels"
- mode="multiple"
- allow-clear
- style="min-width: 200px"
- @change="handleFilterChange">
- <a-select-option v-for="level in logLevelOptions" :key="level.value" :value="level.value">
- {{ level.label }}
- </a-select-option>
- </a-select>
- </fixed-label-filter>
- <fixed-label-filter :label="$t('compute.log_info')" class="mr-2 mb-2">
- <a-input
- v-model="filterForm.notes"
- allow-clear
- style="width: 200px"
- @input="handleFilterInput" />
- </fixed-label-filter>
- <div class="mb-2">
- <a-button @click="handleResetFilter">
- {{ $t('common.reset') }}
- </a-button>
- </div>
- </div>
- </div>
- <div
- ref="scrollContainer"
- class="dmesg-scroll-container"
- @scroll="handleScroll">
- <div v-if="loading && dataList.length === 0" class="loading-wrapper">
- <a-spin size="large" />
- </div>
- <div v-else-if="dataList.length === 0" class="empty-wrapper">
- <a-empty :description="$t('common.notData')" />
- </div>
- <div v-else class="dmesg-list">
- <div
- v-for="(item, index) in dataList"
- :key="index"
- class="dmesg-item">
- <span style="font-weight: bold;">></span> {{ formatItem(item) }}
- </div>
- <div v-if="loadingMore" class="loading-more">
- <a-spin size="small" />
- <span class="ml-2">{{ $t('common_67') }}</span>
- </div>
- <div v-if="noMoreData && dataList.length > 0" class="no-more-data">
- {{ $t('common.load_no_more') }}
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import WindowsMixin from '@/mixins/windows'
- export default {
- name: 'Dmesg',
- mixins: [WindowsMixin],
- props: {
- resId: {
- type: String,
- required: true,
- },
- data: {
- type: Object,
- required: true,
- },
- },
- data () {
- return {
- dataList: [],
- loading: false,
- loadingMore: false,
- noMoreData: false,
- nextMarker: null,
- pageSize: 50,
- scrollContainer: null,
- filterForm: {
- startValue: null,
- endValue: null,
- logLevels: [],
- notes: '',
- },
- startOpen: false,
- endOpen: false,
- logLevelOptions: ['emerg', 'alert', 'crit', 'err', 'warning'].map(level => ({
- label: level,
- value: level,
- })),
- debounceTimer: null,
- currentFilterParams: {},
- previousStartValue: null,
- previousEndValue: null,
- }
- },
- created () {
- this.fetchData()
- },
- mounted () {
- this.scrollContainer = this.$refs.scrollContainer
- },
- beforeDestroy () {
- if (this.debounceTimer) {
- clearTimeout(this.debounceTimer)
- }
- },
- methods: {
- async fetchData (isLoadMore = false) {
- if (this.loading || this.loadingMore) return
- if (isLoadMore) {
- this.loadingMore = true
- } else {
- this.loading = true
- this.dataList = []
- this.noMoreData = false
- }
- try {
- const manager = new this.$Manager('hostdmesgs', 'v1')
- const params = {
- limit: this.pageSize,
- scope: this.$store.getters.scope,
- filter: [],
- }
- if (this.nextMarker) {
- params.paging_marker = this.nextMarker
- }
- // 添加过滤条件 - 只有 since 或只有 until 都可以进行过滤
- const hasStartValue = this.filterForm.startValue && this.$moment(this.filterForm.startValue).isValid()
- const hasEndValue = this.filterForm.endValue && this.$moment(this.filterForm.endValue).isValid()
- if (hasStartValue) {
- const startTime = this.$moment(this.filterForm.startValue).utc().format('YYYY-MM-DD HH:mm:ss')
- params.since = startTime
- }
- if (hasEndValue) {
- const endTime = this.$moment(this.filterForm.endValue).utc().format('YYYY-MM-DD HH:mm:ss')
- params.until = endTime
- }
- if (this.filterForm.logLevels && this.filterForm.logLevels.length > 0) {
- params.log_levels = this.filterForm.logLevels
- }
- if (this.filterForm.notes && this.filterForm.notes.trim()) {
- const notesFilter = `notes.contains("${this.filterForm.notes.trim()}")`
- params.filter.push(notesFilter)
- }
- this.currentFilterParams = params
- const response = await manager.list({
- params: {
- ...params,
- obj_id: this.resId,
- obj_type: 'host',
- show_dmesg_log: true,
- },
- })
- const newData = response.data?.data || response.data?.items || response.data || []
- const nextMarker = response.data?.next_marker || response.data?.marker || null
- if (isLoadMore) {
- this.dataList = [...this.dataList, ...newData]
- } else {
- this.dataList = newData
- }
- this.nextMarker = nextMarker
- this.noMoreData = !nextMarker
- // 加载完成后滚动到顶部(非 loadMore 方式)
- if (!isLoadMore) {
- this.$nextTick(() => {
- this.scrollToTop()
- })
- }
- } catch (error) {
- this.$message.error(error.message || this.$t('compute.text_155'))
- } finally {
- this.loading = false
- this.loadingMore = false
- }
- },
- handleScroll (event) {
- const container = event.target
- const scrollTop = container.scrollTop
- const scrollHeight = container.scrollHeight
- const clientHeight = container.clientHeight
- // 当滚动到距离底部 100px 时加载更多
- if (scrollHeight - scrollTop - clientHeight < 100) {
- if (this.nextMarker && !this.loadingMore && !this.noMoreData) {
- this.fetchData(true)
- }
- }
- },
- scrollToTop () {
- if (this.scrollContainer) {
- this.scrollContainer.scrollTop = 0
- }
- },
- scrollToBottom () {
- if (this.scrollContainer) {
- this.scrollContainer.scrollTop = this.scrollContainer.scrollHeight
- }
- },
- formatItem (item) {
- return `${item.ops_time ? this.$moment(item.ops_time).format('YYYY-MM-DD HH:mm:ss') : '-'} [${item.log_level || '-'}] ${item.notes || ''}`
- },
- handleFilterChange () {
- // 清除之前的防抖定时器
- if (this.debounceTimer) {
- clearTimeout(this.debounceTimer)
- }
- // 立即执行过滤
- this.doFilter()
- },
- handleFilterInput () {
- // 清除之前的防抖定时器
- if (this.debounceTimer) {
- clearTimeout(this.debounceTimer)
- }
- // 设置新的防抖定时器,500ms 后执行
- this.debounceTimer = setTimeout(() => {
- this.doFilter()
- }, 500)
- },
- doFilter () {
- // 重置分页和标记
- this.nextMarker = null
- this.dataList = []
- this.noMoreData = false
- // 更新保存的时间值
- this.previousStartValue = this.filterForm.startValue ? this.$moment(this.filterForm.startValue).valueOf() : null
- this.previousEndValue = this.filterForm.endValue ? this.$moment(this.filterForm.endValue).valueOf() : null
- // 重新加载数据
- this.fetchData(false)
- },
- handleResetFilter () {
- // 清除防抖定时器
- if (this.debounceTimer) {
- clearTimeout(this.debounceTimer)
- this.debounceTimer = null
- }
- // 重置过滤条件
- this.filterForm = {
- startValue: null,
- endValue: null,
- logLevels: [],
- notes: '',
- }
- this.startOpen = false
- this.endOpen = false
- // 重置保存的时间值
- this.previousStartValue = null
- this.previousEndValue = null
- // 重置分页和标记
- this.nextMarker = null
- this.dataList = []
- this.noMoreData = false
- // 重新加载数据
- this.fetchData(false)
- },
- disabledStartDate (startValue) {
- const endValue = this.filterForm.endValue
- if (!startValue || !endValue) {
- return false
- }
- return startValue.valueOf() > endValue.valueOf()
- },
- disabledEndDate (endValue) {
- const startValue = this.filterForm.startValue
- if (!endValue || !startValue) {
- return false
- }
- return endValue.valueOf() < startValue.valueOf()
- },
- handleStartOpenChange (open) {
- this.startOpen = open
- if (open) {
- this.endOpen = false
- // 弹框打开时,保存当前值
- this.previousStartValue = this.filterForm.startValue ? this.$moment(this.filterForm.startValue).valueOf() : null
- } else {
- // 弹框关闭时,检查时间是否发生改动
- this.checkTimeChangeAndFilter('start')
- }
- },
- handleEndOpenChange (open) {
- this.endOpen = open
- if (open) {
- this.startOpen = false
- // 弹框打开时,保存当前值
- this.previousEndValue = this.filterForm.endValue ? this.$moment(this.filterForm.endValue).valueOf() : null
- } else {
- // 弹框关闭时,检查时间是否发生改动
- this.checkTimeChangeAndFilter('end')
- }
- },
- checkTimeChangeAndFilter (type) {
- let currentValue = null
- let previousValue = null
- if (type === 'start') {
- currentValue = this.filterForm.startValue ? this.$moment(this.filterForm.startValue).valueOf() : null
- previousValue = this.previousStartValue
- } else if (type === 'end') {
- currentValue = this.filterForm.endValue ? this.$moment(this.filterForm.endValue).valueOf() : null
- previousValue = this.previousEndValue
- }
- // 如果时间值发生了变化,执行过滤
- if (currentValue !== previousValue) {
- this.doFilter()
- }
- },
- handleTimeChange (e) {
- if (!e) this.doFilter()
- },
- },
- }
- </script>
- <style lang="less" scoped>
- .dmesg-container {
- height: 100%;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- }
- .dmesg-filter {
- background-color: #fff;
- flex-shrink: 0;
- z-index: 1;
- position: relative;
- }
- .dmesg-scroll-container {
- flex: 1;
- overflow-y: auto;
- padding: 16px;
- background-color: #f5f5f5;
- min-height: 0;
- position: relative;
- }
- .loading-wrapper,
- .empty-wrapper {
- display: flex;
- align-items: center;
- justify-content: center;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- min-height: 300px;
- background-color: transparent;
- }
- .dmesg-list {
- .dmesg-item {
- padding: 5px 3px;
- // background-color: #fff;
- font-family: 'Courier New';
- font-size: 14px;
- line-height: 1.6;
- word-break: break-all;
- white-space: pre-wrap;
- // border-left: 3px solid #1890ff;
- // &:hover {
- // background-color: #f0f0f0;
- // }
- }
- .loading-more {
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 16px;
- color: #999;
- }
- .no-more-data {
- text-align: center;
- padding: 16px;
- color: #999;
- font-size: 12px;
- }
- }
- </style>
|