calendar.uvue 8.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
<template>
  <view class="root">
    <view class="date">
      <text class="date-text">{{ current_month }}</text>
    </view>
    <view ref="draw-header" class="calendar-header"></view>
    <view ref="draw-weeks" class="calendar-week" @touchstart="select"></view>
    <view class="btn-group">
      <button size="mini" @click="preDate">上个月</button>
      <button size="mini" @click="gotoToday">回到今天</button>
      <button size="mini" @click="nextDate">下个月</button>
    </view>
    <view>{{ timeData.fullDate }} {{ current_day }}</view>
  </view>
</template>
<script>
import { Calendar, DateType } from './index.uts'

type CoordsType = {
  x: number;
  y: number;
  width: number;
  height: number;
  data: DateType
}

export default {
  data () {
    return {
      weeks: [] as Array<Array<DateType>>,
      $coords: [] as Array<CoordsType>,
      $calendar: new Calendar() as Calendar,
      timeData: {
        fullDate: '',
        year: 0,
        month: 0,
        date: 0,
        day: 0,
        lunar: '',
        disabled: false,
        is_today: false
H
hdx 已提交
42 43
      } as DateType,
      testWidth: 0
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
    }
  },
  computed: {
    // 获取月份
    current_month (): string {
      const nowDate = this.timeData
      const month = nowDate.month
      return month < 10 ? '0' + month : month.toString()
    },
    current_day (): string {
      const time = this.timeData.data
      if (time == null) {
        return ''
      }
      return time.IMonthCn + time.IDayCn
    }
  },
  created () { },
  onReady () {
雪洛's avatar
雪洛 已提交
63 64 65
    const calendar = this.$data['$calendar'] as Calendar
    this.weeks = calendar.getWeeks()
    this.timeData = calendar.getDateInfo()
66 67 68
    // 绘制日历头部
    this.drawHeader()
    this.drawWeek(this.weeks, '')
H
hdx 已提交
69 70 71 72

    // 仅自动化测试
    const header = this.$refs['draw-header'] as UniElement
    this.testWidth = header.getBoundingClientRect().width;
73 74 75 76 77
  },
  methods: {

    // 触发整个日历的点击事件,需要计算点击位置
    select (event: TouchEvent) {
DCloud-yyl's avatar
DCloud-yyl 已提交
78
      const refs = this.$refs['draw-weeks'] as UniElement
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
      const rect = refs.getBoundingClientRect();
      const dom_x = rect.left; // 元素左上角相对于视口的 X 坐标
      const dom_y = rect.top; // 元素左上角相对于视口的 Y 坐标
      const touch = event.touches[0];
      const clientX = touch.clientX; // X 坐标
      const clientY = touch.clientY; // Y 坐标
      // 计算点击的相对位置
      const x = clientX - dom_x
      const y = clientY - dom_y

      this.clickGrid(x, y)
    },

    // 点击具体的日历格子
    clickGrid (x: number, y: number) {
      // 小格子数组
M
mehaotian 已提交
95 96 97
      // const gridArray = this.$data.$coords
      const calendar = this.$data['$calendar'] as Calendar
      const gridArray = this.$data['$coords'] as Array<CoordsType>
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112

      // 遍历小格子数组,找到最接近点击坐标的小格子
      for (let i = 0; i < gridArray.length; i++) {
        const grid = gridArray[i]
        // 计算小格子理论上的最大值
        const max_x = grid.x + grid.width
        const max_y = grid.y + grid.height

        const is_x_limit = grid.x < x && x < max_x
        const is_y_limit = grid.y < y && y < max_y

        const is_select = is_x_limit && is_y_limit

        if (is_select) {
          const data = grid.data
M
mehaotian 已提交
113
          this.timeData = calendar.getDateInfo(data.fullDate)
114 115 116 117 118 119 120
          this.drawWeek(this.weeks, grid.data.fullDate)
        }
      }
    },
    // 切换上个月
    preDate () {
      const fulldate = this.timeData.fullDate
M
mehaotian 已提交
121 122 123
      const calendar = this.$data['$calendar'] as Calendar
      const time = calendar.getDate(fulldate, -1, 'month')
      this.timeData = calendar.getDateInfo(time.fullDate)
124

M
mehaotian 已提交
125
      this.weeks = calendar.getWeeks(time.fullDate)
126 127 128 129 130 131 132 133

      // 重新绘制日历
      this.drawWeek(this.weeks, time.fullDate)

    },
    // 切换下个他
    nextDate () {
      const fulldate = this.timeData.fullDate
M
mehaotian 已提交
134 135 136
      const calendar = this.$data['$calendar'] as Calendar
      const time = calendar.getDate(fulldate, 1, 'month')
      this.timeData = calendar.getDateInfo(time.fullDate)
137

M
mehaotian 已提交
138
      this.weeks = calendar.getWeeks(time.fullDate)
139 140 141 142 143 144

      // 重新绘制日历
      this.drawWeek(this.weeks, time.fullDate)
    },
    // 回到今天
    gotoToday () {
M
mehaotian 已提交
145 146 147
      const calendar = this.$data['$calendar'] as Calendar
      const time = calendar.getDate()
      this.timeData = calendar.getDateInfo(time.fullDate)
148

M
mehaotian 已提交
149
      this.weeks = calendar.getWeeks(time.fullDate)
150 151 152 153 154 155 156

      // 重新绘制日历
      this.drawWeek(this.weeks, time.fullDate)
    },

    // 绘制日历顶部信息
    drawHeader () {
DCloud-yyl's avatar
DCloud-yyl 已提交
157
      const refs = this.$refs['draw-header'] as UniElement
158 159 160 161 162 163 164 165
      let ctx = refs.getDrawableContext()
      if (ctx == null) return
      const date_header_map = ['一', '二', '三', '四', '五', '六', '日']

      const width = refs.getBoundingClientRect().width
      const num = date_header_map.length
      const one_width = width / num

166 167 168
      ctx.font = '12'
      ctx.textAlign = 'center'

169 170 171 172 173 174 175 176 177
      for (let i = 0; i < num; i++) {
        let box_left = i * one_width + 2
        let box_width = one_width - 4
        let box_height = 26

        // 文本赋值
        const text = date_header_map[i]
        let text_left = box_width / 2 + box_left
        let text_top = box_height / 2 + 6
178

179 180 181 182 183 184 185 186
        ctx.fillText(text, text_left, text_top)
        ctx.update()
      }
    },

    // 绘制日历主体
    drawWeek (weeks: Array<Array<DateType>>, time: string) {
      const start_time = Date.now()
DCloud-yyl's avatar
DCloud-yyl 已提交
187
      const refs = this.$refs['draw-weeks'] as UniElement
188 189 190 191 192 193 194 195 196 197
      let ctx = refs.getDrawableContext()
      if (ctx == null) return
      const dom = refs.getBoundingClientRect()
      const width = dom.width
      const height = dom.height
      let week_len = weeks.length
      const one_width = width / weeks[0].length
      const one_height = height / week_len

      if (time !== '') {
M
mehaotian 已提交
198
        this.$data['$coords'] = [] as Array<CoordsType>
199 200 201
        ctx.reset()
      }

202 203
      ctx.textAlign = 'center'

204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
      for (let week = 0; week < week_len; week++) {

        const week_item = weeks[week]
        for (let day = 0; day < week_item.length; day++) {
          const day_item = week_item[day]
          let day_left = day * one_width + 2
          let day_top = one_height * week + 2
          let day_width = one_width - 4
          let day_height = one_height - 4

          // 文本赋值
          let text = day_item.date.toString()
          let text_left = day * one_width + (one_width / 2)
          let text_top = one_height * week + 25

          ctx.font = '16'

          // 日期是否禁用
          if (day_item.disabled) {
            ctx.fillStyle = '#ccc'
          } else {
            // 是否为今天
            if (day_item.is_today) {
              ctx.fillStyle = 'red'
            } else {
              // 是否为选中
              if (time === day_item.fullDate) {
                ctx.fillStyle = 'blue'
              } else {
                ctx.fillStyle = '#666'
              }
            }

            // 第一次渲染获取数据
            // if (time === '') {
            // 存储坐标组,用于点击事件
            const coords: CoordsType = {
              x: day_left,
              y: day_top,
              width: day_width,
              height: day_height,
              data: day_item
            }
M
mehaotian 已提交
247 248 249 250

            // TODO 兼容安卓data内$开头的属性的赋值问题
            let gridArr = this.$data['$coords'] as Array<CoordsType>
            gridArr.push(coords)
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
            // }
          }

          ctx.fillText(text, text_left, text_top)

          text = day_item.lunar
          let lunar_left = day * one_width + (one_width / 2)
          let lunar_top = one_height * week + 42
          ctx.font = '10'
          ctx.fillText(text, lunar_left, lunar_top)
        }
      }

      ctx.update()
      console.log('diff time', Date.now() - start_time);

    }
  }
}
</script>

<style>
.root {
  flex: 1;
  position: relative;
  padding: 15px;
  background-color: #fff;
}

.calendar-header {
  height: 30px;
  margin-bottom: 10px;
}

.date {
  margin-bottom: 10px;
  margin-left: 10px;
}

.date-text {
  font-size: 34px;
  font-weight: bold;
}

.calendar-week {
  height: 350px;
  margin: 2px 0;
}

.btn-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 20px 0;
}
306
</style>