Blame view

src/utils/calcTextareaHeight.js 7.65 KB
0f822c9b   梁灏   add Input component
1
2
  // Thanks to
  // https://github.com/andreypopp/react-textarea-autosize/
0f822c9b   梁灏   add Input component
3
  
8df3390e   梁灏   update calcTextar...
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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
  // let hiddenTextarea;
  //
  // const HIDDEN_STYLE = `
  //     height:0 !important;
  //     min-height:0 !important;
  //     max-height:none !important;
  //     visibility:hidden !important;
  //     overflow:hidden !important;
  //     position:absolute !important;
  //     z-index:-1000 !important;
  //     top:0 !important;
  //     right:0 !important
  // `;
  //
  // const CONTEXT_STYLE = [
  //     'letter-spacing',
  //     'line-height',
  //     'padding-top',
  //     'padding-bottom',
  //     'font-family',
  //     'font-weight',
  //     'font-size',
  //     'text-rendering',
  //     'text-transform',
  //     'width',
  //     'text-indent',
  //     'padding-left',
  //     'padding-right',
  //     'border-width',
  //     'box-sizing'
  // ];
  //
  // function calculateNodeStyling(node) {
  //     const style = window.getComputedStyle(node);
  //
  //     const boxSizing = style.getPropertyValue('box-sizing');
  //
  //     const paddingSize = (
  //         parseFloat(style.getPropertyValue('padding-bottom')) +
  //         parseFloat(style.getPropertyValue('padding-top'))
  //     );
  //
  //     const borderSize = (
  //         parseFloat(style.getPropertyValue('border-bottom-width')) +
  //         parseFloat(style.getPropertyValue('border-top-width'))
  //     );
  //
  //     const contextStyle = CONTEXT_STYLE
  //         .map(name => `${name}:${style.getPropertyValue(name)}`)
  //         .join(';');
  //
  //     return {contextStyle, paddingSize, borderSize, boxSizing};
  // }
  //
  // export default function calcTextareaHeight(targetNode, minRows = null, maxRows = null) {
  //     if (!hiddenTextarea) {
  //         hiddenTextarea = document.createElement('textarea');
  //         document.body.appendChild(hiddenTextarea);
  //     }
  //
  //     let {
  //         paddingSize,
  //         borderSize,
  //         boxSizing,
  //         contextStyle
  //     } = calculateNodeStyling(targetNode);
  //
  //     hiddenTextarea.setAttribute('style', `${contextStyle};${HIDDEN_STYLE}`);
  //     hiddenTextarea.value = targetNode.value || targetNode.placeholder || '';
  //
  //     let height = hiddenTextarea.scrollHeight;
  //     let minHeight = -Infinity;
  //     let maxHeight = Infinity;
  //     let overflowY;
  //
  //     if (boxSizing === 'border-box') {
  //         height = height + borderSize;
  //     } else if (boxSizing === 'content-box') {
  //         height = height - paddingSize;
  //     }
  //
  //     hiddenTextarea.value = '';
  //     let singleRowHeight = hiddenTextarea.scrollHeight - paddingSize;
  //
  //     if (minRows !== null) {
  //         minHeight = singleRowHeight * minRows;
  //         if (boxSizing === 'border-box') {
  //             minHeight = minHeight + paddingSize + borderSize;
  //         }
  //         height = Math.max(minHeight, height);
  //     }
  //     if (maxRows !== null) {
  //         maxHeight = singleRowHeight * maxRows;
  //         if (boxSizing === 'border-box') {
  //             maxHeight = maxHeight + paddingSize + borderSize;
  //         }
  //         overflowY = height > maxHeight ? '' : 'hidden';
  //         height = Math.min(maxHeight, height);
  //     }
  //
  //     if (!maxRows) {
  //         overflowY = 'hidden';
  //     }
  //
  //     return {
  //         height: `${height}px`,
  //         minHeight: `${minHeight}px`,
  //         maxHeight: `${maxHeight}px`,
  //         overflowY
  //     };
  // }
0f822c9b   梁灏   add Input component
115
  
8df3390e   梁灏   update calcTextar...
116
117
118
119
120
121
122
123
124
125
  const HIDDEN_TEXTAREA_STYLE = `
    min-height:0 !important;
    max-height:none !important;
    height:0 !important;
    visibility:hidden !important;
    overflow:hidden !important;
    position:absolute !important;
    z-index:-1000 !important;
    top:0 !important;
    right:0 !important
0f822c9b   梁灏   add Input component
126
127
  `;
  
8df3390e   梁灏   update calcTextar...
128
  const SIZING_STYLE = [
0f822c9b   梁灏   add Input component
129
130
131
132
133
134
135
136
137
138
139
140
141
142
      'letter-spacing',
      'line-height',
      'padding-top',
      'padding-bottom',
      'font-family',
      'font-weight',
      'font-size',
      'text-rendering',
      'text-transform',
      'width',
      'text-indent',
      'padding-left',
      'padding-right',
      'border-width',
8df3390e   梁灏   update calcTextar...
143
      'box-sizing',
0f822c9b   梁灏   add Input component
144
145
  ];
  
8df3390e   梁灏   update calcTextar...
146
147
148
149
150
151
152
153
154
155
156
157
158
  let computedStyleCache = {};
  let hiddenTextarea;
  
  function calculateNodeStyling(node, useCache = false) {
      const nodeRef = (
              node.getAttribute('id') ||
              node.getAttribute('data-reactid') ||
              node.getAttribute('name'));
  
      if (useCache && computedStyleCache[nodeRef]) {
          return computedStyleCache[nodeRef];
      }
  
0f822c9b   梁灏   add Input component
159
160
      const style = window.getComputedStyle(node);
  
8df3390e   梁灏   update calcTextar...
161
162
163
164
165
      const boxSizing = (
          style.getPropertyValue('box-sizing') ||
          style.getPropertyValue('-moz-box-sizing') ||
          style.getPropertyValue('-webkit-box-sizing')
      );
0f822c9b   梁灏   add Input component
166
167
168
169
170
171
172
173
174
175
176
  
      const paddingSize = (
          parseFloat(style.getPropertyValue('padding-bottom')) +
          parseFloat(style.getPropertyValue('padding-top'))
      );
  
      const borderSize = (
          parseFloat(style.getPropertyValue('border-bottom-width')) +
          parseFloat(style.getPropertyValue('border-top-width'))
      );
  
8df3390e   梁灏   update calcTextar...
177
      const sizingStyle = SIZING_STYLE
0f822c9b   梁灏   add Input component
178
179
180
          .map(name => `${name}:${style.getPropertyValue(name)}`)
          .join(';');
  
8df3390e   梁灏   update calcTextar...
181
182
183
184
185
186
187
188
189
190
191
192
      const nodeInfo = {
          sizingStyle,
          paddingSize,
          borderSize,
          boxSizing,
      };
  
      if (useCache && nodeRef) {
          computedStyleCache[nodeRef] = nodeInfo;
      }
  
      return nodeInfo;
0f822c9b   梁灏   add Input component
193
194
  }
  
8df3390e   梁灏   update calcTextar...
195
  export default function calcTextareaHeight(uiTextNode, minRows = null, maxRows = null, useCache = false) {
0f822c9b   梁灏   add Input component
196
197
198
199
200
      if (!hiddenTextarea) {
          hiddenTextarea = document.createElement('textarea');
          document.body.appendChild(hiddenTextarea);
      }
  
8df3390e   梁灏   update calcTextar...
201
202
203
204
205
206
207
208
209
210
      // Fix wrap="off" issue
      // https://github.com/ant-design/ant-design/issues/6577
      if (uiTextNode.getAttribute('wrap')) {
          hiddenTextarea.setAttribute('wrap', uiTextNode.getAttribute('wrap'));
      } else {
          hiddenTextarea.removeAttribute('wrap');
      }
  
      // Copy all CSS properties that have an impact on the height of the content in
      // the textbox
0f822c9b   梁灏   add Input component
211
      let {
8df3390e   梁灏   update calcTextar...
212
213
214
          paddingSize, borderSize,
          boxSizing, sizingStyle,
      } = calculateNodeStyling(uiTextNode, useCache);
0f822c9b   梁灏   add Input component
215
  
8df3390e   梁灏   update calcTextar...
216
217
218
219
220
      // Need to have the overflow attribute to hide the scrollbar otherwise
      // text-lines will not calculated properly as the shadow will technically be
      // narrower for content
      hiddenTextarea.setAttribute('style', `${sizingStyle};${HIDDEN_TEXTAREA_STYLE}`);
      hiddenTextarea.value = uiTextNode.value || uiTextNode.placeholder || '';
0f822c9b   梁灏   add Input component
221
  
8df3390e   梁灏   update calcTextar...
222
223
      let minHeight = Number.MIN_SAFE_INTEGER;
      let maxHeight = Number.MAX_SAFE_INTEGER;
0f822c9b   梁灏   add Input component
224
      let height = hiddenTextarea.scrollHeight;
8df3390e   梁灏   update calcTextar...
225
      let overflowY;
0f822c9b   梁灏   add Input component
226
227
  
      if (boxSizing === 'border-box') {
8df3390e   梁灏   update calcTextar...
228
          // border-box: add border, since height = content + padding + border
0f822c9b   梁灏   add Input component
229
230
          height = height + borderSize;
      } else if (boxSizing === 'content-box') {
8df3390e   梁灏   update calcTextar...
231
          // remove padding, since height = content
0f822c9b   梁灏   add Input component
232
233
234
          height = height - paddingSize;
      }
  
8df3390e   梁灏   update calcTextar...
235
236
237
238
239
240
241
242
243
244
      if (minRows !== null || maxRows !== null) {
          // measure height of a textarea with a single row
          hiddenTextarea.value = ' ';
          let singleRowHeight = hiddenTextarea.scrollHeight - paddingSize;
          if (minRows !== null) {
              minHeight = singleRowHeight * minRows;
              if (boxSizing === 'border-box') {
                  minHeight = minHeight + paddingSize + borderSize;
              }
              height = Math.max(minHeight, height);
0f822c9b   梁灏   add Input component
245
          }
8df3390e   梁灏   update calcTextar...
246
247
248
249
250
251
252
          if (maxRows !== null) {
              maxHeight = singleRowHeight * maxRows;
              if (boxSizing === 'border-box') {
                  maxHeight = maxHeight + paddingSize + borderSize;
              }
              overflowY = height > maxHeight ? '' : 'hidden';
              height = Math.min(maxHeight, height);
0f822c9b   梁灏   add Input component
253
          }
8df3390e   梁灏   update calcTextar...
254
255
256
257
      }
      // Remove scroll bar flash when autosize without maxRows
      if (!maxRows) {
          overflowY = 'hidden';
0f822c9b   梁灏   add Input component
258
259
260
261
262
      }
  
      return {
          height: `${height}px`,
          minHeight: `${minHeight}px`,
8df3390e   梁灏   update calcTextar...
263
264
          maxHeight: `${maxHeight}px`,
          overflowY
0f822c9b   梁灏   add Input component
265
      };
8df3390e   梁灏   update calcTextar...
266
  }