优化:周视图月开始分隔线实现使用canvas替代dom

This commit is contained in:
qiuchengw
2025-11-12 08:24:55 +08:00
parent cf094c8e2c
commit e8d3bb77c6
2 changed files with 41 additions and 29 deletions
+39 -2
View File
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, watch, nextTick, onMounted } from 'vue'
import { ref, watch, nextTick, onMounted, computed } from 'vue'
import type { Task } from '../models/classes/Task'
import { getPredecessorIds } from '../utils/predecessorUtils'
@@ -11,6 +11,12 @@ interface TaskBarPosition {
height: number
}
// 定义月份分隔线位置类型
interface VerticalLine {
left: number
label?: string
}
// 定义 Props
interface Props {
tasks: Task[]
@@ -20,13 +26,24 @@ interface Props {
highlightedTaskId: number | null
highlightedTaskIds: Set<number>
hoveredTaskId: number | null
// 月份分隔线配置
verticalLines?: VerticalLine[]
showVerticalLines?: boolean
}
const props = defineProps<Props>()
const props = withDefaults(defineProps<Props>(), {
verticalLines: () => [],
showVerticalLines: true,
})
// Canvas 引用
const canvasRef = ref<HTMLCanvasElement | null>(null)
// 当前主题(用于分隔线颜色)
const isDarkTheme = computed(() => {
return document.documentElement.getAttribute('data-theme') === 'dark'
})
/**
* 绘制关系线到 Canvas
* 性能优势:相比 SVG 提升 18 倍渲染性能
@@ -52,6 +69,26 @@ const drawLinks = () => {
// 清空画布
ctx.clearRect(0, 0, rect.width, rect.height)
// 绘制月份分隔线(在关系线之前,作为背景)
if (props.showVerticalLines && props.verticalLines && props.verticalLines.length > 0) {
ctx.save()
// 使用与旗帜一致的主题色:浅色模式 #409eff,暗色模式 #66b1ff
const lineColor = isDarkTheme.value ? '#66b1ff' : '#409eff'
ctx.strokeStyle = lineColor
ctx.lineWidth = 1
// 绘制每条垂直线
for (const line of props.verticalLines) {
ctx.beginPath()
ctx.moveTo(line.left, 0)
ctx.lineTo(line.left, rect.height)
ctx.stroke()
}
ctx.restore()
}
// 获取当前渲染的任务ID集合
const currentTaskIds = new Set<number>()
for (const task of props.tasks) {