Blame view

src/ImagePreviewGroup/ImagePreviewGroup.js 3.04 KB
3a3ecabe   Imshann   init
1
2
3
  import template from "./ImagePreviewGroup.html";
  
  class ImagePreviewGroup {
1b6f912f   Imshann   优化
4
5
      useModules = ["esNgAntd"];
  
3a3ecabe   Imshann   init
6
      template = template;
1b6f912f   Imshann   优化
7
8
9
10
11
12
13
14
  
      state = {
          current: 0,
          visible: false,
          src: null,
          childrens: [],
      };
  
3a3ecabe   Imshann   init
15
      constructor() {
1b6f912f   Imshann   优化
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
          this.handlePreview();
      }
  
      addChildren(children) {
          this.state.childrens.push(children);
          return this.state.childrens.length - 1;
      }
  
      handleOpen(index) {
          this.state.current = index;
          this.state.src = this.state.childrens[index].state.src;
          this.state.visible = true;
      }
  
      handleClose() {
          this.state.visible = false;
      }
  
      handlePrev() {
          this.state.current =
              this.state.current > 0 ? this.state.current - 1 : 0;
          this.state.src = this.state.childrens[this.state.current].state.src;
      }
  
      handleNext() {
          this.state.current =
              this.state.current < this.state.childrens.length - 1
                  ? this.state.current + 1
                  : this.state.childrens.length - 1;
          this.state.src = this.state.childrens[this.state.current].state.src;
      }
  
      handlePreview() {
          esNgAntd.createLayer(
              `
              <div class="ant-image-preview-root">
                  <div class="ant-image-preview-mask" ng-if="state.visible"></div>
                  <div class="ant-image-preview-wrap" ng-show="state.visible">
                      <div class="ant-image-preview">
                          <div class="ant-image-preview-content">
                              <div class="ant-image-preview-body">
                                  <ul class="ant-image-preview-operations">
                                      <li class="ant-image-preview-operations-operation">
                                          <span class="anticon anticon-close ant-image-preview-operations-icon" ng-click="handleClose()">
                                              <es-icon type="CloseOutlined"></es-icon>
                                          </span>
                                      </li> 
                                  </ul>
                                  <div class="ant-image-preview-img-wrapper">
                                      <img class="ant-image-preview-img" ng-src="{{state.src}}"/>
                                  </div>
                                  <div ng-class="{'ant-image-preview-switch-left': true, 'ant-image-preview-switch-left-disabled': state.current===0}" ng-click="handlePrev()">
                                      <es-icon type="LeftOutlined"></es-icon>
                                  </div>
                                  <div ng-class="{'ant-image-preview-switch-right': true,'ant-image-preview-switch-right-disabled': (state.childrens.length-1)===state.current}"  ng-click="handleNext()">
                                      <es-icon type="RightOutlined"></es-icon>
                                  </div>
                              </div>
                          </div>
                      </div>
                  </div>
              </div>
          `,
              $scope
          );
3a3ecabe   Imshann   init
81
82
      }
  }