index.vue 8.4 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-ios': isIOS}"
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 48 49
} from 'uni-mixins'
export default {
  name: 'Textarea',
50
  mixins: [emitter, keyboard],
fxy060608's avatar
fxy060608 已提交
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
  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,
86
      default: 'textarea-placeholder'
fxy060608's avatar
fxy060608 已提交
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
    },
    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),
112
      valueComposition: '',
fxy060608's avatar
fxy060608 已提交
113 114 115
      composition: false,
      focusSync: this.focus,
      height: 0,
116
      focusChangeSource: '',
117
      isIOS: String(navigator.platform).indexOf('iP') === 0 && String(navigator.vendor).indexOf('Apple') === 0 && String(navigator.appVersion).split('OS ')[1].split('_')[0] < 13
fxy060608's avatar
fxy060608 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
    }
  },
  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
136 137 138
    },
    valueCompute () {
      return (this.composition ? this.valueComposition : this.valueSync).split('\n')
fxy060608's avatar
fxy060608 已提交
139 140 141 142 143 144 145
    }
  },
  watch: {
    value (val) {
      this.valueSync = String(val)
    },
    valueSync (val) {
146 147
      if (val !== this._oldValue) {
        this._oldValue = val
fxy060608's avatar
fxy060608 已提交
148 149 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
        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) {
182 183 184 185
      let lineHeight = parseFloat(getComputedStyle(this.$el).lineHeight)
      if (isNaN(lineHeight)) {
        lineHeight = this.$refs.line.offsetHeight
      }
fxy060608's avatar
fxy060608 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
      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 () {
204
    this._oldValue = this.$refs.textarea.value = this.valueSync
205 206 207
    this._resize({
      height: this.$refs.sensor.$el.offsetHeight
    })
208 209 210 211 212 213 214 215 216 217

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

218
    this.initKeyboard(this.$refs.textarea)
fxy060608's avatar
fxy060608 已提交
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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
  },
  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'
    },
271 272 273 274 275 276 277
    _resize ({ height }) {
      this.height = height
    },
    _input ($event) {
      if (this.composition) {
        this.valueComposition = $event.target.value
      }
fxy060608's avatar
fxy060608 已提交
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
    },
    _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;
299 300 301 302 303
  line-height: normal;
}
uni-textarea[hidden] {
  display: none;
}
Q
qiang 已提交
304 305
.uni-textarea-wrapper,
.uni-textarea-placeholder,
306
.uni-textarea-line,
Q
qiang 已提交
307 308 309 310 311 312 313 314
.uni-textarea-compute,
.uni-textarea-textarea {
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  text-decoration: inherit;
}
315
.uni-textarea-wrapper {
Q
qiang 已提交
316
  display: block;
fxy060608's avatar
fxy060608 已提交
317 318 319 320 321
  position: relative;
  width: 100%;
  height: 100%;
}
.uni-textarea-placeholder,
322
.uni-textarea-line,
323
.uni-textarea-compute,
fxy060608's avatar
fxy060608 已提交
324 325 326 327 328 329
.uni-textarea-textarea {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
Q
qiang 已提交
330
  white-space: pre-wrap;
fxy060608's avatar
fxy060608 已提交
331 332 333 334
  word-break: break-all;
}
.uni-textarea-placeholder {
  color: grey;
Q
qiang 已提交
335
  overflow: hidden;
fxy060608's avatar
fxy060608 已提交
336
}
337
.uni-textarea-line,
338 339 340 341
.uni-textarea-compute {
  visibility: hidden;
  height: auto;
}
342 343 344
.uni-textarea-line {
  width: 1em;
}
fxy060608's avatar
fxy060608 已提交
345 346
.uni-textarea-textarea {
  resize: none;
Q
qiang 已提交
347 348
  background: none;
  color: inherit;
349 350
  opacity: 1;
  -webkit-text-fill-color: currentcolor;
Q
qiang 已提交
351 352 353 354 355 356 357
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  text-indent: inherit;
  text-transform: inherit;
  text-shadow: inherit;
fxy060608's avatar
fxy060608 已提交
358
}
359 360 361 362 363 364
/* 用于解决 iOS textarea 内部默认边距 */
.uni-textarea-textarea-ios {
  width: auto;
  right: 0;
  margin: 0 -3px;
}
fxy060608's avatar
fxy060608 已提交
365
</style>