index.vue 8.5 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1
<template>
2
  <uni-textarea
3
    @change.stop
Q
qiang 已提交
4
    v-on="$listeners">
5
    <div class="uni-textarea-wrapper">
fxy060608's avatar
fxy060608 已提交
6 7 8 9 10
      <div
        v-show="!(composition||valueSync.length)"
        ref="placeholder"
        :style="placeholderStyle"
        :class="placeholderClass"
11 12
        class="uni-textarea-placeholder"
      >{{ placeholder }}</div>
13 14 15
      <div
        ref="line"
        class="uni-textarea-line">&nbsp;</div>
16 17 18
      <div class="uni-textarea-compute">
        <div
          v-for="(item,index) in valueCompute"
19
          :key="index">{{ item.trim() ? item : '.' }}</div>
20 21
        <v-uni-resize-sensor
          ref="sensor"
22
          @resize="_resize" />
23
      </div>
fxy060608's avatar
fxy060608 已提交
24 25 26 27 28 29
      <textarea
        ref="textarea"
        v-model="valueSync"
        :disabled="disabled"
        :maxlength="maxlengthNumber"
        :autofocus="autoFocus"
30
        :class="{'uni-textarea-textarea-fix-margin': fixMargin}"
Q
qiang 已提交
31
        :style="{'overflow-y': autoHeight? 'hidden':'auto'}"
fxy060608's avatar
fxy060608 已提交
32 33 34
        class="uni-textarea-textarea"
        @compositionstart="_compositionstart"
        @compositionend="_compositionend"
35
        @input.stop="_input"
fxy060608's avatar
fxy060608 已提交
36 37 38
        @focus="_focus"
        @blur="_blur"
        @touchstart.passive="_touchstart"
39
      />
fxy060608's avatar
fxy060608 已提交
40 41 42 43 44
    </div>
  </uni-textarea>
</template>
<script>
import {
45 46
  emitter,
  keyboard
fxy060608's avatar
fxy060608 已提交
47
} from 'uni-mixins'
48
const DARK_TEST_STRING = '(prefers-color-scheme: dark)'
fxy060608's avatar
fxy060608 已提交
49 50
export default {
  name: 'Textarea',
51
  mixins: [emitter, keyboard],
fxy060608's avatar
fxy060608 已提交
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
  model: {
    prop: 'value',
    event: 'update:value'
  },
  props: {
    name: {
      type: String,
      default: ''
    },
    value: {
      type: [String, Number],
      default: ''
    },
    maxlength: {
      type: [Number, String],
      default: 140
    },
    placeholder: {
      type: String,
      default: ''
    },
    disabled: {
      type: [Boolean, String],
      default: false
    },
    focus: {
      type: [Boolean, String],
      default: false
    },
    autoFocus: {
      type: [Boolean, String],
      default: false
    },
    placeholderClass: {
      type: String,
87
      default: 'textarea-placeholder'
fxy060608's avatar
fxy060608 已提交
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
    },
    placeholderStyle: {
      type: String,
      default: ''
    },
    autoHeight: {
      type: [Boolean, String],
      default: false
    },
    cursor: {
      type: [Number, String],
      default: -1
    },
    selectionStart: {
      type: [Number, String],
      default: -1
    },
    selectionEnd: {
      type: [Number, String],
      default: -1
    }
  },
  data () {
    return {
      valueSync: String(this.value),
113
      valueComposition: '',
fxy060608's avatar
fxy060608 已提交
114 115 116
      composition: false,
      focusSync: this.focus,
      height: 0,
117
      focusChangeSource: '',
118 119
      // iOS 13 以下版本需要修正边距
      fixMargin: String(navigator.platform).indexOf('iP') === 0 && String(navigator.vendor).indexOf('Apple') === 0 && window.matchMedia(DARK_TEST_STRING).media !== DARK_TEST_STRING
fxy060608's avatar
fxy060608 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
    }
  },
  computed: {
    maxlengthNumber () {
      var maxlength = Number(this.maxlength)
      return isNaN(maxlength) ? 140 : maxlength
    },
    cursorNumber () {
      var cursor = Number(this.cursor)
      return isNaN(cursor) ? -1 : cursor
    },
    selectionStartNumber () {
      var selectionStart = Number(this.selectionStart)
      return isNaN(selectionStart) ? -1 : selectionStart
    },
    selectionEndNumber () {
      var selectionEnd = Number(this.selectionEnd)
      return isNaN(selectionEnd) ? -1 : selectionEnd
138 139 140
    },
    valueCompute () {
      return (this.composition ? this.valueComposition : this.valueSync).split('\n')
fxy060608's avatar
fxy060608 已提交
141 142 143 144 145 146 147
    }
  },
  watch: {
    value (val) {
      this.valueSync = String(val)
    },
    valueSync (val) {
148 149
      if (val !== this._oldValue) {
        this._oldValue = val
fxy060608's avatar
fxy060608 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
        this.$trigger('input', {}, {
          value: val,
          cursor: this.$refs.textarea.selectionEnd
        })
        this.$emit('update:value', val)
      }
    },
    focus (val) {
      if (val) {
        this.focusChangeSource = 'focus'
        if (this.$refs.textarea) {
          this.$refs.textarea.focus()
        }
      } else {
        if (this.$refs.textarea) {
          this.$refs.textarea.blur()
        }
      }
    },
    focusSync (val) {
      this.$emit('update:focus', val)
      this._checkSelection()
      this._checkCursor()
    },
    cursorNumber () {
      this._checkCursor()
    },
    selectionStartNumber () {
      this._checkSelection()
    },
    selectionEndNumber () {
      this._checkSelection()
    },
    height (height) {
184 185 186 187
      let lineHeight = parseFloat(getComputedStyle(this.$el).lineHeight)
      if (isNaN(lineHeight)) {
        lineHeight = this.$refs.line.offsetHeight
      }
fxy060608's avatar
fxy060608 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
      var lineCount = Math.round(height / lineHeight)
      this.$trigger('linechange', {}, {
        height,
        heightRpx: 750 / window.innerWidth * height,
        lineCount
      })
      if (this.autoHeight) {
        this.$el.style.height = this.height + 'px'
      }
    }
  },
  created () {
    this.$dispatch('Form', 'uni-form-group-update', {
      type: 'add',
      vm: this
    })
  },
  mounted () {
206
    this._oldValue = this.$refs.textarea.value = this.valueSync
207 208 209
    this._resize({
      height: this.$refs.sensor.$el.offsetHeight
    })
210 211 212 213 214 215 216 217 218 219

    let $vm = this
    while ($vm) {
      const scopeId = $vm.$options._scopeId
      if (scopeId) {
        this.$refs.placeholder.setAttribute(scopeId, '')
      }
      $vm = $vm.$parent
    }

220
    this.initKeyboard(this.$refs.textarea)
fxy060608's avatar
fxy060608 已提交
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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
  },
  beforeDestroy () {
    this.$dispatch('Form', 'uni-form-group-update', {
      type: 'remove',
      vm: this
    })
  },
  methods: {
    _focus: function ($event) {
      this.focusSync = true
      this.$trigger('focus', $event, {
        value: this.valueSync
      })
    },
    _checkSelection () {
      if (this.focusSync && (!this.focusChangeSource) && this.selectionStartNumber > -1 && this.selectionEndNumber > -1) {
        this.$refs.textarea.selectionStart = this.selectionStartNumber
        this.$refs.textarea.selectionEnd = this.selectionEndNumber
      }
    },
    _checkCursor () {
      if (this.focusSync && (this.focusChangeSource === 'focus' || ((!this.focusChangeSource) && this.selectionStartNumber < 0 && this.selectionEndNumber < 0)) && this.cursorNumber > -1) {
        this.$refs.textarea.selectionEnd = this.$refs.textarea.selectionStart = this.cursorNumber
      }
    },
    _blur: function ($event) {
      this.focusSync = false
      this.$trigger('blur', $event, {
        value: this.valueSync,
        cursor: this.$refs.textarea.selectionEnd
      })
    },
    _compositionstart ($event) {
      this.composition = true
    },
    _compositionend ($event) {
      this.composition = false
    },
    // 暂无完成按钮,此功能未实现
    _confirm ($event) {
      this.$trigger('confirm', $event, {
        value: this.valueSync
      })
    },
    _linechange ($event) {
      this.$trigger('linechange', $event, {
        value: this.valueSync
      })
    },
    _touchstart () {
      this.focusChangeSource = 'touch'
    },
273 274 275 276 277 278 279
    _resize ({ height }) {
      this.height = height
    },
    _input ($event) {
      if (this.composition) {
        this.valueComposition = $event.target.value
      }
fxy060608's avatar
fxy060608 已提交
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
    },
    _getFormData () {
      return {
        value: this.valueSync,
        key: this.name
      }
    },
    _resetFormData () {
      this.valueSync = ''
    }
  }
}
</script>

<style>
uni-textarea {
  width: 300px;
  height: 150px;
  display: block;
  position: relative;
  font-size: 16px;
301 302 303 304 305
  line-height: normal;
}
uni-textarea[hidden] {
  display: none;
}
Q
qiang 已提交
306 307
.uni-textarea-wrapper,
.uni-textarea-placeholder,
308
.uni-textarea-line,
Q
qiang 已提交
309 310 311 312 313 314 315 316
.uni-textarea-compute,
.uni-textarea-textarea {
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  text-decoration: inherit;
}
317
.uni-textarea-wrapper {
Q
qiang 已提交
318
  display: block;
fxy060608's avatar
fxy060608 已提交
319 320 321 322 323
  position: relative;
  width: 100%;
  height: 100%;
}
.uni-textarea-placeholder,
324
.uni-textarea-line,
325
.uni-textarea-compute,
fxy060608's avatar
fxy060608 已提交
326 327 328 329 330 331
.uni-textarea-textarea {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
Q
qiang 已提交
332
  white-space: pre-wrap;
fxy060608's avatar
fxy060608 已提交
333 334 335 336
  word-break: break-all;
}
.uni-textarea-placeholder {
  color: grey;
Q
qiang 已提交
337
  overflow: hidden;
fxy060608's avatar
fxy060608 已提交
338
}
339
.uni-textarea-line,
340 341 342 343
.uni-textarea-compute {
  visibility: hidden;
  height: auto;
}
344 345 346
.uni-textarea-line {
  width: 1em;
}
fxy060608's avatar
fxy060608 已提交
347 348
.uni-textarea-textarea {
  resize: none;
Q
qiang 已提交
349 350
  background: none;
  color: inherit;
351 352
  opacity: 1;
  -webkit-text-fill-color: currentcolor;
Q
qiang 已提交
353 354 355 356 357 358 359
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  text-indent: inherit;
  text-transform: inherit;
  text-shadow: inherit;
fxy060608's avatar
fxy060608 已提交
360
}
361
/* 用于解决 iOS textarea 内部默认边距 */
362
.uni-textarea-textarea-fix-margin {
363 364 365 366
  width: auto;
  right: 0;
  margin: 0 -3px;
}
fxy060608's avatar
fxy060608 已提交
367
</style>