custom-hot-zone.component.ts 16.9 KB
Newer Older
李维's avatar
李维 committed
1 2 3 4
import { Component, ElementRef, EventEmitter, HostListener, Input, OnChanges, OnDestroy, OnInit, Output, ViewChild } from '@angular/core';
import { Subject } from 'rxjs';
import { debounceTime } from 'rxjs/operators';
import { EditorItem, HotZoneImageItem, Label, MySprite } from './Unit';
limingzhe's avatar
limingzhe committed
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 42 43
import TWEEN from '@tweenjs/tween.js';


@Component({
  selector: 'app-custom-hot-zone',
  templateUrl: './custom-hot-zone.component.html',
  styleUrls: ['./custom-hot-zone.component.scss']
})
export class CustomHotZoneComponent implements OnInit, OnDestroy, OnChanges {




  _bgItem = null;

  @Input()
  set bgItem(v) {
    this._bgItem = v;
    this.init();
  }
  get bgItem() {
    return this._bgItem;
  }

  @Input()
  imgItemArr = null;

  @Input()
  hotZoneItemArr = null;



  @Input()
  hotZoneArr = null;


  @Output()
  save = new EventEmitter();

李维's avatar
李维 committed
44 45 46 47 48 49 50 51
  @ViewChild('canvas') canvas: ElementRef;
  @ViewChild('wrap') wrap: ElementRef;
  @HostListener('window:resize', ['$event'])
  onResize(event) {
    this.g_winResizeEventStream.next();
  }

  g_winResizeEventStream = new Subject();
limingzhe's avatar
limingzhe committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

  canvasWidth = 1280;
  canvasHeight = 720;

  canvasBaseW = 1280;
  canvasBaseH = 720;
  mapScale = 1;

  ctx;
  mx;
  my; // 点击坐标


  // 资源
  // rawImages = new Map(res);

  // 声音
  bgAudio = new Audio();
  images = new Map();
  animationId: any;
72
  // winResizeEventStream = new Subject();
limingzhe's avatar
limingzhe committed
73 74 75 76 77 78 79 80 81 82
  canvasLeft;
  canvasTop;
  renderArr;
  imgArr = [];
  oldPos;
  curItem;
  bg: MySprite;
  changeSizeFlag = false;
  changeTopSizeFlag = false;
  changeRightSizeFlag = false;
李维's avatar
李维 committed
83 84
  hotZoneChanged = false;
  scale = 1;
limingzhe's avatar
limingzhe committed
85

李维's avatar
李维 committed
86
  constructor(private el: ElementRef) {
limingzhe's avatar
limingzhe committed
87 88 89 90
  }


  ngOnInit() {
李维's avatar
李维 committed
91 92 93
    if(!this.bgItem.url){
      this.bgItem.url = "def_window"
    }
limingzhe's avatar
limingzhe committed
94 95 96 97 98 99 100 101 102 103 104 105 106 107
    this.initListener();
    this.update();
  }

  ngOnDestroy() {
    window.cancelAnimationFrame(this.animationId);
  }

  ngOnChanges() {

  }

  onBackgroundUploadSuccess(e) {
    this.bgItem.url = e.url;
李维's avatar
李维 committed
108 109 110
    this.refreshBackground(() => {
      this.autoSave()
    });
limingzhe's avatar
limingzhe committed
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
  }

  refreshBackground(callBack = null) {
    if (!this.bg) {
      this.bg = new MySprite(this.ctx);
      this.renderArr.push(this.bg);
    }
    const bg = this.bg;
    if (this.bgItem.url) {
      bg.load(this.bgItem.url).then(() => {
        const rate1 = this.canvasWidth / bg.width;
        const rate2 = this.canvasHeight / bg.height;
        const rate = Math.min(rate1, rate2);
        bg.setScaleXY(rate);
        bg.x = this.canvasWidth / 2;
        bg.y = this.canvasHeight / 2;
        if (callBack) {
          callBack();
        }
李维's avatar
李维 committed
130 131 132
      }).catch((error) => {
        console.log(error)
      })
limingzhe's avatar
limingzhe committed
133 134 135 136 137 138 139
    }
  }

  addBtnClick() {
    const item = this.getHotZoneItem();
    this.hotZoneArr.push(item);
    this.refreshHotZoneId();
李维's avatar
李维 committed
140 141
    this.autoSave()
  }
limingzhe's avatar
limingzhe committed
142

李维's avatar
李维 committed
143 144 145 146 147 148 149
  handleMoveItemUp(event, index) {
    if (index != 0) {
      this.hotZoneArr[index] = this.hotZoneArr.splice(index - 1, 1, this.hotZoneArr[index])[0];
    } else {
      this.hotZoneArr.push(this.hotZoneArr.shift());
    }
    this.autoSave()
limingzhe's avatar
limingzhe committed
150 151
  }

李维's avatar
李维 committed
152 153 154 155 156 157 158
  handleMoveItemDown(event, index) {
    if (index != this.hotZoneArr.length - 1) {
      this.hotZoneArr[index] = this.hotZoneArr.splice(index + 1, 1, this.hotZoneArr[index])[0];
    } else {
      this.hotZoneArr.unshift(this.hotZoneArr.splice(index, 1)[0]);
    }
    this.autoSave()
limingzhe's avatar
limingzhe committed
159 160
  }

李维's avatar
李维 committed
161 162 163 164 165 166 167 168 169
  onImgUploadSuccessByImg(e, item) {
    item.pic_url = e.url;
    item.image_url = e.url;
    item.initNew((w, h) => {
      item.setScaleXY(Math.min(100 / w, 150 / h))
    })
    this.refreshImage(item);
    this.autoSave()
  }
limingzhe's avatar
limingzhe committed
170

李维's avatar
李维 committed
171 172 173 174
  onAudioUploadSuccess(e, item) {
    item.audio_url = e.url;
    this.autoSave()
  }
limingzhe's avatar
limingzhe committed
175

李维's avatar
李维 committed
176 177
  refreshImage(img) {
    this.hideAllLineDash();
limingzhe's avatar
limingzhe committed
178 179 180 181 182 183 184 185 186 187
    img.picItem = this.getPicItem(img);
    this.refreshImageId();
  }

  refreshHotZoneId() {
    for (let i = 0; i < this.hotZoneArr.length; i++) {
      this.hotZoneArr[i].index = i;
    }
  }

李维's avatar
李维 committed
188 189 190
  refreshHotZoneText(item) {
    item.initNew()
  }
limingzhe's avatar
limingzhe committed
191 192 193 194 195 196 197 198 199 200

  refreshImageId() {
    for (let i = 0; i < this.imgArr.length; i++) {
      this.imgArr[i].id = i;
      if (this.imgArr[i].picItem) {
        this.imgArr[i].picItem.text = 'Image-' + (i + 1);
      }
    }
  }

李维's avatar
李维 committed
201
  getHotZoneItem(saveData = null, newRect?) {
limingzhe's avatar
limingzhe committed
202 203
    const itemW = 200;
    const itemH = 200;
李维's avatar
李维 committed
204
    const item = new HotZoneImageItem(this.ctx);
limingzhe's avatar
limingzhe committed
205
    if (saveData) {
李维's avatar
李维 committed
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
      item.init(saveData.media.image_url, saveData.media.text, saveData.media.type, (w, h) => {
        const saveRect = saveData.rect;
        item.scaleX = (saveData.rect.width / saveData.scale) / w;
        item.scaleY = (saveData.rect.height / saveData.scale) / h;
        item.x = saveRect.x / saveData.scale + newRect.x
        item.y = saveRect.y / saveData.scale + newRect.y
      });
      item.image_url = saveData.media.image_url
      item.text = saveData.media.text
      item.type = saveData.media.type
    } else {
      item.init("assets/play/default/images/bg_200_200.png", null, "Text", () => {
        item.image_url = "assets/play/default/images/bg_200_200.png"
        item.x = this.canvasWidth / 2 - 100;
        item.y = this.canvasHeight / 2 - 100;
      }, () => this.autoSave());
limingzhe's avatar
limingzhe committed
222
    }
李维's avatar
李维 committed
223 224
    item.anchorX = 0.5;
    item.anchorY = 0.5;
limingzhe's avatar
limingzhe committed
225 226 227 228 229 230 231

    return item;
  }


  getPicItem(img, saveData = null) {
    const item = new EditorItem(this.ctx);
李维's avatar
李维 committed
232
    item.load(img.pic_url).then(img => {
limingzhe's avatar
limingzhe committed
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
      let maxW, maxH;
      if (this.bg) {
        maxW = this.bg.width * this.bg.scaleX;
        maxH = this.bg.height * this.bg.scaleY;
      } else {
        maxW = this.canvasWidth;
        maxH = this.canvasHeight;
      }
      let scaleX = maxW / 3 / item.width;
      let scaleY = maxH / 3 / item.height;
      if (item.height * scaleX < this.canvasHeight) {
        item.setScaleXY(scaleX);
      } else {
        item.setScaleXY(scaleY);
      }
      item.x = this.canvasWidth / 2;
      item.y = this.canvasHeight / 2;
      if (saveData) {
        const saveRect = saveData.rect;
        item.setScaleXY(saveRect.width / item.width);
李维's avatar
李维 committed
253
        item.x = saveRect.x + saveRect.width / 2;
limingzhe's avatar
limingzhe committed
254 255 256 257
        item.y = saveRect.y + saveRect.height / 2;
      } else {
        item.showLineDash();
      }
李维's avatar
李维 committed
258 259
      this.autoSave()
    })
limingzhe's avatar
limingzhe committed
260 261 262 263 264 265
    return item;
  }


  onAudioUploadSuccessByImg(e, img) {
    img.audio_url = e.url;
李维's avatar
李维 committed
266
    this.autoSave()
limingzhe's avatar
limingzhe committed
267 268 269 270 271
  }

  deleteItem(e, i) {
    this.hotZoneArr.splice(i, 1);
    this.refreshHotZoneId();
李维's avatar
李维 committed
272
    this.autoSave()
limingzhe's avatar
limingzhe committed
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
  }

  init() {
    this.initData();
    this.initCtx();
    this.initItem();
  }

  initItem() {
    if (!this.bgItem) {
      this.bgItem = {};
    } else {
      this.refreshBackground(() => {
        if (!this.hotZoneItemArr) {
          this.hotZoneItemArr = [];
        } else {
          this.initHotZoneArr();
        }
      });
    }
  }

  initHotZoneArr() {
    let curBgRect;
    if (this.bg) {
      curBgRect = this.bg.getBoundingBox();
    } else {
李维's avatar
李维 committed
300
      curBgRect = { x: 0, y: 0, width: this.canvasWidth, height: this.canvasHeight };
limingzhe's avatar
limingzhe committed
301 302 303 304 305 306 307 308 309 310 311 312 313 314
    }
    let oldBgRect = this.bgItem.rect;
    if (!oldBgRect) {
      oldBgRect = curBgRect;
    }
    const rate = curBgRect.width / oldBgRect.width;
    this.hotZoneArr = [];
    const arr = this.hotZoneItemArr.concat();
    for (let i = 0; i < arr.length; i++) {
      const data = JSON.parse(JSON.stringify(arr[i]));
      data.rect.x *= rate;
      data.rect.y *= rate;
      data.rect.width *= rate;
      data.rect.height *= rate;
李维's avatar
李维 committed
315 316 317 318
      // data.rect.x += curBgRect.x;
      // data.rect.y += curBgRect.y;
      const item = this.getHotZoneItem(data, { x: curBgRect.x, y: curBgRect.y });
      // c//onsole.log("初始化存储数据", data)
limingzhe's avatar
limingzhe committed
319 320 321 322 323 324 325 326 327 328
      this.hotZoneArr.push(item);
    }
    this.refreshHotZoneId();
  }

  initImgArr() {
    let curBgRect;
    if (this.bg) {
      curBgRect = this.bg.getBoundingBox();
    } else {
李维's avatar
李维 committed
329
      curBgRect = { x: 0, y: 0, width: this.canvasWidth, height: this.canvasHeight };
limingzhe's avatar
limingzhe committed
330 331 332 333 334 335 336 337 338 339 340 341 342
    }

    let oldBgRect = this.bgItem.rect;
    if (!oldBgRect) {
      oldBgRect = curBgRect;
    }

    const rate = curBgRect.width / oldBgRect.width;
    this.imgArr = [];
    const arr = this.imgItemArr.concat();
    for (let i = 0; i < arr.length; i++) {

      const data = JSON.parse(JSON.stringify(arr[i]));
李维's avatar
李维 committed
343
      const img = { pic_url: data.pic_url };
limingzhe's avatar
limingzhe committed
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362

      data.rect.x *= rate;
      data.rect.y *= rate;
      data.rect.width *= rate;
      data.rect.height *= rate;

      data.rect.x += curBgRect.x;
      data.rect.y += curBgRect.y;

      img['picItem'] = this.getPicItem(img, data);
      img['audio_url'] = arr[i].audio_url;
      this.imgArr.push(img);
    }
    this.refreshImageId();
  }


  initData() {
    this.canvasWidth = this.wrap.nativeElement.clientWidth;
李维's avatar
李维 committed
363 364
    this.canvasHeight = this.wrap.nativeElement.clientWidth * (498 / 892);
    this.scale = 892 * 0.95 / this.wrap.nativeElement.clientWidth
limingzhe's avatar
limingzhe committed
365 366 367 368 369 370 371 372 373 374 375 376
    this.mapScale = this.canvasWidth / this.canvasBaseW;
    this.renderArr = [];
    this.bg = null;
    this.imgArr = [];
    this.hotZoneArr = [];
  }

  initCtx() {
    this.ctx = this.canvas.nativeElement.getContext('2d');
    this.canvas.nativeElement.width = this.canvasWidth;
    this.canvas.nativeElement.height = this.canvasHeight;
  }
李维's avatar
李维 committed
377
  
limingzhe's avatar
limingzhe committed
378
  mapDown(event) {
李维's avatar
李维 committed
379
    this.oldPos = { x: this.mx, y: this.my };
limingzhe's avatar
limingzhe committed
380
    const arr = this.hotZoneArr;
李维's avatar
李维 committed
381
    for (let i = arr.length - 1; i >= 0; i--) {
limingzhe's avatar
limingzhe committed
382 383 384 385
      const item = arr[i];
      if (item) {
        if (this.checkClickTarget(item)) {
          if (item.lineDashFlag && this.checkClickTarget(item.arrow)) {
李维's avatar
李维 committed
386 387 388
            if(item.type == "Text"){
              return
            }
limingzhe's avatar
limingzhe committed
389 390
            this.changeItemSize(item);
          } else if (item.lineDashFlag && this.checkClickTarget(item.arrowTop)) {
李维's avatar
李维 committed
391 392 393
            if(item.type == "Text"){
              return
            }
limingzhe's avatar
limingzhe committed
394 395
            this.changeItemTopSize(item);
          } else if (item.lineDashFlag && this.checkClickTarget(item.arrowRight)) {
李维's avatar
李维 committed
396 397 398
            if(item.type == "Text"){
              return
            }
limingzhe's avatar
limingzhe committed
399 400 401 402
            this.changeItemRightSize(item);
          } else {
            this.changeCurItem(item);
          }
李维's avatar
李维 committed
403
          this.hotZoneChanged = true;
limingzhe's avatar
limingzhe committed
404 405
          return;
        }
李维's avatar
李维 committed
406

limingzhe's avatar
limingzhe committed
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
      }
    }
  }

  mapMove(event) {
    if (!this.curItem) { return; }

    if (this.changeSizeFlag) {
      this.changeSize();

    } else if (this.changeTopSizeFlag) {
      this.changeTopSize();

    } else if (this.changeRightSizeFlag) {
      this.changeRightSize();
    } else {
李维's avatar
李维 committed
423 424
      let addX = this.mx - this.oldPos.x;
      let addY = this.my - this.oldPos.y;
limingzhe's avatar
limingzhe committed
425 426 427 428
      this.curItem.x += addX;
      this.curItem.y += addY;
    }

李维's avatar
李维 committed
429
    this.oldPos = { x: this.mx, y: this.my };
limingzhe's avatar
limingzhe committed
430 431 432 433 434 435 436 437 438 439 440
  }

  mapUp(event) {
    this.curItem = null;
    this.changeSizeFlag = false;
    this.changeTopSizeFlag = false;
    this.changeRightSizeFlag = false;
  }

  changeSize() {
    const rect = this.curItem.getBoundingBox();
李维's avatar
李维 committed
441 442 443
    let distance = this.my - rect.y;
    let lenW = this.mx - rect.x;
    let lenH = rect.height - distance
limingzhe's avatar
limingzhe committed
444
    let minLen = 20;
李维's avatar
李维 committed
445 446 447
    let sx, sy;
    if (lenW < minLen) {
      lenW = minLen;
limingzhe's avatar
limingzhe committed
448
    }
李维's avatar
李维 committed
449 450 451 452 453 454 455 456
    sx = lenW / this.curItem.width;
    if (lenH < minLen) {
      lenH = minLen;
    }
    sy = lenH / this.curItem.height;
    this.curItem.y = this.curItem.y + distance
    this.curItem.scaleX = sx;
    this.curItem.scaleY = sy;
limingzhe's avatar
limingzhe committed
457 458 459 460 461
  }


  changeTopSize() {
    const rect = this.curItem.getBoundingBox();
李维's avatar
李维 committed
462 463
    let lenH = rect.y - this.my + rect.height;
    this.curItem.y = this.my
limingzhe's avatar
limingzhe committed
464 465
    let minLen = 20;
    let s;
李维's avatar
李维 committed
466 467 468 469 470
    if (lenH < minLen) {
      lenH = minLen;
    }
    s = lenH / this.curItem.height;
    this.curItem.setScaleXY(s);
limingzhe's avatar
limingzhe committed
471 472 473 474
  }

  changeRightSize() {
    const rect = this.curItem.getBoundingBox();
李维's avatar
李维 committed
475
    let lenW = this.mx - rect.x;
limingzhe's avatar
limingzhe committed
476 477 478 479 480 481
    let minLen = 20;
    let s;
    if (lenW < minLen) {
      lenW = minLen;
    }
    s = lenW / this.curItem.width;
李维's avatar
李维 committed
482
    this.curItem.setScaleXY(s);
limingzhe's avatar
limingzhe committed
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
  }

  changeItemSize(item) {
    this.curItem = item;
    this.changeSizeFlag = true;
  }

  changeItemTopSize(item) {
    this.curItem = item;
    this.changeTopSizeFlag = true;
  }

  changeItemRightSize(item) {
    this.curItem = item;
    this.changeRightSizeFlag = true;
  }

  changeCurItem(item) {

    this.hideAllLineDash();

    this.curItem = item;
    this.curItem.showLineDash();
  }

  hideAllLineDash() {
    for (let i = 0; i < this.imgArr.length; i++) {
      if (this.imgArr[i].picItem) {
        this.imgArr[i].picItem.hideLineDash();
      }
    }
  }


  update() {
    this.animationId = window.requestAnimationFrame(this.update.bind(this));
    // 清除画布内容
    this.ctx.clearRect(0, 0, this.canvasWidth, this.canvasHeight);
    for (let i = 0; i < this.renderArr.length; i++) {
      this.renderArr[i].update(this);
    }
    this.updateArr(this.hotZoneArr);
    TWEEN.update();
  }

  updateArr(arr) {
    if (arr) {
      for (let i = 0; i < arr.length; i++) {
        arr[i].update();
      }
    }
  }

  renderAfterResize() {
李维's avatar
李维 committed
537 538
    // let offsetWidth = this.el.nativeElement.querySelector('#canvas-container').offsetWidth
    // this.el.nativeElement.querySelector('#canvas-container').style.height = '' + offsetWidth / 2 * 3 + 'px'
limingzhe's avatar
limingzhe committed
539 540 541 542 543 544
    this.canvasWidth = this.wrap.nativeElement.clientWidth;
    this.canvasHeight = this.wrap.nativeElement.clientHeight;
    this.init();
  }

  initListener() {
李维's avatar
李维 committed
545 546 547
    this.g_winResizeEventStream.pipe(debounceTime(500)).subscribe(data => {
      this.renderAfterResize();
    });
limingzhe's avatar
limingzhe committed
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
    if (this.IsPC()) {
      this.canvas.nativeElement.addEventListener('mousedown', (event) => {
        setMxMyByMouse(event);
        this.mapDown(event);
      });

      this.canvas.nativeElement.addEventListener('mousemove', (event) => {
        setMxMyByMouse(event);
        this.mapMove(event);
      });

      this.canvas.nativeElement.addEventListener('mouseup', (event) => {
        setMxMyByMouse(event);
        this.mapUp(event);
      });

      const setMxMyByMouse = (event) => {
        this.mx = event.offsetX;
        this.my = event.offsetY;
      };

    } else {

      this.canvas.nativeElement.addEventListener('touchstart', (event) => {
        setMxMyByTouch(event);
        this.mapDown(event);
      });

      this.canvas.nativeElement.addEventListener('touchmove', (event) => {
        setMxMyByTouch(event);
        this.mapMove(event);
      });

      this.canvas.nativeElement.addEventListener('touchend', (event) => {
        setMxMyByTouch(event);
        this.mapUp(event);
      });

      this.canvas.nativeElement.addEventListener('touchcancel', (event) => {
        setMxMyByTouch(event);
        this.mapUp(event);
      });


      const setMxMyByTouch = (event) => {
        if (event.touches.length <= 0) {
          return;
        }
        if (this.canvasLeft == null) {
          setParentOffset();
        }
        this.mx = event.touches[0].pageX - this.canvasLeft;
        this.my = event.touches[0].pageY - this.canvasTop;
      };

      const setParentOffset = () => {
        const rect = this.canvas.nativeElement.getBoundingClientRect();
        this.canvasLeft = rect.left;
        this.canvasTop = rect.top;
      };
    }
  }

  IsPC() {
    if (window['ELECTRON']) {
      return false; // 封装客户端标记
    }
    if (document.body.ontouchstart !== undefined) {
      return false;
    } else {
      return true;
    }
  }


  checkClickTarget(target) {
    const rect = target.getBoundingBox();
    if (this.checkPointInRect(this.mx, this.my, rect)) {
      return true;
    }
    return false;
  }

  checkPointInRect(x, y, rect) {
    if (x >= rect.x && x <= rect.x + rect.width) {
      if (y >= rect.y && y <= rect.y + rect.height) {
        return true;
      }
    }
    return false;
  }

李维's avatar
李维 committed
640 641
  autoSave() {
    // console.log("Auto save")
limingzhe's avatar
limingzhe committed
642 643 644 645
    const bgItem = this.bgItem;
    if (this.bg) {
      bgItem['rect'] = this.bg.getBoundingBox();
    } else {
李维's avatar
李维 committed
646
      bgItem['rect'] = { x: 0, y: 0, width: Math.round(this.canvasWidth * 100) / 100, height: Math.round(this.canvasHeight * 100) / 100 };
limingzhe's avatar
limingzhe committed
647 648 649 650 651 652 653 654 655
    }

    const hotZoneItemArr = [];
    const hotZoneArr = this.hotZoneArr;
    for (let i = 0; i < hotZoneArr.length; i++) {
      const hotZoneItem = {
        index: hotZoneArr[i].index,
      };
      hotZoneItem['rect'] = hotZoneArr[i].getBoundingBox();
李维's avatar
李维 committed
656 657 658 659 660 661 662 663 664 665 666 667 668
      const currentX = hotZoneItem['rect'].x
      const currentY = hotZoneItem['rect'].y
      hotZoneItem['media'] = {}
      hotZoneItem['scale'] = this.scale
      hotZoneItem['rect'].x = (Math.round((currentX - bgItem['rect'].x) * 100) / 100) * this.scale;
      hotZoneItem['rect'].y = (Math.round((currentY - bgItem['rect'].y) * 100) / 100) * this.scale;
      hotZoneItem['rect'].width = (Math.round((hotZoneItem['rect'].width) * 100) / 100) * this.scale;
      hotZoneItem['rect'].height = (Math.round((hotZoneItem['rect'].height) * 100) / 100) * this.scale;
      hotZoneItem['media'].image_url = hotZoneArr[i].image_url
      hotZoneItem['media'].text = hotZoneArr[i].text
      hotZoneItem['media'].type = hotZoneArr[i].type
      // hotZoneItem['media'].audio_url = hotZoneArr[i].audio_url ? hotZoneArr[i].audio_url : ""
      // hotZoneItem['media'].card_audio_url = hotZoneArr[i].card_audio_url ? hotZoneArr[i].card_audio_url : ""
limingzhe's avatar
limingzhe committed
669 670
      hotZoneItemArr.push(hotZoneItem);
    }
李维's avatar
李维 committed
671 672 673
    this.save.emit({ bgItem, hotZoneItemArr });
    this.hotZoneChanged = false;
  }
limingzhe's avatar
limingzhe committed
674

李维's avatar
李维 committed
675 676 677
  saveClick() {
    // console.log("Saved")
    this.autoSave()
limingzhe's avatar
limingzhe committed
678 679
  }
}